Hi, I've got 3 computers networked together using ME. I have a serial printer (a Brady PC-LINK) on Computer 1 and am able to print to it from computer 2 and 3 using this format:
STX$=CHR$(2)
Brady=FREEFILE
OPEN "\\Tom\TLS" FOR OUTPUT AS #Brady
PRINT #Brady, STX$;"Q"; 'clear image memory
etc.
"\\Tom" in this case is computer 1.
The problem I'm having is that I can't print to the printer from computer 1. Nothing happens. I know I can make it work by directly accessing COM 2, but I often upgrade this program for all three computers and I want to be able to do that in one version, not two.
Hope this makes sense.
Thanks
------------------
STX$=CHR$(2)
Brady=FREEFILE
OPEN "\\Tom\TLS" FOR OUTPUT AS #Brady
PRINT #Brady, STX$;"Q"; 'clear image memory
etc.
"\\Tom" in this case is computer 1.
The problem I'm having is that I can't print to the printer from computer 1. Nothing happens. I know I can make it work by directly accessing COM 2, but I often upgrade this program for all three computers and I want to be able to do that in one version, not two.
Hope this makes sense.
Thanks
------------------
Comment