I have searched for this topic but find little help. In my program I have a Message Box (not MsgBox) line of code. Because the Message Box centers itself on the screen it is blocking a label that also has information that changes in it. Is there anyway I can set the location of the message box? Below is a portion of the code from my program that contains the Message Box. Thanks in advance for any advice!
CODE
Private Sub escapeB_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles escapeB.Click
Dim random1 As Integer
Dim random2 As Integer
Dim randomGenerator As New Random
random1 = randomGenerator.Next(1, 6)
random2 = randomGenerator.Next(1, 3)
If random1 = 3 Then
MessageBox.Show("You Have Escaped!!!!!", "Super Barrio Bros", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)