Exemplo n.º 1
0
        private void btn_InsertUser_Click(object sender, EventArgs e)
        {
            frm_Add_Edit_Users fm = new frm_Add_Edit_Users();

            fm.formtype = 1;
            fm.ShowDialog();
            UserInfo(CrateStringSearch());
        }
Exemplo n.º 2
0
        private void btn_EditUser_Click(object sender, EventArgs e)
        {
            int item = dgv_ShowUserInfo.SelectedCells.Count;

            if (item > 0)
            {
                frm_Add_Edit_Users fm = new frm_Add_Edit_Users();
                fm.formtype = 2;
                fm.UserID   = Convert.ToInt32(dgv_ShowUserInfo.CurrentRow.Cells["col_UserID"].Value);
                fm.ShowDialog();
                UserInfo(CrateStringSearch());
            }
            else
            {
                MessageBox.Show("لطفا ردیفی را انخاب کنید", "خطا", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
        }