wenas de nuevo
aunque me gustaría q me lo explicaras un poquito me sirvió con lo q me comentaste
dejo e codigo q use para los 2 campos de fecha q tengo
Código vb:
Ver originalTry
Dim j As Integer = 0
query = "SELECT * FROM cheques WHERE destino=''"
dr = conec.consulta(query)
While dr.Read
Me.dgv.Rows.Add()
Me.dgv.Item(1, j).Value = dr.GetValue(0).ToString
Me.dgv.Item(2, j).Value = dr.GetValue(5).ToString.Substring(0, 10)
Me.dgv.Item(3, j).Value = dr.GetValue(6).ToString.Substring(0, 10)
Me.dgv.Item(4, j).Value = dr.GetValue(1).ToString
Me.dgv.Item(5, j).Value = dr.GetValue(2).ToString
Me.dgv.Item(6, j).Value = dr.GetValue(3).ToString
Me.dgv.Item(7, j).Value = dr.GetValue(4).ToString
Me.dgv.Item(8, j).Value = dr.GetValue(9).ToString
j += 1
End While
Catch ex As Exception
MsgBox("Error")
End Try
Desde ya muchas gracias
Saludos