Stretchwickster
Programmer
Hey everyone!
I've just written my own help file and have managed to open it when I click a button named 'Help' with the following lines:
However, in addition to this button, I want to be able to use the Question Mark symbol (in the top-right of the form) and drop it on certain edit controls to display the help file.
Do I need to use an OnDragDrop event or is there a specific event to use for this '?' button thing?
Any suggestions would be gratefully received!
I've just written my own help file and have managed to open it when I click a button named 'Help' with the following lines:
Code:
Application.HelpFile := 'IMDM Help.hlp';
Application.HelpCommand(HELP_FINDER, 0);
However, in addition to this button, I want to be able to use the Question Mark symbol (in the top-right of the form) and drop it on certain edit controls to display the help file.
Do I need to use an OnDragDrop event or is there a specific event to use for this '?' button thing?
Any suggestions would be gratefully received!