Ver Mensaje Individual
  #6 (permalink)  
Antiguo 12/06/2007, 17:26
ReViJa
 
Fecha de Ingreso: abril-2007
Mensajes: 187
Antigüedad: 18 años
Puntos: 1
Re: Problema con array

Eso lo consigues con la función Split
Código:
Private Sub Form_Load()
Dim matriz() As String, variable As String
Dim x As Integer

variable = "hola como va"
matriz = Split(variable, " ")

For x = LBound(matriz) To UBound(matriz)
  Debug.Print matriz(x)
Next
End Sub

Saludos