N
Nigel Findlater
Hallo,
I would like to make Help files in HTML. The only way I
found how to display these files is:
Dim pHelp As New ProcessStartInfo
pHelp.FileName = "explorer.exe"
pHelp.Arguments = "Help.htm"
pHelp.UseShellExecute = True
pHelp.WindowStyle = ProcessWindowStyle.Normal
Dim proc As Process = Process.Start(pHelp)
This works under Windows 2000, Windows ME but not under
Windows NT. Does anyone have a better approach?
Nigel...
I would like to make Help files in HTML. The only way I
found how to display these files is:
Dim pHelp As New ProcessStartInfo
pHelp.FileName = "explorer.exe"
pHelp.Arguments = "Help.htm"
pHelp.UseShellExecute = True
pHelp.WindowStyle = ProcessWindowStyle.Normal
Dim proc As Process = Process.Start(pHelp)
This works under Windows 2000, Windows ME but not under
Windows NT. Does anyone have a better approach?
Nigel...