Exemple #1
0
 protected void ShowSuccessMsgWithSound(NotifyEventArgs args, BHTController bhtController)
 {
     bhtController.SoundOK();
     ShowSuccessMsg(args);
 }
Exemple #2
0
 protected void ShowSuccessMsgWithSound(string caption, string body, BHTController bhtController)
 {
     bhtController.SoundOK();
     ShowSuccessMsg(caption, body);
 }
Exemple #3
0
 protected void ShowErrorMsgWithSound(NotifyEventArgs args, BHTController bhtController)
 {
     bhtController.SoundWarning();
     ShowErrorMsg(args);
 }
Exemple #4
0
 protected void ShowErrorMsgWithSound(string caption, string body, BHTController bhtController)
 {
     bhtController.SoundWarning();
     ShowErrorMsg(caption, body);
 }
Exemple #5
0
 protected bool ShowConfirmationMsgWithSound(NotifyEventArgs args, BHTController bhtController)
 {
     bhtController.SoundConfirm();
     return(ShowConfirmationMsg(args));
 }
Exemple #6
0
 protected bool ShowConfirmationMsgWithSound(string caption, string body, BHTController bhtController)
 {
     bhtController.SoundConfirm();
     return(ShowConfirmationMsg(caption, body));
 }