Hi !!
pls help out ...
System.Windows.Forms.
Help.ShowHelp(this, @"c:\someHelp.hlp", HelpNavigator.TopicId,505);.. doesnot work (doesnt open the topic, opens only the file)
WinHelp(
new IntPtr(0).ToInt32(), @"c:\someHelp.hlp", HELP_CONTEXT, 505); .. works .. calls the api as below
migrating for VB 6.0 to .net 2008
[
DllImport("user32", EntryPoint = "WinHelp")]
public static extern bool WinHelp(int hwnd, string lpHelpFile, int wCommand, int dwData);