+ Reply to Thread
Results 1 to 4 of 4

printer port assignment in macro

  1. #1
    DaveAlbany
    Guest

    printer port assignment in macro

    I want to access a network printer via a macro and am successful as long as I
    know the current address of the printer for the specific network user. The
    command Application.ActivePrinter = "printername on Ne0x:" works just fine -
    except the printername is different on each computer and the Ne0x: (port?)
    changes from computer to computer, and in fact changes from time to time on a
    single computer. How can I code this so it will work from multiple computers
    all the time?

  2. #2
    Tom Ogilvy
    Guest

    RE: printer port assignment in macro

    Use something like:

    for i = 1 to 9
    err.clear
    On error resume Next
    Application.ActivePrinter = "printername on Ne0" & i & ":"
    if err.Number = 0 then exit for
    On error goto 0
    Next
    On Error goto 0

    --
    Regards,
    Tom Ogilvy

    "DaveAlbany" wrote:

    > I want to access a network printer via a macro and am successful as long as I
    > know the current address of the printer for the specific network user. The
    > command Application.ActivePrinter = "printername on Ne0x:" works just fine -
    > except the printername is different on each computer and the Ne0x: (port?)
    > changes from computer to computer, and in fact changes from time to time on a
    > single computer. How can I code this so it will work from multiple computers
    > all the time?


  3. #3
    DaveAlbany
    Guest

    RE: printer port assignment in macro

    thank you very much!

    what is the purpose and need of the two On Error Goto 0 commands though?

    "Tom Ogilvy" wrote:

    > Use something like:
    >
    > for i = 1 to 9
    > err.clear
    > On error resume Next
    > Application.ActivePrinter = "printername on Ne0" & i & ":"
    > if err.Number = 0 then exit for
    > On error goto 0
    > Next
    > On Error goto 0
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "DaveAlbany" wrote:
    >
    > > I want to access a network printer via a macro and am successful as long as I
    > > know the current address of the printer for the specific network user. The
    > > command Application.ActivePrinter = "printername on Ne0x:" works just fine -
    > > except the printername is different on each computer and the Ne0x: (port?)
    > > changes from computer to computer, and in fact changes from time to time on a
    > > single computer. How can I code this so it will work from multiple computers
    > > all the time?


  4. #4
    Tom Ogilvy
    Guest

    RE: printer port assignment in macro

    You may never find a legitimate port. I always like to make sure On Error
    Resume Next only refers to a specific area of code - otherwise it can mask
    true errors and makes debugging very difficult.

    --
    Regards,
    Tom Ogilvy


    "DaveAlbany" wrote:

    > thank you very much!
    >
    > what is the purpose and need of the two On Error Goto 0 commands though?
    >
    > "Tom Ogilvy" wrote:
    >
    > > Use something like:
    > >
    > > for i = 1 to 9
    > > err.clear
    > > On error resume Next
    > > Application.ActivePrinter = "printername on Ne0" & i & ":"
    > > if err.Number = 0 then exit for
    > > On error goto 0
    > > Next
    > > On Error goto 0
    > >
    > > --
    > > Regards,
    > > Tom Ogilvy
    > >
    > > "DaveAlbany" wrote:
    > >
    > > > I want to access a network printer via a macro and am successful as long as I
    > > > know the current address of the printer for the specific network user. The
    > > > command Application.ActivePrinter = "printername on Ne0x:" works just fine -
    > > > except the printername is different on each computer and the Ne0x: (port?)
    > > > changes from computer to computer, and in fact changes from time to time on a
    > > > single computer. How can I code this so it will work from multiple computers
    > > > all the time?


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1