T
Tony WONG
Hi
i wish to create a message box without affecting program flow.
when i click button1, box2 will come up without the need of user click out
box1.
any way to do that? Thanks a lot.
************************************
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
MsgBox("1st box")
MsgBox("2st box")
End Sub
End Class
i wish to create a message box without affecting program flow.
when i click button1, box2 will come up without the need of user click out
box1.
any way to do that? Thanks a lot.
************************************
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
MsgBox("1st box")
MsgBox("2st box")
End Sub
End Class