Introduction to C#; Lesson 3
Hope you are following us from our first post, if so! lets continue printing in c# lesson (windows form), if not, don't worry, you can start form the beginning, here is a link for you to review our first and second lesson: Introduction to C#; Lesson 1 Introduction to C#; Lesson 2 Alright! lets begin our third lesson. As we learnt about printing in textbox and label in previous lessons, lets move on to Messagebox in this lesson. Messagebox: Lets give a quick introduction to Messagebox first, basically it can be used to : Display any message at run time such as Warnings Error message. Information, confirmation Prompting user to enter value and so on... So basically if user leaves some value empty or something then messagebox comes in handy. As message box creates a pop-up screen on your window so user is bound to give attention to your message. User can't proceed until he/she reads the message and give appropriate input etc th...