dkausa4851
Programmer
Can fox 9 bring up the Windows Printer selection dialog box? Code from my fox 7 app does not work in fox 9. It will not change the printer but consistantly sends the job to the default printer
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Code from my fox 7 app does not work in fox 9.
I can have the users change the default printer before doing the print job but that is a total inconvenience and would not be an acceptable solution.
* Application startup:
gcPrinter = ""
* ...
* ...
* Ready to print the report:
IF NOT EMPTY(gcPrinter)
gcPrinter = GETPRINTER()
ENDIF
IF NOT EMPTY(gcPrinter)
SET PRINTER TO NAME (gcPrinter)
REPORT FORM MyReport TO PRINTER
&& Note: No prompt clause
ENDIF