I have a program that will show the print dialog box if I don't open a file. Once I access the open dialog box, the print dialog box will no longer come up. I'm using the Common Dialog boxes. Any suggestions?
Printable View
I have a program that will show the print dialog box if I don't open a file. Once I access the open dialog box, the print dialog box will no longer come up. I'm using the Common Dialog boxes. Any suggestions?
take a look at the error handling of your application, if the error handling triggers the opening of the print dialog, get it to check if the
cd1.filename = "" and then not show the print dialog box.
Also make sure that the dialog is being executed with .showopen, not .showprint
good luck
David:
You lost me. Can you explain further?