I needed to put a double coma in the put statment in the following
code or else I would get error 411 "," required. In a another file
openning statment the same put statment didn't require the double
coma. What I am I doing wrong here?
OPEN "DATARACE" FOR RANDOM AS #2 LEN=43
DIM S AS RACEDATA
S.TRK=DB$(1)
S.DDD=DT$
S.RC=DB$(3)
S.DIS=DB$(6)
S.SUR=DB$(7)
S.TP=TYP$
S.PAR=DB$(217)
S.AGE=AGESEX$
S.EARLYPAR=DB$(215)
S.LATEPAR=DB$(218)
S.CR=CHR$(13)
PUT 2,, EE%
CLOSE #2
------------------
code or else I would get error 411 "," required. In a another file
openning statment the same put statment didn't require the double
coma. What I am I doing wrong here?
OPEN "DATARACE" FOR RANDOM AS #2 LEN=43
DIM S AS RACEDATA
S.TRK=DB$(1)
S.DDD=DT$
S.RC=DB$(3)
S.DIS=DB$(6)
S.SUR=DB$(7)
S.TP=TYP$
S.PAR=DB$(217)
S.AGE=AGESEX$
S.EARLYPAR=DB$(215)
S.LATEPAR=DB$(218)
S.CR=CHR$(13)
PUT 2,, EE%
CLOSE #2
------------------
Comment