winforms - Using button click to open helpProvider c# -


just quick question possible open helpprovider?

all want open chm file when click button in addition f1 key?

if it’s not possibly know of work around?

thanks peter

i think mean windows forms application.

there windows forms control called helpprovider you.

system.windows.forms.helpprovider hlpprovider = new system.windows.forms.helpprovider(); hlpprovider.setshowhelp(this, true); // file hlpprovider.helpnamespace = "helpfile.chm"; 

you can open file

process proc = new process(); proc.startinfo.filename = "helpfile.cfm"; proc.start(); 

Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -