BBS: Inland Empire Archive Date: 07-05-92 (03:55) Number: 113 From: BILL CAMPBELL Refer#: NONE To: DOUGLAS LUSHER Recvd: NO Subj: RC's Tagmenu 4/4 Conf: (2) Quik_Bas
CheckTagged:
LOCATE RowI, Column - 1
IF Tagged(x) THEN
COLOR FgMarker, BgNormal
PRINT SelChr$;
COLOR FgNormal, BgNormal
ELSE
COLOR FgNormal, BgNormal
PRINT " ";
END IF
RETURN
lastrecord:
COLOR FgNormal, BgNormal
LOCATE row, Column
PRINT " " + array$(x) + SPACE$(maxlength - LEN(array$(x))) + " ";
row = upperrow
x = n - (lowerrow - upperrow)
IF x < 1 THEN x = 1
DO
LOCATE row, Column
PRINT " " + array$(x) + SPACE$(maxlength - LEN(array$(x))) + " ";
RowI = row
GOSUB CheckTagged
row = row + 1
IF row = lowerrow + 1 THEN EXIT DO
x = x + 1
LOOP UNTIL x > n
x = n
row = row - 1
RETURN
END SUB
--- Maximus 2.00
* Origin: Durham Systems (ONLINE!) (1:229/110)

Books at Amazon:
Back to BASIC: The History, Corruption, and Future of the Language
Hackers: Heroes of the Computer Revolution (including Tiny BASIC)
Go to: The Story of the Math Majors, Bridge Players, Engineers, Chess Wizards, Scientists and Iconoclasts who were the Hero Programmers of the Software Revolution
The Advent of the Algorithm: The Idea that Rules the World
Moths in the Machine: The Power and Perils of Programming
Mastering Visual Basic .NET