Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/02/2011, 12:20
jotaeva
 
Fecha de Ingreso: junio-2010
Mensajes: 37
Antigüedad: 13 años, 10 meses
Puntos: 0
Respuesta: Llenar una matriz con un campo de una tabla

Por si le sirve a alguno, esta es la solución a mi problema en lugar del array:

Código Visual Basic:
Ver original
  1. Dim Cl_Nombres As New Collection
  2.     For Each Dt_Row As DataRow In dst.Tables("inscritos").Rows
  3.       Dim Dt_Nombre As String = Dt_Row.Item("nombre").ToString
  4.       Cl_Nombres.Add(CObj(Dt_Nombre))
  5. Next

Última edición por jotaeva; 09/02/2011 a las 12:28