.net - How do I launch a .pdf programmatically? -
.net - How do I launch a .pdf programmatically? -
i have .pdf help file , launch c++/cli application.
currently following:
system::diagnostics::process::start("iexplore", "c:\\mypdf.pdf");
...which works has irritating side effect of opening in net explorer. there way launch in whatever windows uses open .pdf files?
this allow scheme decide viewer use..
system::diagnostics::process::start("c:\\mypdf.pdf");
.net windows pdf c++-cli
Comments
Post a Comment