Exemplo n.º 1
0
 /// <summary>
 /// Function that runs when the serviceMaintenanceButton is clicked - creates and displays a serviceMaintenanceForm.
 /// </summary>
 /// <param name="sender">The object that called this function. In this case the serviceMaintenanceButton.</param>
 /// <param name="e">The event arguments for the Click event passed to this function.</param>
 private void serviceMaintenanceButton_Click(object sender, EventArgs e)
 {
     if (serviceMaintenanceForm == null)
     {
         serviceMaintenanceForm = new ServiceMaintenanceForm(dataModule, this);
     }
     serviceMaintenanceForm.ShowDialog();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Function that runs when the serviceMaintenanceButton is clicked - creates and displays a serviceMaintenanceForm.
 /// </summary>
 /// <param name="sender">The object that called this function. In this case the serviceMaintenanceButton.</param>
 /// <param name="e">The event arguments for the Click event passed to this function.</param>
 private void serviceMaintenanceButton_Click(object sender, EventArgs e)
 {
     if (serviceMaintenanceForm == null)
     {
         serviceMaintenanceForm = new ServiceMaintenanceForm(dataModule, this);
     }
     serviceMaintenanceForm.ShowDialog();
 }