C# と VB.NET の質問掲示板

ASP.NET、C++/CLI、Java 何でもどうぞ

C# と VB.NET の入門サイト

OpenPrinterでハンドル取得できない


(過去ログ 98 を表示中)

[トピック内 1 記事 (1 - 1 表示)]  << 0 >>

■58567 / inTopicNo.1)  OpenPrinterでハンドル取得できない
  
□投稿者/ 味噌鯖 (1回)-(2011/04/15(Fri) 14:15:03)

分類:[VB.NET/VB2005 以降] 

OpenPrinterを使ってもプリンタのハンドルが取得できません。
なぜでしょうか?
下記のように書いてあります。

    Public Const SERVER_ACCESS_ADMINISTER As Integer = 1

    Public Structure PRINTER_DEFAULTS
        Public pDatatype As IntPtr
        Public pDevMode As IntPtr
        Public DesiredAccess As Integer
    End Structure

    <DllImport("winspool.drv", EntryPoint:="OpenPrinterA", ExactSpelling:=True, _
           SetLastError:=True, CallingConvention:=CallingConvention.StdCall, _
           CharSet:=CharSet.Ansi)> _
    Public Function OpenPrinter( _
    <InAttribute()> ByVal pPrinterName As String, _
    <OutAttribute()> ByRef hPrinter As IntPtr, _
    <InAttribute()> ByRef pDefault As PRINTER_DEFAULTS) As Boolean
    End Function

        Dim Status As Boolean

        Dim PrinterName As String = "RICOH imagio MP C4500 RPCS"
        Dim hPrinter As IntPtr
        Dim pDefault As PRINTER_DEFAULTS


        pDefault.pDatatype = IntPtr.Zero
        pDefault.pDevMode = IntPtr.Zero
        pDefault.DesiredAccess = SERVER_ACCESS_ADMINISTER

        Status = OpenPrinter(PrinterName, hPrinter, pDefault)

引用返信 編集キー/


トピック内ページ移動 / << 0 >>

このトピックに書きこむ

過去ログには書き込み不可

管理者用

- Child Tree -