Question

Here I am trying to run .chm file when help is requested either using F1 key using Form1_HelpRequested(object sender, HelpEventArgs hlpevent) Why Help.ShowHelp(chmFileName); not working in mono on linux ? Where as it works good on visual studio, windows. Please help me to execute help on mono.

Was it helpful?

Solution 2

private void ShowHelpForLinux()
{
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.FileName = "chmsee";
startInfo.Arguments = " " + help.chm + "::" + @"rootname//destination.htm";
Process.Start(startInfo);
}

For mono c# help, this code will work.

By Samdoss

OTHER TIPS

Maybe the relevant API calls aren't implemented on Linux.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top