Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/03/2010, 22:18
T3rryMan
 
Fecha de Ingreso: enero-2010
Ubicación: SJM Lima - Peru
Mensajes: 55
Antigüedad: 15 años
Puntos: 1
Mensaje Respuesta: Insertar un txt a SQL

Cita:
Iniciado por UMANCHUK Ver Mensaje
Como Oo ??? necesito hacerlo en visual basic 6 alguna idea??
Hola
En visual basic existe una funcion llamada
Código vb:
Ver original
  1. SPLIT(cadena,separador)

Primero deberias aperturar un archivo y recorrerlo linea por linea
estando en cada linea utilizas la funcion almacenandola en una matriz

haber te dejo un ejemplo

Código vb:
Ver original
  1. Private Sub CmdPartirText_Click()
  2.     Dim LineaActual As String
  3.     Dim nIndice As Integer
  4.     Dim MiArray() As String
  5.     'LineaActual = "Jhon, Bautista, Palomino, Analista Programador"
  6.    LineaActual = "Jhon, Bautista, Palomino, Analista Programador, 28, BitXense Soluciones Informaticas S.A.C."
  7.     MiArray = Split(LineaActual, ",")
  8.     MsgBox "Mira aqui esta el Rango " & Chr(13) & LBound(MiArray) & vbTab & UBound(MiArray), , "rangos"
  9.     MsgBox MiArray(2), , "dato individual"
  10.     MsgBox "Empezando el FOR", , "sistema"
  11.     For nIndice = 0 To UBound(MiArray)
  12.             MsgBox Str(nIndice) & Space(5) & (MiArray(nIndice)), , "en el for"
  13.     Next
  14. End Sub


www.bitxense.com.pe | Soluciones Informaticas S.A.C. - [email protected]
Cualquier duda soy Jhon Bautista Palomino aqui esta mi correo MSN [email protected] Lima-Peru