New workstation lacking parallel port poses printing challenge

I'm supporting a Netware 4.11 + sp9 small business network, which long ago
had a custom DOS-like database application written to manage rental
activities. The app allows the user to print out lists of things rented,
etc. It has been working very well for years. There are several
workstations, some DOS, some Windows XP, etc., and they all share the rental
database resident in the Netware 4.11 file server.
I have had various networked printers, starting with parallel-port lasers.
More recently I have had a large Canon printer that connects directly via
our Ethernet_802.2 IPX (as well as IP) intranet. In other words, this
printer works both for Windows programs, which use IP, and for our rental
program, which uses IPX.
What's the problem, then?
An important Windows 2000 Pro workstation died, and I replaced it with a new
Windows XP Pro workstation. This new Dell computer HAS NO PRINTER PORT. I
have YET to tinker with this, as I am hoping to get this request for help
posted as soon as possible.
All my workstation computers "CAPTURE" print jobs that the rental program
"thinks" are going to LPT ports. Once these jobs get into various queues, I
have no problem getting them into printed hard copy. The problem NOW is to
fool the DOS-like rental program, which will be running on the new Dell
computer, into seeing some kind of a parallel port that doesn't exist.
I suppose I could launch a major effort into modifying the BIOS of a Dell
computer, but I am hoping there must be a better way!
Can "net use" be of any assistance?
Can Unix "lpt" printing be of any assistance?
It is not likely this rental application can be chanaged. I am not the
author.
I read another thread regarding an "opposite" predicament. It won't help
me, then, to buy a USB->LPT adapter box, because what's important here is
NOT to actually connect a printer to this workstation computer, but to
supply something (a faux LPT port) that can be captured inside this
workstation.
Any ideas most welcome.
Thank you.
John B

This is neat. But I think the all-important DOS-like custom application
rigidly prints only to LPT1.
In the absence of a real LPT1, I need to find a "faux LPT1."
Over the weekend, I'll look at this utility..."printfil."
Thanks very much!
"Davide Guolo" <[email protected]> wrote in message
news:[email protected] s.com...
> John,
>
> > I wonder how long it will be before no such cards
> > are available?
> >
> > So any tips on "faux LPT ports" are still of interest.
>
> you may want to have a look at Printfil, which can capture LPT output
> and forward it to file or directly to a Windows printer, even if no
> LPT ports are physically available on the Windows machine.
>
> You can find more info and a free trial version to download at
> http://www.printfil.com
>
> Regards,
> Davide
> aSwIt s.r.l.
> --------------------------------------------------------------
> Printfil - Windows Printing System for Applications
> http://www.printfil.com
> Odbc4All - Connection to ODBC Data Sources for any Application
> http://www.aswit.com/odbc4all
> @Kill - Batch Close Windows Applications - Freeware
> http://www.aswit.com/akill
> --------------------------------------------------------------
>
>
>

Similar Messages

  • Using Scanmaker E6 on new computer without parallel port

    My new computer has only PCI e ports

    I agree with you. I'm in the same situation. Have tried 'home sharing', since both of the computers I'm trying to work with still work. But iTunes is still not smart enough to recognize my podcasts or audiobooks, so 'shared library' mushes tunes with podcasts with audiobooks, and offers no differentiating or organizing principle. It's therefore a useless feature. I'm going to un-share and de-authorize the desktop machine as soon as I possibly can.
    What's the most frustrating of all to me, is that all I want to do, is USE MY NEW COMPUTER INSTEAD OF THE OLD ONE. Yep. I don't need all of my stuff on two machines. I just want to cleanly transplant my content from my desktop pc to my new laptop, and have my iPod touch sync with my new laptop without completely erasing itself and failing to re-load content that I did not pay Apple for. The suggested 'moving folders'-thing doesn't seem to work for me, although I have thought of one more thing I might try.
    Lucky for me, I'm on our home network, so trying different things is at least possible, even though it is a 6-hour file-transfer. No way would this stuff fit on my flash-drive.

  • WARNING 20225 - PDF Port and Printer

    I recently bought a new computer and installed Adobe Acrobat 7.0 on it.  (Previously I had this software on my older computer where it worked just fine and sufficed for my needs.)
    When I installed this on my new computer, I got the following error message: "Warning 20225.  Adobe Acrobat 7.0 Setup was unable to create a new item: Adobe PDF Port and Printer.  The Adobe PDF may be unavailable."
    Sure enough, it is indeed "unavailable."
    How do I fix this problem?

    Open Start>Printers and right click on the Adobe PDF printer and select the properties. Under the port listing you should see it trying to use the Adobe PDF Port. Simply change that to File (Print to file). You may have to play a bit to configure this method, but it is a a work around. The PDF Maker may even work this way, but I have not tried that. You would have to then open the file in Distiller to create the PDF. You might be able to use a watched folder to automate the conversion a bit more, but all will require some trial and error. Do not be surprised if things do not work or seem messed up, that is the nature of trying to use backdoor methods like this. The alternative as suggested is to upgrade and AA X may be the last upgrade you will qualify for with AA7. Of course, the next version if probably 1.5 years down the road. If you can afford it at some point, I would suggest the upgrade and not continue the workaround, even if you can get it to work.
    The workarounds depend on taking out of the loop the various parts of the system that are so OS dependent. AcroTray is one of those components for the print process. PDF Maker is the other big one that is so dependent on how MS wrote OFFICE. I find it interesting that some folks complain about Acrobat not working with OFFICE and then go to a 3rd party to get the same result they would have gotten with Acrobat if they had simply printed to the Adobe PDF printer, but no they insisted PDF Maker. PDF Maker did not work and so they moved on without asking the basic question of printing.
    In any case, good luck. I am just running on and need to quit -- get some work done.

  • Parallel Port Programming - Pls Help

    Sir / Madam,
    Greetings.
    We are new to writing parallel port programming. We have tried to execute a sample code.
      import parport.ParallelPort;
      class SimpleIO {
        public static void main ( String []args )
          ParallelPort lpt1 = new ParallelPort(0x378); // 0x378 is normally the base address for the LPT1 port
          int aByte;
          aByte = lpt1.read(); // read a byte from the port's STATUS pins
          System.out.println("Input from parallel port: " + aByte);
          aByte = aByte >> 2; // a simple and irrelevant operation
          lpt1.write(aByte); // write a byte to the port's DATA pins
          System.out.println("Output to port: " + aByte);
      }We get the following error:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_PRIV_INSTRUCTION (0xc0000096) at pc=0x10001057, pid=2224, tid=2916
    # Java VM: Java HotSpot(TM) Client VM (1.5.0-b64 mixed mode, sharing)
    # Problematic frame:
    # C [parport.dll+0x1057]
    We are new to this..
    Pls help us. We have connected a parallel port device already.
    Regards
    Rampalli

    This means there is a bug in the driver you are using.
    I would check you have the latest version of Java 5 or 6 and the latest version of the driver you are using.

  • E4200V2 Print adapter - parallel port to usb compatibility.

    Currently my setup works fine except that I need another ethernet port.
    I have a E4200V2 with a HP laserjet 4000N printer connected via JetDirect ethernet and I am able to print with any of my devices.
    However, because I have need of another ethernet port, I am wondering if anybody has tried using a parallel to usb cable? The parallel side of the cable being connect to the printer and the usb side to the router. 
    Has anybody done this, or even know if it can be done?
    Or if I really want that port made available, will I have to get some type of external print server?
    I know that HP makes a JetDirect Card with a USB port, however, I don't want to spend the $80 on ebay to get a used one if a $10 new cable will work.  

    hiptechboy: "When I hear someone say that they want to use a Parallel to USB cable, I can't help but think of an HDMI to VGA cable haha. Anyways, I think that you have zero chance with a cable like that."
    Sadly, I think you right. The only reason why Parallel to USB does work is because the computers can emulate a parallel port through USB. Just like the HDMI to VGA. You’re not going to go from your computers VGA port to your TVs HDMI and have things turn out the way you want them to. It only works one way. For lack of a better term I was hoping my new router would be "smart" enough to emulate a parallel port through the USB.
    While I have no doubt that it is capable of doing so, the question is if the router is programed to do so without the need for me to build and load a custom ROM. Might not be a bad idea except that I doubt that there is a market to actually make that worthwhile financially. The time and effort required will go way past the $50 I’m willing to spend to make this work.
    I think I will just go troll around the University Surplus store and hope to luck out on a HP JetDirect USB Card.

  • How to Install a parallel port printer to usb port of Pavilion dv5 Notebook

    In trying to install my HP DeskJet 610C Parallel Port printer to my HP Pavilion dv5-1235dx Notebook PC with Windows Vista Home Premium 64-bit, I followed instructions given by HP Support some two years back.
    I connected up the two units through a Parallel-to-USB ports cable. The PC loaded and confirmed suitable driver. (Following advice from sites on the Internet, I have made repeated attempts to carefully install the printer, but to no avail).
    Upon my issuing the Print instruction, the printer invariably prints two copies of what appears to be 'gibberish' in two lines at the start of the sheet. Thereafter it picks up and then ejects 6-8 sheets of blank paper.
    Any help in resolving this anomalous situation will be be most welcome and much appreciated.
    I might add that the printer works normally when connected in parallel to an older, Compaq Armada 1750 Notebook (XP OS). In this instance too, the Parrallel/USB worked as in the Pavilion PC, above.  
    This question was solved.
    View Solution.

    Hi khalidem, 
    Sounds like you have a communication problem with the printer cables. Have you tried a new parallel to USB cable or adapter?
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • How can i us the parallel port of the printer to control a frequenz-generator?

    Hello all !
    I like to  control with LabVIEW 8 student-version, the Frequenz-generator gadget . For this challenge i like to us the parallel port of the printer. I need for data flow only 2 cable. The frequenz-generator gadget need two signal : Low and High.How  can i  us the parallel port of the printer to control a frequenz-generator gadget? I have us  the VIs-Visa  (Visa-Serial, write, Close ), but i dont no what command i have to write on the Visa-Write so that the Signal can be in the low or high position.
    Thanks

    Hi Jeanjac,
    first, look here:
    http://en.wikipedia.org/wiki/Parallel_port
    to get the port numbering. also, be sure not to leave pin unconected, sometimes you might get an error message otherwise (i remember pin11 has to be always connected or so for windows...)
    second, just run the test panel in MAX and write something to your device to check if it works.
    then in LV, you have to decide to which pin is connected your instrument. in any case you have to address all 8 output pins together! this is a parallel...
    if you prefere to use only one pin, then you can use the serial port, with just pin 2 and 3 connected. it would work easier for you, since you address only one bit.
    Gabriel
    ... And here's where I keep assorted lengths of wires...

  • Parallel Port & Printing

    Hi,
    I am new to ArchLinux and have been using Gentoo since qutie a while. After installing nearly everything I need I am now struggling with the printer setup. I guess this is due to a problem with my parallel port, cause it does not show up in the selection box of cups. I can choose serial and usb ports, but no parallel ports. I have installed some modules like
    lp & parport
    I also have cups running of course and it connects. My question is the kernel (2.6.4) must be compiled with support for the parallel port by default, right? At least after loading these modules it should work. What am I missing?
    Thanks already!!!

    Good advice!  Haven't solved it yet, but FWIW I can read the cups documentation.  So I set the log to debug mode and here it is: 
    This log content follows
        lp fstab
    18/Mar/2004:18:13:15 +0000] AcceptClient() 5 from localhost:631.
    ReadClient() 5 POST / HTTP/1.1
    ProcessIPPRequest: 5 status_code=1
    CloseClient() 5
    AcceptClient() 5 from localhost:631.
    ReadClient() 5 POST / HTTP/1.1
    ProcessIPPRequest: 5 status_code=1
    CloseClient() 5
    AcceptClient() 5 from localhost:631.
    ReadClient() 5 POST / HTTP/1.1
    ProcessIPPRequest: 5 status_code=0
    ReadClient() 5 POST /printers/lpr HTTP/1.1
    print_job: auto-typing file...
    print_job: request file type is text/plain.
    check_quotas: requesting-user-name = 'root'
    print_job: requesting-user-name = 'root'
    Adding start banner page "none" to job 16.
    Adding end banner page "none" to job 16.
    Job 16 queued on 'lpr' by 'root'.
    Job 16 hold_until = 0
    StartJob(16, 0x8093b70)
    StartJob() id = 16, file = 0/1
    job-sheets=none,none
    banner_page = 0
    StartJob: argv = "lpr","16","root","fstab","1","","/var/spool/cups/d00016-001"
    StartJob: envp[0]="PATH=/usr/lib/cups/filter:/bin:/usr/bin"
    StartJob: envp[1]="SOFTWARE=CUPS/1.1"
    StartJob: envp[2]="USER=root"
    StartJob: envp[3]="CHARSET=iso-8859-1"
    StartJob: envp[4]="LANG=en"
    StartJob: envp[5]="PPD=/etc/cups/ppd/lpr.ppd"
    StartJob: envp[6]="CUPS_SERVERROOT=/etc/cups"
    StartJob: envp[7]="RIP_MAX_CACHE=8m"
    StartJob: envp[8]="TMPDIR=/var/spool/cups/tmp"
    StartJob: envp[9]="CONTENT_TYPE=text/plain"
    StartJob: envp[10]="DEVICE_URI=parallel:/dev/lp0"
    StartJob: envp[11]="PRINTER=lpr"
    StartJob: envp[12]="CUPS_DATADIR=/usr/share/cups"
    StartJob: envp[13]="CUPS_FONTPATH=/usr/share/cups/fonts"
    StartJob: envp[14]="CUPS_SERVER=localhost"
    StartJob: envp[15]="IPP_PORT=631"
    StartJob: statusfds = [ 7 8 ]
    StartJob: filterfds[1] = [ 9 -1 ]
    StartJob: filter = "/usr/lib/cups/filter/texttops"
    StartJob: filterfds[0] = [ 10 11 ]
    start_process("/usr/lib/cups/filter/texttops", 0xbffeff30, 0xbffef2a0, 9, 11, 8)
    Started filter /usr/lib/cups/filter/texttops (PID 2486) for job 16.
    StartJob: filter = "/usr/lib/cups/filter/pstops"
    StartJob: filterfds[1] = [ 9 12 ]
    start_process("/usr/lib/cups/filter/pstops", 0xbffeff30, 0xbffef2a0, 10, 12, 8)
    I [18/Mar/2004:18:13:15 +0000] Started filter /usr/lib/cups/filter/pstops (PID 2487) for job 16.
    StartJob: filter = "/usr/lib/cups/filter/foomatic-rip"
    StartJob: filterfds[0] = [ 10 11 ]
    start_process("/usr/lib/cups/filter/foomatic-rip", 0xbffeff30, 0xbffef2a0, 9, 11, 8)
    Started filter /usr/lib/cups/filter/foomatic-rip (PID 2488) for job 16.
    StartJob: backend = "/usr/lib/cups/backend/parallel"
    StartJob: filterfds[1] = [ -1 9 ]
    start_process("/usr/lib/cups/backend/parallel", 0xbffeff30, 0xbffef2a0, 10, 9, 8)
    Started backend /usr/lib/cups/backend/parallel (PID 2489) for job 16.
    ProcessIPPRequest: 5 status_code=0
    This looks like the problem?  Can't find status 22 explanation but must be the next line.
    PID 2488 stopped with status 22!
    [Job 16] /usr/lib/cups/filter/foomatic-rip: No such file or directory
    [Job 16] Page = 612x792; 0,0 to 612,792
    [Job 16] ppd->num_fonts = 35
    [snip]
    [Job 16] ppd->fonts[8] = Courier
    [Job 16] Page = 612x792; 0,0 to 612,792
    [Job 16] slowcollate=0, slowduplex=0, sloworder=0
    [Job 16] 0 %%BoundingBox: 0 0 612 792
    [Job 16] 0 %%Creator: texttops/CUPS v1.1.20
    [Job 16] 0 %%CreationDate: Thu Mar 18 18:13:15 2004
    [Job 16] 0 %%Title: fstab
    [Job 16] 0 %%For: root
    [Job 16] 0 %%Pages: (atend)
    [Job 16] 0 %%DocumentNeededResources: font Courier-Bold
    [Job 16] 0 %%+ font Courier
    [Job 16] 0 %%DocumentSuppliedResources: procset texttops 1.1 0
    [Job 16] 0 %%+ font Courier-Bold
    [Job 16] 0 %%+ font Courier
    [Job 16] 0 %%EndComments
    [Job 16] 0 %%BeginProlog
    [Job 16] 0 %%BeginResource: font Courier-Bold
    [Job 16] 0 %%CreationDate: Wed Dec 22 1999
    [Job 16] 0 %%EndResource
    [Job 16] 0 %%BeginResource: font Courier
    [Job 16] 0 %%CreationDate: Wed Dec 22 1999
    [Job 16] 0 %%EndResource
    [Job 16] 0 %%BeginResource: procset texttops 1.1 0
    D [18/Mar/2004:18:13:15 +0000] [Job 16] 0 %%EndResource
    [Job 16] 0 %%EndProlog
    [Job 16] 0 %%Page: 1 1
    [Job 16] 0 %%Page: 1 1
    [Job 16] pw = 612.0, pl = 792.0
    [Job 16] PageLeft = 0.0, PageRight = 612.0
    [Job 16] PageTop = 792.0, PageBottom = 0.0
    [Job 16] PageWidth = 612.0, PageLength = 792.0
    [Job 16] 0 %%Trailer
    [Job 16] Saw Trailer!
    [Job 16] Saw EOF!
    UpdateJob: job 16, file 0 is complete.
    CancelJob: id = 16
    StopJob: id = 16, force = 0
    StopJob: printer state is 3
    CloseClient() 5
    Bill Barnes

  • RXTX Parallel port communication with Pin Printer

    I have successfully installed and configured RXTX-2.0-7pre1 on Linux platform.
    2 printers, one Laser jet printer connected to the Serial port and the other Pin Printer connected to the Parallel port.
    I can print my files out successfully with RXTX on both my 2 printers. But, there is some problem with my Pin Printer performance. The print job is a little slow and the printing is word by word output.
    While the Laser printer received the whole string of my RXTX output and printed them out asap.
    RXTX read my data and write them to the Parallel/Serial port directly, so, for my laser jet printer, it buffered the RXTX output data and processed them all in one. No problem, laser printer works well. But to the Pin Printer, it got the RXTX output and printed them out with no buffer. I am not authorized to deal with the Pin Printer device driver.
    So, my question is that, is there someone knows how to resolve this problem on RXTX side? That is to say, how to modify the source code of RXTX and customize it?
    I wanna know how to create buffer in RXTX, for example, buffering a whole string line and then sending them to the Parallel port. Then, It supposed to be that the Pin Printer will receive once a whole line output and printing line by line in the paper! Not the problemly slowly word by word output!
    Thanks a lot!

    Simple metrics from google should suffice the SUN team from understand the need/huge requirement for supporting Serial and parallel port programming in windows. Platforms would always change and the team at SUN should remain commited in supporting new platforms.

  • How should I develop Level Controller using Parallel port(Printer port)

    I need to develop a level controller using parallel port of my computer with a third party Data Acquisition Device.  Is it possible to do it with In and out port vi in labView 7.1. Please guide me how can should I configure these Vis to write control data and then receive level transmitteed data through parallel Port(Printer port). My third party DAQ has two analog input channel and one analog output channel.  

    Dennis Knuston
    I have uploded the details of that  third party daq in another thread please see that and tell wether this type of daq requires driver software
    http://forums.ni.com/t5/Multifunction-DAQ/Parallel-port-based-daq-and-drivers/m-p/1819997

  • Satellite A200: How connect a parallel port printer?

    Probably a very silly question, but would like to connect A200 series laptop to a parallel port printer that does not have a USB port... what is the best option?

    Hi
    You ask for the best way?
    Well, you have got only one way?
    You need an USB to parallel adapter. Check in the google for some offers.
    I searched in the google and found some good options.
    Maybe this could be a good choice;
    http://www.ramelectronics.net/html/usb_printer_cable.htm#UP6C
    Best regards

  • Parallel port printer connection

    I have an HP 6122 parallel port printer which I've attached to my MacBook Pro running on OSX 10.4.11 through a connecting cable to the USB port (I've tried both the left and right USB port). I've downloaded driver from HP, but computer doesn't see the printer. Suggestions?

    Hi urdog, and a warm welcome to the forums!
    In System Profiler>Hardware>USB, is anything shown for it there?
    Have you tried another PCL/hp printer in Printer Setup Utility? Have you got any hp drivers installed?
    PCL 3 is quite old, but what happens if you try setting it up with an older hp driver?

  • My parallel port cannot work on win2000 and new pc

    I was troubled by the reading/writing from parallel port on win2000 for a long time. I had made my programs work on win2000/OLD PC, but i failed with the same programs on win2000/new PC. I tried with the method from the forum, that is, install accessHW and other method from my colleagues. Allways failed. I have to return to an old pc, it work! I think not only win2000/winxp will influence parallel port work, but also pc hardware. My new PC is Dell's GX260SMT with p4 2.4G. Dell's FAE told me that i can not install win98 on the pc due to some limitation of mainboard. Who met the smae issue as mine? How to fix it? Thanks for any help.

    I typically stay away from Dell PC's. I always have problems with them..
    I'm surprised to read that a new PC doesn't support Win-98. Have you / can you try Win-NT 4?
    I can't understand why Win2K would be different with a newer PC. The OS assigns the base address of the parallel port to a typical value of 0378h. This is for LPT1.
    My question would be: Are you having problems with LPT1 or do you have a PCI-based Parallel Port (to add ports)? If so, you cannot change the base address with Win-2K or Win-XP which assigns a PCI base address to the port.
    Can you provide more details as what exactly changes between the 2 PC's. Other than the motherboard and typical hardware (of course).
    How is the parallel port configured?
    What are you doing
    with it, etc?
    Any information that can help figure out a solution.
    Regards,
    JLV

  • Connect parallel port printer to usb in windows 8.1 64 bit

    I am using Windows 8.1 w/ 64 bit - would like to know proper cable to hook up to parallel port printer HP LaserJet 4050.  Any help greatly appreciated.

    @PB1941 
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • USB to Parallel Port connector plug for printer

    Hi
    I'm trying to get an old IBM laster printer (4019) to work with an ibook G4--I have downloaded the Gutenprint driver which is supposedly compatable but now I need advice on adapting cables for printers. I was going to buy a Sabrent USB to Parallel port connector but saw in the feedback that many people weer unhappy with it. Could somebody suggest the best USB to Parallel port connecting cable for me and where to order it? thanks very much.

    Hi Derek,
    maybe this is a better one: http://www.keyspan.com/products/usb/up6c/homepage.spml
    I don't have any need for this, so I can't provide any review of it.
    Regards
    Stefan

Maybe you are looking for

  • How to auto-connect to OpenVPN server at system startup

    I have OpenVPN client/server in my home LAN. All clients are able to connect to the server using command line (in console): "sudo openvpn ~/.openvpn/client.ovpn". Is there any way to automate this process at system startup? The best way would be some

  • The size of a form viewer

    Hi, friends, For some reasons, I would like to develop an off-line tool say a form viewer using Java Swing. The data will be stored in xml files. The form viewer will display the data as electronic form. A user can edit the form and store the updated

  • Can I create a DIMENSION object mappign without a Dimension table?

    I understand how I can create a dimension object and it's associated table. However, can I map my enterprise data directly to the dimension object itself and skip the loading of the dimension table? The enterprise data for most of my reporting wareho

  • CASE statement used in Oracle 10g -ORA-00934 Error

    I am getting ORA-00934 group function not allowed. What am I doing wrong here. Please advice. select count( case WHEN TRUNC(so_due_Date) = sysdate AND ne_state = 'GA' AND ((so_type LIKE '%CHANGE%') OR (so_type LIKE '%NEW%')) THEN 1 end)INTO v_due_tod

  • I need to download a copy of firefox 4.0

    I download Firefox 5.0 and it don't well with some of my computer program, so I need to download Firefox 4.0 version. How do I do that.