Visual Basic Programming Code Examples Visual Basic > Code Snippets Code Examples Display printers listed on the system Display printers listed on the system 'Place a combo box on a form and enter the following code. Private Sub Form_Load() Dim printer For Each printer In Printers Combo1.AddItem printer.DeviceName Next End Sub