shortening my sequencing records without writing each record
#7
This portion could be condensed easily like this:

Code: (Select All)
FOR iter = 1 TO 3
    GOSUB 900
    rec$ = rec$ + "RECORD" + STR$(iter) + " "
    afile$ = "record" + LTRIM$(STR$(iter)) + ".dat"
    ff = FREEFILE
    OPEN afile$ FOR INPUT AS ff
    FOR TTP = 1 TO 8
        FOR X = 1 TO 3
            INPUT #ff, ALINE(X, TTP)
            INPUT #ff, TIME(X, TTP)
        NEXT X
    NEXT TTP
    CLOSE ff
    SELECT CASE iter
        CASE 1
            results = 854736
        CASE 2
            results = 431276
        CASE 3
            results = 746352
    END SELECT
    GOTO 360
NEXT ''iter

It shouldn't be too difficult to figure out how to involve the other files used in this project.
Reply


Messages In This Thread
RE: shortening my sequencing records without writing each record - by mnrvovrfc - 10-01-2022, 03:00 PM



Users browsing this thread: 3 Guest(s)