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/
Cybersecurity
DevOps Cloud
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
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/
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
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
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.
I tried the above from a DOS prompt and nothing happened. iT SAID SYSTEM CANNOT FIND THE FILE WHEN I TYOE DIR > com1
i TAKE THAT BACK, WHEN i ISSUE THE DIR COMMAND I GET GARBAGE CHARACTERS.
Did you check the RS232 parameters off the display post and then use the mode command to set com1 to the same?
Let's take this offline: send your email address to cobsolv@global.co.za
WHen I type in the MODE COM1:96,n,8,1,p. I get an invalid parameter, I if type MODE COM1:96 I get the status of COM1 Buad = 9600, parity even, data bit 7 stop bit 1 timeout off xon/xoff = off ETC.
This pole is a POSX XB8000, and I have not downloaded any drivers for this unit.
I doubt it need drivers.
Try dropping the "p" and use: MODE COM1: 96,N,8,1 (depending on how the display is set!)
I doubt it need drivers.
Try dropping the "p" and use: MODE COM1: 96,N,8,1 (depending on how the display is set!)
I triied the above command I get invalid parameter, Ireally do not know how to check the display pole, when it starts up I can it says 9600 font:0 mode=6
Peter I got it to work I did the following:
MODE COM1:96,n,8 WHICH SET IT FROM 7 BITS TO 8 BITS and was to send text to the customer display pole.
Thank you so much!!