example :
Let's say that I have the printer "P" in the printer setup window.
I want to put the value of "P" in X and then choose the printer Y;
print my document on the printer Y and then reconfigure my machine so
that next time I 'll still have the printer "X" (ie P) as the default printer.
Thanks a lot.
-----------------------------------------------------------------------
This article was posted to Usenet via the Posting Service at Deja News:
http://www.dejanews.com/ [Search, Post, and Read Usenet News!]
Check the online WordBasic help for the exact syntax,
and then try something like this:
Sub Main
FilePrintSetup .Printer=Printer Y on LPT2:
FilePrint
FilePrintSetup .Printer=Printer X on LPT1:
End Sub