To list the names of the available printers, save this procedure to a standard module, and run it from the Immediate window:
Public Sub DumpPrinters()
Dim p As Access.Printer
For Each p In Access.Printers
Debug.Print p.DeviceName, p.DriverName, p.Port
Next p
End Sub