Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than winspool, prefix the name with the module name and a period.
OpenPrinter (winspool)
.
C# Signatures:
C# Signatures:33
[DllImport("winspool.drv", CharSet=CharSet.Auto, SetLastError=true)]
static extern int OpenPrinter(string pPrinterName, out IntPtr phPrinter, ref PRINTER_DEFAULTS pDefault);
[DllImport("winspool.drv",SetLastError=true)]
static extern int OpenPrinter(string pPrinterName, out IntPtr phPrinter, IntPtr pDefault);
Both signatures will work fine, it is a matter of whether you need a higher level of access to the printer or not. For 'read' only access such as monitoring printer queues, you don't need to pass in a PRINTER_DEFAULTS instance for the last parameter, you can just pass zero (0) if you declare the extern function pDefault parameter as an int. You will need a PRINTER_DEFAULTS structure if you need to change any properties of the printer such as setting the duplex value of the printer.
I had a problem using the above definitions and then made my own which avoided the stack imbalance in .NET 2.0 using-
This signature will work with pDefault = null or pDefault = class object.
VB Signatures:
<DllImport("winspool.drv", EntryPoint:="OpenPrinterA", _
SetLastError:=True, CharSet:=CharSet.Ansi, _
ExactSpelling:=True, _
CallingConvention:=CallingConvention.StdCall)> _
Private Shared Function OpenPrinter(ByVal pPrinterName As String, _
ByRef phPrinter As IntPtr, _
ByVal pDefault As IntPtr) As Boolean
End Function
<DllImport("winspool.drv", EntryPoint:="OpenPrinterA", ExactSpelling:=True, _
SetLastError:=True, CallingConvention:=CallingConvention.StdCall, _
CharSet:=CharSet.Ansi)> _
Private Shared Function OpenPrinter(ByVal pPrinterName As String, _
ByRef hPrinter As IntPtr, ByVal pDefault As PRINTER_DEFAULTS) As Boolean
End Function
Using .NET 2.0 the last parameter caused a stack mis-match problem so use:
<DllImport("winspool.drv", EntryPoint:="OpenPrinterA", ExactSpelling:=True, _
SetLastError:=True, CallingConvention:=CallingConvention.StdCall, _
CharSet:=CharSet.Ansi)> _
Private Shared Function OpenPrinter(ByVal pPrinterName As String, _
ByRef hPrinter As IntPtr, ByRef pDefault As PRINTER_DEFAULTS) As Boolean
End Function
IntPtr pHandle;
PRINTER_DEFAULTS defaults = new PRINTER_DEFAULTS();
byte b = 0;
OpenPrinter(printerName, out pHandle, defaults);
SetJobA(pHandle, (int)jobID, 0, ref b, (int)Job_Control.Cancel);
ClosePrinter(pHandle);
Alternative Managed API:
The System.Management API allows for lots of printer stuff, but doesn't let you delete a print job in Win2K.
Specifies the default data type, environment, initialization data, and access rights for a printer. See [OpenPrinter] method.
9/13/2013 3:16:36 AM - -89.238.212.10
Specifies the default data type, environment, initialization data, and access rights for a printer. See [OpenPrinter] method.
9/13/2013 3:16:36 AM - -89.238.212.10
Closes a printer connection given a handle
3/16/2007 8:36:04 AM - freckert-68.49.130.137-4.10.224.157
TODO - a short description
10/19/2009 7:36:00 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).