コード例 #1
0
ファイル: BankAccountMaintenance.cs プロジェクト: ABTecheg/GL
 private void cb_CashFlowCategory_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (cb_CashFlowCategory.Text == "<new>")
     {
         CashFlowCategories cashCategories = new CashFlowCategories();
         cashCategories.ShowDialog();
         cb_CashFlowCategory.Items.Clear();
         adaptertbCashFlowCategory.Fill(dbAccountingProjectDS.ARCashFlowCategory);
         cb_CashFlowCategory = GeneralFunctions.FillComboBox(dbAccountingProjectDS.ARCashFlowCategory, cb_CashFlowCategory, "CashFlowCategoryCode", "CashFlowCategoryID");
     }
 }
コード例 #2
0
ファイル: GLInterface.cs プロジェクト: ABTecheg/GL
        private void cashFlowCategoriesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            CashFlowCategories frm = new CashFlowCategories();

            frm.ShowDialog();
        }
コード例 #3
0
        private void toolStripMenuItem12_Click(object sender, EventArgs e)
        {
            CashFlowCategories cashflowcategories = new CashFlowCategories();

            cashflowcategories.ShowDialog();
        }