Al actualizar el formulario me guarda los campos aunque no hayan sido modificados realmente.
Vamos a ver si me explico con una duda que tengo.
Tengo el siguiente código:
If Nz(DLookup("DNI", "Usuarios", "DNI ='" & DNI & "'")) = Form!DNI.Value Then
DNI.SetFocus
MsgBox "EL DNI " & DNI & " PERTENECE A OTRO USUARIO", vbExclamation + vbOKOnly, "ATENCION"
Tengo un formulario con varios textbox. Al modificar alguno y sin tocar el textbox "DNI" al darle a guardar me salta el msgbox. Eso quiere decir que está guardando tambíen el dato DNI aún sin ser modificado realmente.
1 respuesta
Respuesta de Julián González Cabarcos