Article ID: 142249
Article Last Modified on 7/1/2004
Private Sub Form_Load()
' your machine
' Change this path to where ever Msdev.hlp is located on
App.HelpFile = "C:\Program
Files\DevStudio\Common\MSDev98\Help\Msdev.hlp"
Menu Property Value
----------------------------------------------------
WhatsThis Caption WhatsThis
WhatsThis Name mnuWhatsThis
WhatsThis Visible False
What's This? Caption What's This?
What's This? Name mnuWhatsThisHelp
Public ThisControl as control
Private Sub mnuWhatsThisHelp_Click()
ThisControl.ShowWhatsThis
End Sub
Private Sub Command1_MouseUp(Button As Integer, Shift As Integer, _
X As Single, Y As Single)
If Button = vbRightButton Then
Set ThisControl = Command1
PopupMenu mnuWhatsThis
End If
Set ThisControl = Nothing
End Sub
Additional query words: pop up pop-up
Keywords: kbhowto KB142249