Subject: Hi all
Posted By: anukagni Post Date: 10/7/2006 5:44:57 AM
Hi Guy's

 I created an HTML help for my ms access database i want to assing the F1 key for my help in my database..
 
 I want to know the procedure for this ..

 pls give me an idea..

Learn as you can..
------------------------
pap...
Reply By: mmcdonal Reply Date: 10/10/2006 1:48:20 PM
You can look up custom help forms in Access. If you want this to show up as a web site, which I have done a la Adobe PhotoShop Help, do this:

Dim sLink As String
Dim objExplorer As Variant ' ? Or just dim with no type
sLink = "C:\PathToHelpFile\index.htm"
Set objExplorer = CreateObject("InternetExplorer.Application")
    objExplorer.Navigate sLink
    objExplorer.Visible = 1

Does this help?

mmcdonal

Go to topic 50776

Return to index page 152
Return to index page 151
Return to index page 150
Return to index page 149
Return to index page 148
Return to index page 147
Return to index page 146
Return to index page 145
Return to index page 144
Return to index page 143