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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -