0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AccessのVBAでOSに設定されているプリンター名一覧を取得

Posted at

やり方

サンプルコード
Dim printer_ As Printer

For Each printer_ In Application.Printers
    
    Debug.Print printer_.DeviceName
    
Next

例えばOSに設定されているプリンターが下記の場合…
image.png

サンプルコードの結果は下記。
image.png

バージョン

Windows 10 Pro 22H2 OSビルド 19045.2604
Microsoft Access for Microsoft 365 MSO (バージョン 2212 ビルド 16.0.16026.20002) 32 ビット

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?