/// <summary>
 /// Gridfill function
 /// </summary>
 public void GridFill()
 {
     try
     {
         ServiceSP spService   = new ServiceSP();
         DataTable dtblService = new DataTable();
         dtblService           = spService.ServiceGridFill();
         dgvService.DataSource = dtblService;
     }
     catch (Exception ex)
     {
         MessageBox.Show("Ser4:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Gridfill function
 /// </summary>
 public void GridFill()
 {
     try
     {
         ServiceSP spService   = new ServiceSP();
         DataTable dtblService = new DataTable();
         dtblService           = spService.ServiceGridFill();
         dgvService.DataSource = dtblService;
     }
     catch (Exception ex)
     {
         formMDI.infoError.ErrorString = "Ser4:" + ex.Message;
     }
 }
Beispiel #3
0
 /// <summary>
 /// Gridfill function
 /// </summary>
 public void GridFill()
 {
     try
     {
         ServiceSP spService = new ServiceSP();
         DataTable dtblService = new DataTable();
         dtblService = spService.ServiceGridFill();
         dgvService.DataSource = dtblService;
     }
     catch (Exception ex)
     {
         MessageBox.Show("Ser4:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }