C
CJM
What I want to be able to do is open a help file from within my .NET
application and have it behave like a help file from any other MS
application. If the help button is pressed more than once I only want
the one instance of the help to be open.
This is what I have now to open the help file:
===============================================
Process proc = new Process();
proc.StartInfo.FileName = @"winhlp32.exe";
proc.StartInfo.Arguments = "-n " + mapId + " " +
Application.StartupPath + @"\" + helpFile;
proc.Start();
===============================================
Any help would be greatly appreciated.
application and have it behave like a help file from any other MS
application. If the help button is pressed more than once I only want
the one instance of the help to be open.
This is what I have now to open the help file:
===============================================
Process proc = new Process();
proc.StartInfo.FileName = @"winhlp32.exe";
proc.StartInfo.Arguments = "-n " + mapId + " " +
Application.StartupPath + @"\" + helpFile;
proc.Start();
===============================================
Any help would be greatly appreciated.