c# 4.0 - Why Help.ShowHelp(chmFileName); not working in mono on linux? -
here trying run .chm file when requested either using f1 key using form1_helprequested(object sender, helpeventargs hlpevent)
why help.showhelp(chmfilename);
not working in mono on linux ? works on visual studio, windows. please me execute on mono.
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, code work.
by samdoss
Comments
Post a Comment