View Single Post
  #4   Report Post  
Jim
 
Posts: n/a
Default


"Ken Weitzel" wrote in message
news:whxje.1425412$6l.1326759@pd7tw2no...


Jim wrote:
I have the above mentioned meter and have lost the software for the
second time. I bought some third party software years back and now have
neither. Does some kind hearted soul out there have the program?



Hi Jim...

Failing getting a "real" copy, iff you have any old basic
compiler, you might try this...

OPEN "COM1: 1200, N, 7, 2, RS, CS, DS, CD" FOR RANDOM AS #2
OPEN "test.dat" FOR OUTPUT AS #3
A$ = "D"
FOR i = 1 TO 10
PRINT #2, A$
IN$ = INPUT$(14, #2)
PRINT #3, TIME$, IN$
NEXT i
CLOSE #2
CLOSE #3
END

Ken


Thanks for the Prog! And WinXP and Basic is just a no go ;-)