コード例 #1
0
 private void EditData(DataGridViewCellEventArgs e)
 {
     if (e.RowIndex >= 0)
     {
         sp_MAS307_GetInstitutionSTD_Result row = gvResult.Rows[e.RowIndex].DataBoundItem as sp_MAS307_GetInstitutionSTD_Result;
         using (MAS307_InstitutionStandardEntry dlg = new MAS307_InstitutionStandardEntry(row))
         {
             if (dlg.ShowDialog(this) == DialogResult.OK)
             {
                 LoadData();
             }
         }
     }
 }
コード例 #2
0
 private void AddNew()
 {
     try
     {
         using (MAS307_InstitutionStandardEntry dlg = new MAS307_InstitutionStandardEntry())
         {
             if (dlg.ShowDialog(this) == DialogResult.OK)
             {
                 LoadData();
             }
         }
     }
     catch (Exception ex)
     {
         rMessageBox.ShowException(this, ex);
     }
 }