コード例 #1
0
ファイル: mdiPayrollMenu.cs プロジェクト: VijayMVC/Payroll
 private void dgvChangesInShift_MouseDoubleClick(object sender, MouseEventArgs e)
 {
     try
     {
         double id = Convert.ToDouble(dgvChangesInShift.SelectedRows[0].Cells["IDS"].Value.ToString());
         AttendanceShiftEdit attRule = new AttendanceShiftEdit();
         attRule.Show();
         attRule.AttendanceGet(id);
     }
     catch
     { }
 }
コード例 #2
0
ファイル: mdiPayrollMenu.cs プロジェクト: VijayMVC/Payroll
 private void tsbAttendanceRule_Click(object sender, EventArgs e)
 {
     try
     {
         double id = Convert.ToDouble(dgvAttendance.SelectedRows[0].Cells["IDS"].Value.ToString());
         AttendanceShiftEdit attRule = new AttendanceShiftEdit();
         attRule.Show();
         attRule.AttendanceGet(id);
     }
     catch
     { }
 }