コード例 #1
0
 /// <summary>
 /// Function to fill accountledger combobox
 /// </summary>
 /// <param name="cmbAccountLedger"></param>
 public void AccountLedgerComboFill(ComboBox cmbAccountLedger)
 {
     try
     {
         cmbAccountLedger.Enabled = true;
         AccountLedgerBll bllAccountLedger = new AccountLedgerBll();
         bllAccountLedger.BillAllocationLedgerFill(cmbAccountLedger, cmbAccountGroup.Text, true);
     }
     catch (Exception ex)
     {
         MessageBox.Show("BA:03" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }