exp.
'Declaration
Declare Function WinHelp Lib "user32" Alias "WinHelpA"
(ByVal hwnd As Long, ByVal lpHelpFile As String, ByVal
wCommand As Long, ByVal dwData As Any) As Long
'form load
App.HelpFile = "AutByWks.hlp"
'Click Event
I = WinHelp(Form1.hwnd, App.HelpFile, HELP_INDEX, 0&)
Tony
Jeff Levinson [mcsd] - 24 Aug 2003 20:48 GMT
You don't have to "change" the help from VB6 to .NET. It's
only in how you call it.
In .NET, add an F1HelpProvider control to your form. For
more information see the MSDN.
Jeff Levinson
Author of "Building Client/Server Applications with
VB.NET: An Example Driven Approach"
>-----Original Message-----
>exp.
[quoted text clipped - 11 lines]
>Tony
>.