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