Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ShellExecute, "Print"

Tags:

winapi

I am using ShellExecute through C and that seem's work OK except one issue.

ShellExecute(NULL, "print", "C:\\index.html", NULL, NULL, SW_HIDE);

With this I would like to get print dialog for press OK for start printing but instead of that MS Word opens with file C:\index.html loaded.

How to get print functionality on html files with ShellExecute?

If is important to note, IE is not my default internet browser.

like image 243
Wine Too Avatar asked Oct 21 '25 10:10

Wine Too


1 Answers

You are relying on the shell's associations to print the file, but that's a terribly brittle approach. If you right click on the file and select Print you'll observe the same behaviour as your call to ShellExecute.

So, if you want to use ShellExecute with the Print verb you will need to change your machine's configuration. You need to make sure that the machine's associations are configured to handle the Print verb on a .html file in a way that suits you. You could do that for your machine but you cannot expect to do it for other people's machines.

Instead you could run this command to be sure that the HTML file will be printed:

rundll32.exe %windir%\system32\mshtml.dll,PrintHTML "C:\index.html"

You can translate that readily into a ShellExecute call.

like image 189
David Heffernan Avatar answered Oct 25 '25 05:10

David Heffernan