Pregunta en
Microsoft Access
Alguien me puede ayudar. Tengo un array quiero guardar su información en un tabla access..
Private Sub Comando3_Click() a = Trim(texto) 'MsgBox Trim(a) Dim sCampos() As String sCampos = Split(a, "--") Dim i As Integer For i = 0 To UBound(sCampos) If Len(sCampos(i)) > 0 Then If Right(sCampos(i), 2) = vbCrLf Then sCampos(i) =...
Sin respuestas