Causes the mouse pointer to change into the What's This pointer and prepares the application to display What's This Help on the selected object.
Form.WhatsThisMode
Executing the WhatsThisMode method places the application in the same state you get by clicking the What's This button in the title bar. The mouse pointer changes to the What's This pointer. When the user clicks an object, the WhatsThisHelpID property of the clicked object is used to invoke context-sensitive Help. This method is especially useful when invoking Help from a menu in the menu bar of your application.
OpenW 1
Ocx Command cmd = "Activate WhatsThis Mode", 10, 10, 140, 22
Do : Sleep : Until Win_1 Is Nothing
Sub cmd_Click
Win_1.WhatsThisMode
EndSub
For a fuller example dealing with WhatsThisHelpID, see Form
{Created by Sjouke Hamstra; Last updated: 25/10/2014 by James Gaite}