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.
GetDefaultPrinter (winspool)
.
The GetDefaultPrinter function retrieves the printer name of the default printer for the current user on the local computer
C# Signature:
[DllImport("winspool.drv", CharSet = CharSet.Auto, SetLastError = true)]
public static extern bool GetDefaultPrinter(StringBuilder pszBuffer, ref int pcchBuffer);
[DllImport("winspool.drv", CharSet=CharSet.Auto, SetLastError=true)]
public static extern bool GetDefaultPrinter(StringBuilder pszBuffer, ref int size);
VB Signature:
Declare Function GetDefaultPrinter Lib "winspool.drv" Alias "GetDefaultPrinterA" _
(ByVal pszBuffer As System.Text.StringBuilder, ByRef pcchBuffer As Int32) As Boolean
(ByVal pszBuffer As System.Text.StringBuilder, ByRef size As Int32) As Boolean
User-Defined Types:
None.
Notes:
Works even if print spooler service is stopped (W2K)
You will need to import System.Runtime.InteropServices.
Tips & Tricks:
Sample Code:
private const int ERROR_FILE_NOT_FOUND = 2;
private const int ERROR_INSUFFICIENT_BUFFER = 122;
StringBuilder dp = new StringBuilder(256);
int size = dp.Capacity;
if (GetDefaultPrinter(dp, ref size)) {
Console.WriteLine(String.Format("Printer: {0}, name length {1}", dp.ToString().Trim(), size));
} else {
int rc = GetLastError();
Console.WriteLine(String.Format("Failed. Size: {0}, error: {1:X}", size, rc));
}
public static String getDefaultPrinter()
{
int pcchBuffer = 0;
if (GetDefaultPrinter(null, ref pcchBuffer))
{
return null;
}
int lastWin32Error = Marshal.GetLastWin32Error();
if (lastWin32Error == ERROR_INSUFFICIENT_BUFFER)
{
StringBuilder pszBuffer = new StringBuilder(pcchBuffer);
if (GetDefaultPrinter(pszBuffer, ref pcchBuffer))
{
return pszBuffer.ToString();
}
lastWin32Error = Marshal.GetLastWin32Error();
}
if (lastWin32Error == ERROR_FILE_NOT_FOUND)
{
return null;
}
throw new Win32Exception(Marshal.GetLastWin32Error());
}
VB.Net sample code:
Private Shared Function _getDefaultPrinterName() As String
Dim pszBuffer As System.Text.StringBuilder = New System.Text.StringBuilder(100)
pszBuffer.Length = 100
Dim pcchBuffer As Integer = CInt(pszBuffer.Length)
Dim retVal As Boolean = GetDefaultPrinter(pszBuffer, pcchBuffer)
Return pszBuffer.ToString.Trim 'StringBuilder manages the null-terminated string
End Function
Alternative Managed API:
Do you know one? Please contribute it!
Click to read this page
10/3/2018 6:52:49 AM - -62.227.250.230
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).