I have WPF application.
After testing my app on Windows7 and realized that opening help does not work.
Basically to open chm help file I call:
Process.Start("help.chm");
And nothing happens. I have also tried my app on Vista SP1, same result.
I’m admin in both OS’es
I have googled this problem, but have not found solution to it.
Is there way to solve this problem?
Have you experienced this types of incompatibilities.
Thank You!
have you tried ShellExecute ?
using System.Runtime.InteropServices;
[DllImport(“shell32.dll”, CharSet = CharSet.Auto)]
static extern bool ShellExecuteEx(ref SHELLEXECUTEINFO lpExecInfo);
and you can try to start process with :
(http://www.pinvoke.net/default.aspx/shell32.ShellExecuteEx)