RE: [DUG]: Help Border Icon?

1999-05-10 Thread Dennis Chuah
Dave, TForm does not package the message sent by the icon into an event. You will have to trap WM_SYSCOMMAND message and check the wParam parameter to see if it equals SC_CONTEXTHELP. procedure wmSysCommand (var Message: TMessage); message WM_SYSCOMMAND; procedure TMyForm.wmSysCommand (var M

RE: [DUG]: Help Border Icon?

1999-05-09 Thread Dave O'Brien
recipients of list delphi Subject: RE: [DUG]: Help Border Icon? Have you set the HelpContext under the components properties? Also you must set the application.helpfile property. > Has anyone got an example of how to get this going? > No events seem to fire when this border icon is se

RE: [DUG]: Help Border Icon?

1999-05-09 Thread Alistair George
Have you set the HelpContext under the components properties? Also you must set the application.helpfile property. > Has anyone got an example of how to get this going? > No events seem to fire when this border icon is selected.