Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Open help file in Delphi
You can use HelpFile property and HelpCommand method for TApplication class.You can use WinHelp procedure also. This example shows, how to call the Windows Help.
procedure TForm1.Button1Click(Sender: TObject);
begin
WinHelp(Form1.Handle,nil,HELP_HELPONHELP,0);
end;
-
More for developers