Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

StartDocPrinter (winspool)
 
.
Summary
TODO - a short description

C# Signature:

[DllImport("winspool.dll", SetLastError=true)]
static extern TODO StartDocPrinter(TODO);

VB Signature:

Declare Function StartDocPrinter Lib "winspool.dll" (TODO) As TODO

<DllImport("winspool.drv", EntryPoint:="StartDocPrinterA", ExactSpelling:=True, SetLastError:=True, CallingConvention:=CallingConvention.StdCall, CharSet:=CharSet.Ansi)> _
Private Shared Function StartDocPrinter(ByVal hPrinter As IntPtr, ByVal level As Integer, ByRef pDocInfo As DOC_INFO_1) As Integer
End Function

This implementation of StartDocPrinter must be used with the ANSI version of DOC_INFO_1.

User-Defined Types:

DOC_INFO_1

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

StartDocPrinter returns a PrintJobIdentifier (integer value) and must not be declared Boolean!

According to MSDN the second parameter "level" must always be 1

Tips & Tricks:

Please add some!

Sample Code:

    Public Function StartDoc(hPrinter as IntPtr, ByVal documentTitle As String) As Boolean
        Dim di As New DOC_INFO_1
        With di
        .pDocName = documentTitle
        .pOutputFile = vbNullString
        .pDatatype = vbNullString
        End With
        Dim printJobID as Integer = StartDocPrinter(hPrinter, 1, di)
        printJobID as Integer = StartDocPrinter(hPrinter, 1, di)
        Return (printJobID <> 0)
    End Function

Documentation

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions