Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/03/2005, 11:29
Bebecita
 
Fecha de Ingreso: marzo-2005
Mensajes: 51
Antigüedad: 20 años
Puntos: 0
Ordenar Datagrid

Hola, yo encontre una forma de ordenar el grid, lo hice utilizando un control DataGrid enlazado a un control Adodc

Private Sub GridResumen_HeadClick(ByVal ColIndex As Integer)
Dim CampoOrden As String
CampoOrden = " ORDER BY " & GridResumen.Columns(ColIndex).DataField
Adodc2.CommandType = adCmdText
Adodc2.RecordSource = "Select * from rsTabla " & CampoOrden
Adodc2.Refresh
End Sub

Saludos

Carmen Arvelo