• 締切済み

VB 2005 プリンタ選択

PrintDialog1の画面で選択したプリンタより印刷ができません。プリンタ選択で設定した値を設定したらいいと思うのですが、その方法が分かりません。どなたか教えて頂きたいのですが。ちなみに下記コードで動作させています Dim Ret As DialogResult Dim a As Integer PrintDialog1.PrinterSettings = New Printing.PrinterSettings PrintDialog1.AllowSelection = True Ret = PrintDialog1.ShowDialog() If Ret = Windows.Forms.DialogResult.OK Then PrintForm1.PrinterSettings.DefaultPageSettings.Landscape = True PrintForm1.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.FullWindow) End If

みんなの回答

  • ape5
  • ベストアンサー率57% (85/148)
回答No.1
shimakichi
質問者

お礼

いろいろ試した結果、選択したプリンタより印刷できるようになりました。ape5様ありがとうございました。

関連するQ&A