Creating Help Files

J

Jerry C

Is there any way to create a help file for my application
that can be enbedded in the application?
 
A

Arvin Meyer

Jerry C said:
Is there any way to create a help file for my application
that can be enbedded in the application?

Access help files are usually outside files which have the .hlp extension
for Access 97 and earlier, or the .chm for the html files of Access 2000 and
later. If you don't want to build the standard type help files, you can
always just build simple forms, or even msgboxes with specific help topics
and open them in response to command buttons, hyperlinks, or even an
autokeys macro.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
N

Nick Coe \(UK\)

In Jerry C typed:
Is there any way to create a help file for my application
that can be enbedded in the application?

There is sort of.
Instead of an external WinHelp or HTMLHelp file you could
redirect the F1 key with an AutoKeys macro and then have a
table containing your help text, the control and form name.
You then use the form name and control name to filter or
select the row you want from that table to display in a
'Help' form you design.

It's non standard but it works.
--
Nick Coe (UK)
AccHelp v1.01 Access Application Help File Builder
http://www.alphacos.co.uk/
Download Free Copy
----
 
Top