Dim pRow As DataRow
Dim j As Integer
oDS = Conexion.Seleccion("Select Trabajador from Informacion order by Codigo DESC")
For j = 0 To oDS.Tables(0).Rows.Count - 1
pRow = oDS.Tables(0).Rows.Add(New String() {})
pRow.Item(0) = "Trabajador"
oDS.Tables(0).Rows.Add(pRow) 'me dice q la fila ya pertence a esa tabla
Next
