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
Post a Comment