Yep! As usual Karl-Heinz, you are 100% correct. The problem seems to be the way the path is being set. If I move the help file into the same folder as the .exe, it works beautifully, not ideal but will suffice if it must.
Also, the hard coded bit, I also twigged to earlier, but I need it to be dependent on where the app is installed.
Help! on Help :)
Help! on Help :)
Jeff,
You are using a path string with multiple paths. That does not work. Your path needs to be a single path.
Robert
Code: Select all
Local cHelpFile := WorkDir() +"; "+ WorkDir()+"Invoices" + "; "+ WorkDir()+"BizHelp" as String MY CODE
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu
Help! on Help :)
That simple eh Robert? Ok. Thanks very much. Sort of defeats the purpose of setting a path at all though doesn't it?