Wrox Programmer Forums
|
Access Discussion of Microsoft Access database design and programming. See also the forums for Access ASP and Access VBA.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 7th, 2006, 05:44 AM
Friend of Wrox
 
Join Date: Dec 2005
Posts: 233
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to anukagni Send a message via Yahoo to anukagni
Default Hi all

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...
 
Old October 10th, 2006, 01:48 PM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

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









Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.