Hello, here is a useful and simple method to get your list of printers, at least in Access 2003 or later (availability in earlier versions can apparently vary):
For Each myPrinter In Application.Printers
' Put code here to add myPrinter.DeviceName to your ListBox or whatever you are using..
Next