示例#1
0
        private void btnService_Click(object sender, EventArgs e)
        {
            fService open = new fService();

            this.Hide();
            open.ShowDialog();
            this.Show();
        }
示例#2
0
 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");
     }
 }