home *** CD-ROM | disk | FTP | other *** search
- Type RptVars_Type
- name As String * 30
- thinbars As Integer
- thickbars As Integer
- page As Integer
- landscape As Integer
- rows As Integer
- cols As Integer
- numcols As Integer
- textcols As Integer
- currentnumcol As Integer
- currenttextcol As Integer
- pages As Integer
- rowsperpage As Integer
- defrowheight As Integer
- headerheight As Integer
- End Type
- Global Rpt As RptVars_Type
-
- Type RptCol_Type
- datatype As String * 1 ' A = text, 9 = numeric
- fmt As String * 30 ' BASIC standard
- bar As Integer
- ptr As Integer ' pointer to data column
- ctitle As String * 30
- cwidth As Integer
- calign As Integer ' 0 = left, 1 = ctr, 2 = right
- End Type
- Global RptCol() As RptCol_Type
- Global RptNumData() As Single
- Global RptTextData() As String
- Global RptSortTop() As Integer
- Global RptSortBottom() As Integer
-
-