|
-
Feb 6th, 2004, 02:46 PM
#1
Thread Starter
Lively Member
MenuItem problem [Resolved]
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
Last edited by teamdad; Jun 13th, 2004 at 08:17 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|