Windows printer dialog using python win32 api

I need a printer dialog (the default Windows print dialog that appears after ctrl + P) when I print a document using python. How to do it?

+3
source share
1 answer

You can find your answer here and more specifically in the link.

Short version:

win32api.ShellExecute(...)
0
source

All Articles