![]() |
Previous Top Next |
FormHelp component.
|
procedure ShowHelpFromControl(Control: TControl);
|
The ShowHelpFromControl method displays the popup window with context-sensitive help, from any visible control specified by Control parameter. Text for popup window will be taken from secondary part of Hint property of specified Control.
|
procedure TForm1.Button2Click(Sender: TObject);
|
begin
|
FormHelp.ShowHelpFromControl(Button2);
|
end;
|
ShowHelp and ShowHelpFromPoint methods.
|