Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by scamquist58

  1. scamquist58

    Change Access Default Printer

    Combo, Thank you for the assistance. This is the line that worked for me Set Application.Printer = Application.Printers(("\\PP-FP01\Office Canon iR-ADV C3230i UFR II"))
  2. scamquist58

    Change Access Default Printer

    From immediate window Debug.Print Application.Printers(7).DeviceName \\PP-FP01\Office Canon iR-ADV C3230i UFR II full code that works Private Sub Form_Load() Dim prtDefault As Printer Set Application.Printer = Application.Printers(7) Set prtDefault = Application.Printer End Sub code below...
  3. scamquist58

    Change Access Default Printer

    I tried Set Application.Printer = Application.Printers(i)."192.168.0.25" Set Application.Printer = Application.Printers(i)."\\PP-FP01\Office Cannon iR-ADV C3230i UFR II" Set Application.Printer = Application.Printers(i)."\\PP-FP01\Office Cannon iR-ADV C3230i UFR II" Returns Complie error...
  4. scamquist58

    Change Access Default Printer

    If I use any of the following statements: Set Application.Printer = Application.Printers("\\PP-FP01\Office Cannon iR-ADV C3230i UFR II") Set Application.Printer = Application.Printers("Office Cannon iR-ADV C3230i UFR II") Set Application.Printer = Application.Printers("192.168.0.25") I the the...
  5. scamquist58

    Change Access Default Printer

    I am trying to change the default printer when an Access form loads. The following code works: Private Sub Form_Load() Dim prtDefault As Printer Set Application.Printer = Application.Printers(7) Set prtDefault = Application.Printer End Sub However, I want to specify the printer name. DEVICE...
  6. scamquist58

    VB Change Default Printer - Access

    I am trying to change the default printer when an Access form loads. The following code works: Private Sub Form_Load() Dim prtDefault As Printer Set Application.Printer = Application.Printers(7) Set prtDefault = Application.Printer End Sub However, I want to specify the printer name. DEVICE...

Part and Inventory Search

Back
Top