Пример #1
0
 private void chkIsSubaccount_CheckedChanged(object sender, EventArgs e)
 {
     if (chkIsSubaccount.CheckState == CheckState.Checked)
     {
         cmbMainAccount.Enabled = true;
         MyAccount.LoadMainAccount(cmbMainAccount, Program.AccountStatic.CompanyID);
     }
     else
     {
         cmbMainAccount.Enabled = false;
     }
 }