This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Looking to see if anyone has programmed to send text to a customer display pole using a USB port and probably as either as com port?

We have project which involves sending text to customer display pole, has anyone out there worked with this type of device? If so, I sure could use that source code/

  • Verified Answer

    +1

    There are many different brands. What do you have? If needs be can you change?

    If you are familiar with ActiveX, perhaps use an OPOS compliant brand like Mecer

    If you are familiar with serial coms, perhaps use a serial brand with  AcuCobols ACURS32.DLL

    The easiest may be to use some freeware like DOSPrint (or SAMBA) and setup a pseudo printer on the USB port.

  • 0

    There are many different brands. What do you have? If needs be can you change?

    If you are familiar with ActiveX, perhaps use an OPOS compliant brand like Mecer

    If you are familiar with serial coms, perhaps use a serial brand with  AcuCobols ACURS32.DLL

    The easiest may be to use some freeware like DOSPrint (or SAMBA) and setup a pseudo printer on the USB port.

  • 0 in reply to 

    Thank you Peter I will check up on the ACURS32.DLL, and the unit we ordered is Logic control LV5000

    Logic Controls LV5000 LCD Customer/Pole Display: Barcode Giant

    I am still waiting for it to be delivered.

  • 0 in reply to 

    Peter, I check with Micro focus and the ACURS32.dll is not  a .dll supported by them, any idea who has this .dll?

  • Suggested Answer

    0 in reply to 

    I have - and still use - the dll. However, if you can use DOSPrint to assign a printer to the USB port and then simply "print" to that printer, it will be much easier. Also a better option given that MF no longer support ACURS32.

    Try that first, else I can let you have my program (written about 20 years ago Disappointed). DOSPrint can be download on the internet.

  • 0

    Do you have any sample source for ACURS232 and are you willing to send me or can I purchase it from you, I am still looking for sample program to assign a printer to COM1:?

  • 0 in reply to 

    You would only need ACURS232 for bi-directional communication; not for printing.
    Its a long time since I used serial printers but my recollection is that you open and write to a FileName where you have an entry in the configuration files    FileName -D COM1.

    You would also need to set the port parameters using (dos/cmd)  MODE COM1: 96,N,8,1,P  (Baud, Parity, Bits, Stop Bits, I think P means hold parameters)

    Let me know about ACURS232. Program is free, but if you need my time, lets talk Slight smile

  • 0 in reply to 

    Thank you for your reply, Peter. Yes, this will be used to connect to a serial customer display pole. I wrote a small program and assigned the printer to "_D COM1" and was able to open the printer and send data to it, unfortunately, it sent an unreadable text to it. I might need to download the drivers for this display pole and try again later this week. If you can send me the ACURS232 and any documentation that would be great.

    Again; many thanks

    Alex Albergo

  • 0 in reply to 

    You did use the MODE command to set the correct  RS232 communication  parameters?  "Printing" is the easiest and I am sure your problem is baud rates etc. Alternatively, Is the display OPOS compliant (so you can use the OPOS.OCX) . Try this.  Select START, RUN, CMD. |  type MODE COM1:96,n,8,1,p.  |  type dir > com1  | If the characters are gibberish check what baud rate etc the display is set up for.

  • 0 in reply to 

    I tried the above from a DOS prompt and nothing happened. iT SAID SYSTEM CANNOT FIND THE FILE WHEN I TYOE DIR > com1