Using qbasic, the following accepts input from com1, and prints its output :
OPEN "com1:9600,n,8, 1,CD0,CS0,DS0,R S" FOR INPUT AS #1
WHILE INKEY$ <> " "
INPUT #1, a$
PRINT a$
WEND
What would the same set of commands look like in VB. I am reading the
output from Welch Allyn barcode scanner.
I am a newbie to VB,
regards
Simon
OPEN "com1:9600,n,8, 1,CD0,CS0,DS0,R S" FOR INPUT AS #1
WHILE INKEY$ <> " "
INPUT #1, a$
PRINT a$
WEND
What would the same set of commands look like in VB. I am reading the
output from Welch Allyn barcode scanner.
I am a newbie to VB,
regards
Simon
Comment