How do you call a RoboHelp file from VB?
Printable View
How do you call a RoboHelp file from VB?
smh, do you mean the help file or the aplication?
Help file you can use the CommanDialog control.
OR launching the RoboHelp, you can use Shell or ShellExecute API function callCode:With CommonDialog1
.HelpFile = "C:\live.hlp"
.HelpCommand = cdlHelpContents
.ShowHelp
End With
Just a Help File.
Thanks
http://www.vbapi.com/ref/w/winhelp.html
shows a great example and is better
than lugging the weight of the commondialog control...