Este es el código del botón Guardar Cambios:
Private Sub cmdGuardar_Click()
On Error GoTo ErrorSub
' Valida el Nombre que no este vacio ''''''''''''''''''''''''''''''''
If Trim(Text1(1)) = "" Then
MsgBox "El Nombre de registro no puede estar vacio", vbCritical, "Datos incompletos"
Text1(1).SetFocus
Exit Sub
' Valida el Apellido ''''''''''''''''''''''''''''''''
ElseIf Trim(Text1(2)) = "" Then
MsgBox "El Apellido no puede estar vacio", vbCritical, "Datos incompletos"
Text1(2).SetFocus
Exit Sub
End If
'Agrega el registro '''''''''''''''''''''''''''''''
Select Case ACCION
Case EDITAR_REGISTRO
cnn.Execute "UPDATE Personas set Nombre = '" & Text1(1) & _
"', Apellido = '" & Text1(2) & _
"', Telefono = '" & Text1(3) & _
"', Direccion = '" & Text1(4) & _
"', Dni = '" & Text1(5) & _
"', Celular = '" & Text1(6) & _
"', Correo = '" & Text1(7) & _
"', Mutual = '" & Text1(8) & _
"', Sexo = '" & Text1(9) & _
"', Edad = '" & Text1(10) & _
"', Ocupación = '" & Text1(11) & _
"', Patología = '" & Text1(12) & _
"', Tratamiento = '" & Text1(13) & _
"', FechaDeAlta = '" & Text1(14) & _
"' where Id = " & IdRegistro & ""
Case AGREGAR_REGISTRO
cnn.Execute "INSERT INTO Personas " & "(Nombre,Apellido,Telefono,Direccion,Dni, Celular,Correo,Mutual,Sexo,Edad,Ocupación,Patología,Tratamiento,FechaDeAlta) VALUES('" & _
Text1(1) & "','" & _
Text1(2) & "','" & _
Text1(3) & "','" & _
Text1(4) & "','" & _
Text1(5) & "','" & _
Text1(6) & "','" & _
Text1(7) & "','" & _
Text1(8) & "','" & _
Text1(9) & "','" & _
Text1(10) & "','" & _
Text1(11) & "','" & _
Text1(12) & "','" & _
Text1(13) & "','" & _
Format(Date, "dd/mm/yyyy") & "')"
End Select
rs.Requery 1
DoEvents
Unload Me
Set frmEdit = Nothing
Exit Sub
ErrorSub:
MsgBox Err.Description
End Sub
En la base de datos se guardan los cambios, pero no se ven completos en los text Patología y Tratamiento.Gracias por la respuesta.