Beispiel #1
0
 public static void Warning(string Message, string Title)
 {
     Forms.frmMsg f = new lib.Visual.Forms.frmMsg();
     f.setMessage(frmMsg.enmTypeMsg.Warning, Title, Message);
     f.ShowDialog();
 }
Beispiel #2
0
 public static bool Question(string Message, string Title)
 {
     Forms.frmMsg f = new lib.Visual.Forms.frmMsg();
     f.setMessage(frmMsg.enmTypeMsg.Question, Title, Message);
     return(f.ShowDialog() == DialogResult.OK);
 }
Beispiel #3
0
 public static void Information(string aMessage, string Title)
 {
     Forms.frmMsg f = new lib.Visual.Forms.frmMsg();
     f.setMessage(frmMsg.enmTypeMsg.Information, Title, aMessage);
     f.ShowDialog();
 }