I am having a problem with getting a menu item to check or uncheck. Any suggestions on what's going wrong with this? It obviously keeps the form on top of other windows when I can get it working.
Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem3.Click
If MenuItem3.Checked = False Then
Me.TopMost = False
Else
MenuItem3.Checked = True
Me.TopMost = True
End If
End Sub
Thanks in advance for those that reply
