[RESOLVED] how to control the order of the message boxes that show
Hi guys
i have a problem with to control the order of the message boxes that show, for example :
I have A button Im My Form1 only 1 button okey here is what i want
Private sub button1_click(byval ......
Msgbox("Hello World 1")
Msgbox("Hello world 2")
Msgbox("Hello World 3")
Ok so This will basically show the message boxes in order, But how to make It show the message box that say 'Hello world 3, and then 'Hello world 1, and then 'Hello world 2 ?
Re: how to control the order of the message boxes that show
Re: how to control the order of the message boxes that show
Re: how to control the order of the message boxes that show
Code:
Dim order As String = "312"
For Each c As Char In order
MessageBox.Show("Hello World " & c)
Next
Re: how to control the order of the message boxes that show