Answers for "messagebox c#/net"

C#
11

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
33

c# MessageBox

MessageBox.Show("text", "title", MessageBoxButtons.OK, MessageBoxIcon.Warning);
Posted by: Guest on March-02-2020

C# Answers by Framework

Browse Popular Code Answers by Language