xsharp.eu • Help! on Help :) - Page 3
Page 3 of 3

Help! on Help :)

Posted: Mon Aug 26, 2019 10:35 am
by BiggyRat
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 :)

Posted: Mon Aug 26, 2019 10:38 am
by robert
Jeff,

Code: Select all

Local cHelpFile := WorkDir() +"; "+ WorkDir()+"Invoices" + "; "+ WorkDir()+"BizHelp" as String MY CODE
You are using a path string with multiple paths. That does not work. Your path needs to be a single path.

Robert

Help! on Help :)

Posted: Mon Aug 26, 2019 11:04 am
by BiggyRat
That simple eh Robert? Ok. Thanks very much. Sort of defeats the purpose of setting a path at all though doesn't it?