示例#1
0
文件: R_Home.cs 项目: imakashsahu/HMS
        private void pictureBox3_Click(object sender, EventArgs e)
        {
            this.Hide();
            report frm = new report();

            frm.Show();
        }
示例#2
0
 private void pictureBox3_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("You are about to enter the Front Office Dashboard", "Warning", MessageBoxButtons.OKCancel) == DialogResult.OK)
     {
         this.Hide();
         report frm = new report();
         frm.Show();
     }
 }