private void btnService_Click(object sender, EventArgs e) { fService open = new fService(); this.Hide(); open.ShowDialog(); this.Show(); }
private void button3_Click_1(object sender, EventArgs e) { if (AccountManagementDAO.Instance.checkShowForm(getGroupCode(), "fService") == true) { fService f = new fService(); this.Hide(); f.ShowDialog(); this.Show(); } else { MessageBox.Show("Bạn không có quyền truy cập"); } }