Answers for "messagebox warning c#"

C#
9

c# error messagebox

MessageBox.Show("your message",
    "window title", 
    MessageBoxButtons.OK, 
    MessageBoxIcon.Warning // for Warning  
    //MessageBoxIcon.Error // for Error 
    //MessageBoxIcon.Information  // for Information
    //MessageBoxIcon.Question // for Question
   );
Posted by: Guest on May-13-2020
1

how to do a messagebox in c#

MessageBox.Show("Content", "Title", MessageBoxIcon.Error)
Posted by: Guest on May-14-2020

C# Answers by Framework

Browse Popular Code Answers by Language