The followhyperlink worked fine with my pc but not with others, so I set up Andrews posibility.
In the VBE click your workbook in the Project window and choose Tools|VBA Project Properties. On the General tab type or browse for your help file name in the Help File Name box and click OK. That done you can use the HelpContextID property of your CommandButton to assign it a specific topic in your Help file.
I did all that, my helpfile is a word.doc and it's in the same directory as the xls file.
What do I have to put into my:
code:
---------------------------------
Private Sub ShowHelp_Click()
Unload Me
End Sub
---------------------------------
because it doesn't work..
The problem is that I can't do the shell option, because the two files can be used in whatever directory, but always together. A fixed path is no option.