Installing Help in your database (1 Viewer)

wizcow

Registered User.
Local time
Today, 15:56
Joined
Sep 22, 2001
Messages
236
Hi

I have a little help program that I made with ccviz/Helpmaker.
(its quite a nice program)
Now I would like my users to be able to open it from a menu inside my Access database.

Where do I start?

Thanks
Tom
 

MStef

Registered User.
Local time
Today, 22:56
Joined
Oct 28, 2004
Messages
2,251
Hello Tom!

I solved this on my way.
Look at "DemoHelpFormA2000.mdb".
 

Attachments

  • DemoHelpFormA2000.zip
    12.8 KB · Views: 154

wizcow

Registered User.
Local time
Today, 15:56
Joined
Sep 22, 2001
Messages
236
MStef

Thanks your for the reply!

What I had in mind is something a bit different.
I have built a help file using a program called ccviz/Helpmaker.
It is its own program. It has the nice blue dot with the white question mark in it for an icon.

To be more precise, I want to open an outside program(ccviz), using a menu command.

Tom
 

spacepro

Registered User.
Local time
Today, 22:56
Joined
Jan 13, 2003
Messages
715
Wizcow,

If this database is multi-user , do the other users have the program installed or is the generated help file in a global file extension that windows recognise.

Could you provide a link to the software?

If you are opening a program then it should be as simple as:

1)Creating your menu
2)Create a public function to shellexecute the program.
3) Assign the public function to the menu item.

I tend to use CHM files for my help files.

Andy
 

wizcow

Registered User.
Local time
Today, 15:56
Joined
Sep 22, 2001
Messages
236
Andy

Thanks for the reply!!

My program generates chm files.

Could you be more explicit about 'creating the public function shellexecute'?

I'm new to this concept.

Thanks
Tom
 

spacepro

Registered User.
Local time
Today, 22:56
Joined
Jan 13, 2003
Messages
715
wizcow said:
Andy

Thanks for the reply!!

My program generates chm files.

Could you be more explicit about 'creating the public function shellexecute'?

I'm new to this concept.

Thanks
Tom
Tom,

I use the following code:

Code:
'Call Shell and Reference HTML Help Executable
'otherwise you will get the windows file open warning

Shell "C:\Windows\Hh.exe C:\Path to Help File",vbnormalfocus

HTH
Andy
 

Users who are viewing this thread

Top Bottom