Exemplo n.º 1
0
 public void editAlarm(String partType, String lineNum, String station, String alarmTime, Boolean desktopNotification, Boolean emailNotification)
 {
     popup = new CreateAlarmPopup(this);
     popup.editAlarm(partType, lineNum, station, alarmTime, desktopNotification, emailNotification);
     popup.ShowDialog();
 }
Exemplo n.º 2
0
 public void editAlarm(string partType, string lineNum, string station, string alarmTime, bool desktopNotification, bool emailNotification)
 {
     popup = new CreateAlarmPopup(this, information.getSendDefault(), information.getDesktopAlarmDefault());
     popup.editAlarm(partType, lineNum, station, alarmTime, desktopNotification, emailNotification);
     popup.ShowDialog();
 }