private void MessageAlert(int a)
 {
     if (a == 1)
     {
         MessageBox.Show("회원 정보를 변경하였습니다");
         ConsuForm.Activate();
     }
 }
示例#2
0
        private void labelConsuSearchClick(object sender, EventArgs e)
        {
            this.Visible = false;
            FormEmploySearchConsu frm = new FormEmploySearchConsu(mainform, id);

            frm.Owner = this;
            frm.Show();
            frm.Activate();
        }