/*=============================================================*/ private void thôngTinTàiKhoảnToolStripMenuItem_Click(object sender, EventArgs e) { frmAccount frm = new frmAccount(loginAccount); this.Hide(); frm.UpdateAccount += frm_UpdateAccount; frm.ShowDialog(); this.Show(); }
public frmMain(Account acc) { InitializeComponent(); this.LoginAccount = acc; frmAccount frm = new frmAccount(loginAccount); frm.UpdateAccount += frm_UpdateAccount; loadTable(); LoadCategory(); LoadComboboxTable(cbb_SwitchTable); }