setting f1 key to custom html help file

  • Thread starter Thread starter Silvester
  • Start date Start date
S

Silvester

Hi,

Hitting F1 in my A2000 app brings up the Office 2000 Help.

How can I configure autokeys macro to open my custom html help file ?

TIA
 
-----Original Message-----
Hi,

Hitting F1 in my A2000 app brings up the Office 2000 Help.

How can I configure autokeys macro to open my custom html help file ?

TIA
Hi TIA, use the following to open HTML file...

Function OpenHTML(FileName As String, SubAddress As String)
Application.FollowHyperlink FileName, SubAddress, ,
False
End Function

Use online help for information on AutoKeys macro.
Basically have macro with reserved name, AutoKeys. In name
column have {F1}. In action column have RunCode, with the
function name and arguments OpenHTML("file.html","optional
subaddress on page") as runcode arguments.

Luck
Jonathan
 
Back
Top