public void RebuildForms() { //Codes FrmAccTreeOptions = new AccTreeOptionsFrm(); FrmEditorYear = new EditorYearFrm(); FrmEditorAccountNature = new EditorAccountNatureFrm(); FrmEditorSalesUnit = new EditorSalesUnitFrm(); FrmEditorStore = new EditorStoreFrm(); FrmEditorBank = new EditorBankFrm(); FrmEditorCustomer = new EditorCustomerFrm(); FrmEditorCDCategories = new EditorCDCategoriesFrm(); FrmEditorSuppliers = new EditorSuppliersFrm(); FrmEditorCompanies = new EditorCompaniesFrm(); FrmEditorBillPayTypes = new EditorBillPayTypesFrm(); FrmEditorJob = new EditorJobFrm(); FrmEditorCDASNAF = new EditorCDASNAFFrm(); //Data FrmAccTypesDlg = new AccTypesDlgFrm(); FrmAccTypes = new AccTypesFrm(); FrmConstraintsDaily = new ConstraintsDailyFrm(); FrmDataEmp = new DataEmpFrm(); FrmDataBill = new DataBillFrm(); FrmDataSellBill = new DataSellBillFrm(); FrmDataSellBillBarCode = new DataSellBillBarCodeFrm(); FrmDataTblPricelists = new DataTblPricelistsFrm(); //Queries FrmQrysells = new QrysellsFrm(); FrmQryBuys = new QryBuysFrm(); FrmItemAvailability = new ItemAvailabilityFrm(); FrmQryBarcode = new QryBarcodeFrm(); //Roles FrmEditorRole = new EditorRoleFrm(); FrmEditorRoleMenu = new EditorRoleMenuFrm(); FrmEditorUser = new EditorUserFrm(); FrmEditorUserInRole = new EditorUserInRoleFrm(); //Tools FrmSkins = new SkinsFrm(); }
private void editorAccountNatureToolStripMenuItem_Click(object sender, EventArgs e) { if (FrmEditorAccountNature.IsDisposed) { FrmEditorAccountNature = new EditorAccountNatureFrm(); FrmEditorAccountNature.MdiParent = this; FrmEditorAccountNature.Show(); } else { if (FrmEditorAccountNature.Visible) { FrmEditorAccountNature.WindowState = FormWindowState.Normal; FrmEditorAccountNature.Focus(); } else { FrmEditorAccountNature.MdiParent = this; FrmEditorAccountNature.Show(); } } FrmEditorAccountNature.Icon = MCls.MakeIcon(global::StoreAccount.Properties.Resources.editorAccountNature, 16, false); }