Print Setup Dialog

jdy0803

Well-known member
Joined
Sep 9, 2012
Messages
73
Location
Santa Clarita
Programming Experience
10+
I am trying to display the Printer Setup dialog like the Printer Setup dialogbox generated by VB6's CommonDialog.
In my research I have found the Page Setup and Print dialogs in VB.NET, but not the Printer Setup dialog
Is anybody able to solve this?
 
User can access it through the PrintDialog.
 
No, it is just a wrapper for native PrintDlg API, which doesn't have an option for that. If you need to you can give feedback about special printing mechanism in your app if ShowDialog returns DialogResult.OK.
 
print setup.png
I want to make this Print Setup(VB6 CommonDialog)
Is it possible?
 
Last edited:
Print button will always "work", it is the 'ok' button for that dialog which dismisses the dialog and returns DialogResult, in addition printer settings is transferred if a PrintDocument is attached to it. What happens after Print button is clicked is entirely up to you.
 
Back
Top