Hi
In a form I have 4 panel, each one with one image.
Over each image I have a button that shows a new form. The new form just have a picturebox with one image.
2 of they appear normal. Working as I expected.
The other 2 I just see the new form flickering and it no appears.
All they have the same properties, "n" times checked and re-checked.
All they have "centerscreen" selected and "topmost" also selected except the first one.
What can I do? I even have deleted it and created it again.
Tks in advance
All they have the same command to show. (And "MouseLeave" to hide)
Carlos
In a form I have 4 panel, each one with one image.
Over each image I have a button that shows a new form. The new form just have a picturebox with one image.
2 of they appear normal. Working as I expected.
The other 2 I just see the new form flickering and it no appears.
All they have the same properties, "n" times checked and re-checked.
All they have "centerscreen" selected and "topmost" also selected except the first one.
What can I do? I even have deleted it and created it again.
Tks in advance
All they have the same command to show. (And "MouseLeave" to hide)
Code:
Private Sub Buttonname_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles Buttonname.MouseHover
form_name.Show()
End Sub