Hola Gracias por contestar.
Mira el formulario en el cual me aparece el messabox en blenco es un formulario secundario llamado del formulario prins¡cipal mediante el frmInicio.shodialog y contiene el siguiente codigo.
Private Sub frmInicio_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
count = 0
MessageBox.Show("HOLA")
End Sub
Private Sub btnIngreso_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnIngreso.Click
count += 1
If txtLogin.Text = "Paulo" And txtPassword.Text = "pass" Then
Me.Close()
Else
txtLogin.Text = ""
txtPassword.Text = ""
MessageBox.Show("Login o password Incorrectos", "Advertencia", MessageBoxButtons.OK, _
MessageBoxIcon.Warning).ToString()
txtLogin.Focus()
End If
If count = 3 Then
MessageBox.Show("Lo sentimos a sobrepasado el límite de Intentos", "Advertencia", MessageBoxButtons.OK, _
MessageBoxIcon.Warning).ToString()
Application.Exit()
End If
End Sub
Private Sub btnCerrar_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCerrar.Click
Application.Exit()
End Sub