home *** CD-ROM | disk | FTP | other *** search
- DEFINT A-Z
- TYPE RecordType
- status AS STRING * 1 'First element is in use flag
- Num AS STRING * 3
- name AS STRING * 16 '(in order for alphabetical sort)
- type AS STRING * 1
- case AS STRING * 1
- key AS STRING * 1
- decimal AS STRING * 2
- length AS STRING * 2
- format AS STRING * 20
- erow AS STRING * 2
- ecol AS STRING * 2
- progname AS STRING * 8
- comment AS STRING * 30
- recnum AS INTEGER
- DUM AS STRING * 14
- END TYPE
-
- TYPE PIMindex
-
- desc AS STRING * 24
- file AS STRING * 8
- indexF(20) AS STRING * 32
- klen(20) AS INTEGER
- nok(20) AS INTEGER
- nexav(20) AS INTEGER
- kdel(20) AS INTEGER
-
- END TYPE
-
- DIM SHARED PIMmaster AS PIMindex
-
- DIM SHARED RecField AS RecordType
- DIM SHARED indexKEY$(20, 6) ' Index variables
- DIM SHARED formatsel1$(16)
- DIM SHARED formatsel2$(16)
- DIM SHARED fieldpointer%(25, 80) ' Frame for input markers
- DIM SHARED fl$(255) ' File array, 2nd Key Select Array
- DIM SHARED scrnline$(25) ' Lines 1-24
- DIM SHARED dialog$(20)
- DIM SHARED omenu$(10)
-
- DIM SHARED TestRecField AS RecordType
- DIM SHARED DispLine$(30)
- DIM SHARED Findex(100) AS RecordType
-
-