How do you call a RoboHelp file from VB?
Normal is boring... smh
smh, do you mean the help file or the aplication? Help file you can use the CommanDialog control. Code: With CommonDialog1 .HelpFile = "C:\live.hlp" .HelpCommand = cdlHelpContents .ShowHelp End With OR launching the RoboHelp, you can use Shell or ShellExecute API function call
With CommonDialog1 .HelpFile = "C:\live.hlp" .HelpCommand = cdlHelpContents .ShowHelp End With
My Virtual Home - My Blog
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...
Forum Rules