Exemple #1
0
 private void FormAccountingSetup_Load(object sender, EventArgs e)
 {
     AcctSoftware = (AccountingSoftware)PrefC.GetInt(PrefName.AccountingSoftware);
     if (AcctSoftware == AccountingSoftware.QuickBooks)
     {
         PanelLayoutQB();
     }
     else
     {
         PanelLayoutOD();
     }
     listSoftware.SelectedIndex = (int)AcctSoftware;
 }
Exemple #2
0
		private void FormAccountingSetup_Load(object sender,EventArgs e) {
			AcctSoftware=(AccountingSoftware)PrefC.GetInt(PrefName.AccountingSoftware);
			if(AcctSoftware==AccountingSoftware.QuickBooks) {
				PanelLayoutQB();
			}
			else {
				PanelLayoutOD();
			}
			listSoftware.SelectedIndex=(int)AcctSoftware;
		}