ordenar fechas en grilla
Publicado por nicolsa (11 intervenciones) el 30/03/2011 21:29:02
Estimados,
tengo una grilla con diferentes tipos de datos y el siguiente codigo
Private Sub grdGrilla_DblClick(ByVal Col As Long, ByVal Row As Long)
If Row = 0 Then
grdDeudas.Row = 1
grdDeudas.Col = 0
grdDeudas.Row2 = grdDeudas.MaxRows
grdDeudas.Col2 = -1
grdDeudas.SortBy = 0
grdDeudas.SortKey(1) = Col
grdDeudas.SortKeyOrder(1) = 1
Screen.MousePointer = 11
grdDeudas.Action = 25
Screen.MousePointer = 0
Else
Call cmdModificarDeudas_Click
End If
If Row < 1 Then Exit Sub
grdDeudas.Row = Row
End Sub
y sucede que ordena todo, pero los datos de tipo fecha, los ordena como si fuera numerico, y no se como corregirlo.
si me pudiesen ayudar.
tengo una grilla con diferentes tipos de datos y el siguiente codigo
Private Sub grdGrilla_DblClick(ByVal Col As Long, ByVal Row As Long)
If Row = 0 Then
grdDeudas.Row = 1
grdDeudas.Col = 0
grdDeudas.Row2 = grdDeudas.MaxRows
grdDeudas.Col2 = -1
grdDeudas.SortBy = 0
grdDeudas.SortKey(1) = Col
grdDeudas.SortKeyOrder(1) = 1
Screen.MousePointer = 11
grdDeudas.Action = 25
Screen.MousePointer = 0
Else
Call cmdModificarDeudas_Click
End If
If Row < 1 Then Exit Sub
grdDeudas.Row = Row
End Sub
y sucede que ordena todo, pero los datos de tipo fecha, los ordena como si fuera numerico, y no se como corregirlo.
si me pudiesen ayudar.
Valora esta pregunta
0