CheckBOX
Posted: Fri Aug 26, 2011 8:34 am
I am trying to create a setup screen with a "Bunch of Check Boxes". I really don't want to have any text associated with the Check Boxes as it is essentially a Matrix of options, with headings at the sides & top (I left those out in the example).
My question is how can i get rid of the "Text Box" that appears as I from field to field.
My question is how can i get rid of the "Text Box" that appears as I from field to field.
Code: Select all
00010 GOSUB INTEREST_CHECKBOX
00020 STOP
31480 INTEREST_CHECKBOX: ! Checkbox Version
31481 PRINT Newpage
31482 EXECUTE "CON GUI ON"
31490 DIM Icb_Before$(6)*1,Icb_Post$(6)*1,Icb_Judgment$(6)*1,Icb_Using$*256,Icb_Fields$(18)*32
31500 MAT Icb_Before$=("") : MAT Icb_Post$=("") : MAT Icb_Judgment$=("")
31509 LET _Icb_Fields=0
31510 FOR _Icb=1 TO Udim(Icb_Before$)
31555 LET Icb_Fields$(_Icb_Fields+=1)=Str$(_Icb+1)&",42,CHECK 1,AE" !:
LET Icb_Fields$(_Icb_Fields+=1)=Str$(_Icb+1)&",55,CHECK 1,AE" !:
LET Icb_Fields$(_Icb_Fields+=1)=Str$(_Icb+1)&",67,CHECK 1,AE"
31560 NEXT _Icb
31570 INPUT FIELDS Mat Icb_Fields$: (Mat Icb_Before$,Mat Icb_Post$,Mat Icb_Judgment$)
31580 RETURN