Results 1 to 3 of 3

Thread: 2009: Printing to network-printer

  1. #1
    Member
    Join Date
    2003-07
    Posts
    2
    Login to Give a bone
    0

    Default 2009: Printing to network-printer

    We have a network-printer-server and can plot from AutoCAD to the printer named "\\AAAAAA999srv\Mono2" & collect the print from the nearest network-printer. I have a plotting macro, which sets all the parameters of the PLOT command. How do I store the name of this printer in the macro ?

    The printer-name is stored as a string in the macro. The macro worked fine earlier with a local printer, which did not have any "\" characters in it's name.

    I tried putting "\\\\AAAAAA999srv\\Mono2" & "//AAAAAA999srv/Mono2" as the string value - neither worked.

    Thanks in advance for any help.

  2. #2
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,667
    Login to Give a bone
    0

    Default Re: 2009: Printing to network-printer

    I'd use
    Code:
    (strcat (chr 92) (chr 92) "AAAAAA999srv" (chr 92) "Mono2")
    which returns "\\\\AAAAAA999srv\\Mono2"
    It might help if you post the entire macro for us to look at.

    As Page Setups make plotting much easier and are needed for using Publish they're in my templates for all layouts.
    My Plot Quick macro is simply
    Code:
    ^C^C-Plot;No;;;;No;No;Yes

  3. #3
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,719
    Login to Give a bone
    0

    Default Re: 2009: Printing to network-printer

    Using the Autopublish mechanism (to produce PDF), my quick plot macro is simply:

    Code:
    QSAVE
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

Similar Threads

  1. Adobe PDF Network Printer??
    By BoarsNest01 in forum AutoCAD Plotting
    Replies: 1
    Last Post: 2009-09-09, 01:41 PM
  2. how to add a printer to a computer on my network.
    By got_green in forum AutoCAD Plotting
    Replies: 3
    Last Post: 2009-01-22, 05:02 PM
  3. Network Printer Questions
    By TerribleTim in forum CAD Management - General
    Replies: 7
    Last Post: 2008-09-26, 08:40 PM
  4. Replies: 9
    Last Post: 2006-04-26, 09:57 PM
  5. Replies: 0
    Last Post: 2005-08-30, 06:58 PM

Tags for this Thread

Posting Permissions

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