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(); }
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); }
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(); }