Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to I call Help.html

Status
Not open for further replies.

delphiman

Programmer
Dec 13, 2001
422
ZA

Having completed a Help.html file for my project can someone please tell me how I call it
in a button event handler? As in

procedure TfrmGrocShop.btbtnHelpClick(Sender: TObject);
begin
//What ???
end;

I have tried using an Action List component as follows

object ActionList1: TActionList
object ActionGetHelp: TAction
Category = 'File'
Caption = '&Help'
OnExecute = ('c:\Program Files\MyProg\MyHelp.html')Execute
end
end

.....but this results in the following exception

Error creating form: "=" expected on Line 721.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top