yes i have gone thorugh that i tried with the following code:
DIM b AS STRING * 1 '1 byte string (8 bits)
OPEN "COM1:19200,N,8,1,BIN,CD0,CS0,DS0,OP0,RS,TB2048,RB2048" FOR RANDOM AS #1
For i = 1 to 1000
b = CHR$(7)
PUT 1, , b
next i
CLOSE
the purpose of this code is to send 7 continuously to...