Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/05/2008, 15:31
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años
Puntos: 839
Respuesta: Pasar Datos Txt Separados Por Coma A Un List

Suponiendo que estás usando el ListBox de VBA (ya que el de VB6 no tiene columnas), sería:
Código:
 
ListBox1.AddItem Codigo
ListBox1.List(ListBox1.ListCount - 1, 1) = Nombre
ListBox1.List(ListBox1.ListCount - 1, 2) = Registro
ListBox1.List(ListBox1.ListCount - 1, 3) = Ciudad
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.