Message Boxes (Visual Basic .NET)

From LiteratePrograms

Jump to: navigation, search

This program is a code dump.
Code dumps are articles with little or no documentation or rearrangement of code. Please help to turn it into a literate program. Also make sure that the source of this code does consent to release it under the MIT or public domain license.

Dim x as integer
For x = 1 to 3
If x = 1 Then MsgBox("This will never stop!")
If x = 2 Then MsgBox("See I told you, what you still don't beleive me?")
If x = 3 Then MsgBox("Ok i am bored now, let me tell you a story, about a message box, you know what it said?  it said....")
x = 0
Next X
Download code
Views