Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Save settings in windows Printer default
Message
 
 
To
16/03/2004 13:17:52
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00886657
Message ID:
00887162
Views:
13
Roberto,

Thank for your help but nothing change.

I think that DocumentProperties change the current printer setup but not the default Printer Windows setup.

What Are thinking abaout That ?

bernhart
Declare Long OpenPrinter in "winspool.drv" String pPrinterName, Long @phPrinter, String @pDefault
Declare Long DocumentProperties IN "winspool.drv" LONG hwnd, LONG hPrinter, String pDeviceName, LONG pDevModeOutput, LONG pDevModeInput, Long fMode
DECLARE LONG GlobalAlloc IN "kernel32" LONG wFlags, LONG dwBytes
DECLARE LONG GlobalFree IN "kernel32" LONG HMEM
Declare Long ClosePrinter IN "winspool.drv" Long hPrinter

b = REPLICATE( CHR(0), 200 )
c = 0

?OpenPrinter ( "hp business inkjet 1100 series", @c, @b)

a = GlobalAlloc( 0x40, 148 )
b = GlobalAlloc( 0x40, 148 )

*|-- Read
?DocumentProperties( 0, c, "hp business inkjet 1100 series", a, b, 0x04 + 0x02 )

*|-- Write
?DocumentProperties( 0, c, "hp business inkjet 1100 series", b, a, 0x08 )

*|-- Free memory
?GlobalFree( a )
?GlobalFree( b )

*|-- Close Printer
?ClosePrinter( c ) 
Previous
Reply
Map
View

Click here to load this message in the networking platform