Printing on a network printer

schea061

New Member
Joined
Apr 21, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I am trying to create a code for printing on clicking a button on excel to print on the following network printer but i am not managing - \\P305762\IDUDOTLP2824

Could you please help ?
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
maybe this will help you.

i use this code to create a list of printer that are on the computer.
VBA Code:
Sub Printer_List()

Dim x As Long, Printers As Object, arrPrinters As Variant
  With CreateObject("WScript.Network")
    For x = 1 To .EnumPrinterConnections.Count Step 2
     Cells((x + 1) / 2, "A") = .EnumPrinterConnections(x)
    Next
  End With

End Sub

I then use this list as a data validation range.
then the user can select any printer they want.

hth,

Ross
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,977
Members
449,200
Latest member
Jamil ahmed

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top