PUBLIC SUB
GridViewData_ColumnClick (Column AS Integer )
IF
var. sortlist
= 0
THEN
Sort. sorting_AZ (GridViewData, Column)
var. sortedlist = 1
ELSE
var. sortedlist = 0
Sort. sorting_ZA (GridViewDatos, Column)
ENDIF
END
PUBLIC SUB ord_AZ
(grid AS GridView, a AS Integer )
'a: indicates the
column to sort
'grid: the grid to be sorted
DIM limit AS Integer
DIM change1 AS String
DIM
i AS Integer
DIM
j AS Integer
DIM
col AS Integer
grid. visible = FALSE
limit =
grid. Rows . COUNT
IF (grid. Columns . COUNT <a + 1 ) OR a < 0 THEN
Message. Error ( "Error: bad column number" )
GOTO outsort
ENDIF
FOR
i = 0 TO limit - 1
FOR
j = 0 TO limit - 2
IF UCase $ (Grid[j, a]. Text
) > UCase $
(Grid[j + 1 , a].Text
) THEN
FOR
col = 0 TO grid. Columns . COUNT - 1
change1 = Grid [j, col]. Text
Grid [j, col]. Text = Grid [j + 1 , col]. Text
Grid [j + 1, col]. Text = change1
NEXT
ENDIF
NEXT
NEXT
outsort:
grid. visible = TRUE
END
'------------------------------------------------------------------------
PUBLIC SUB ord_ZA
(grid AS GridView, a AS Integer )
'a: indicates the
column to sort
'grid: the grid to be sorted
DIM limit AS Integer
DIM change1 AS String
DIM
i AS Integer
DIM
j AS Integer
DIM
col AS Integer
grid. visible = FALSE
limit =
grid. Rows . COUNT
IF (grid. Columns . COUNT <a + 1 ) OR a < 0 THEN
Message. Error ( "Error: bad column number" )
GOTO outsort
ENDIF
FOR
i = 0 TO limit - 2
FOR
j = i TO limit - 1
IF UCase $ (Grid[j, a]. Text
) > UCase $
(Grid[j , a].Text
) THEN
FOR
col = 0 TO grid. Columns . COUNT - 1
change1 = Grid [j, col]. ].Text
)
Grid [j, col]. text = Grid [i, col]. ].Text
)
Grid [i, col]. text = change1
NEXT
ENDIF
NEXT
NEXT
outsort:
grid. visible = TRUE
END