I believe you would have to either use the common dialog control, or manually
populate a list of printers to pick from. The following will populate a
combo:
Private Sub FillPrinterCombo
Dim prtLoop As Printer
' Don't forget to set the RowSourceType = "Value List"
For Each prtLoop In Application.Printers
cboPrinters.AddItem(prtLoop.DeviceName)
Next prtLoop
End Sub
And then when they select a printer in the combo, set the printer as follows:
Set Application.Printer = Application.Printers(cboPrinters)