Esempio n. 1
0
 private void dgStaffInfoRecord_RowHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e)
 {
     try
     {
         DataGridViewRow dr = dgStaffInfoRecord.SelectedRows[0];
         this.Hide();
         StaffInfoUI aUi = new StaffInfoUI();
         aUi.Show();
         aUi.txtId.Text                     = dr.Cells[0].Value.ToString();
         aUi.txtName.Text                   = dr.Cells[1].Value.ToString();
         aUi.txtFatherName.Text             = dr.Cells[2].Value.ToString();
         aUi.txtMotherName.Text             = dr.Cells[3].Value.ToString();
         aUi.txtPresentAddress.Text         = dr.Cells[4].Value.ToString();
         aUi.txtPermanentAddress.Text       = dr.Cells[5].Value.ToString();
         aUi.txtDesignation.Text            = dr.Cells[6].Value.ToString();
         aUi.dateTimePickerJoiningDate.Text = dr.Cells[7].Value.ToString();
         aUi.txtBasicSalary.Text            = dr.Cells[8].Value.ToString();
         aUi.txtBankName.Text               = dr.Cells[9].Value.ToString();
         aUi.txtAccNo.Text                  = dr.Cells[10].Value.ToString();
         aUi.comboGender.Text               = dr.Cells[11].Value.ToString();
         aUi.comboReligion.Text             = dr.Cells[12].Value.ToString();
         aUi.dateTimePickerBirth.Text       = dr.Cells[13].Value.ToString();
         aUi.txtMobileNo.Text               = dr.Cells[14].Value.ToString();
         aUi.txtGuardianMobNo.Text          = dr.Cells[15].Value.ToString();
         aUi.btnDelete.Enabled              = true;
         aUi.btnUpdate.Enabled              = true;
         aUi.btnSave.Enabled                = false;
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Esempio n. 2
0
        private void StaffRecordUI_FormClosing(object sender, FormClosingEventArgs e)
        {
            StaffInfoUI aUi = new StaffInfoUI();

            aUi.Show();
        }
Esempio n. 3
0
        private void staffInformationToolStripMenuItem_Click_1(object sender, EventArgs e)
        {
            StaffInfoUI aUi = new StaffInfoUI();

            aUi.Show();
        }