*.hlp files
-
How can I launch .hlp files from my application? (IE user clicks "help" button it luanches the help file). Thanks
You could try the
ShellExecute
Win32 API function (see the MSDN docs) - using the path to the help file as the_lpFile_
parameter &"open"
as the_lpVerb_
parameter should do the trick - and it also works for pretty much any file you want to open that has a file association (which is nice). Alternatively (he says, after looking in the MSDN docs), you could try theWinHelp
API function - never used it myself. Stuart Dootson 'Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p' -
You could try the
ShellExecute
Win32 API function (see the MSDN docs) - using the path to the help file as the_lpFile_
parameter &"open"
as the_lpVerb_
parameter should do the trick - and it also works for pretty much any file you want to open that has a file association (which is nice). Alternatively (he says, after looking in the MSDN docs), you could try theWinHelp
API function - never used it myself. Stuart Dootson 'Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p'