Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/01/2005, 13:45
ERICKA2004
 
Fecha de Ingreso: noviembre-2004
Mensajes: 43
Antigüedad: 19 años, 6 meses
Puntos: 0
Exclamación Genera Error

SOLO NECESITO EL CODIGO BIEN PARA GUARDAR EN UNA TABLA LLAMADA USUARIOS LA INFORMACION DE NOMBRE CEDULA DIRECCION ID Y CONTRASEÑA ... PERO ME GENERA ERROR... ESTE ES EL CODIGO

Private Sub AlmacenarUsuarios_Click()
mensaje$ = " Introduzca Nuevo Usuario para Accesar al Sistema"*** ES SOLO UN MENSAJE
reply = MsgBox(mensaje$, vbOKCancel, "AlmacenarUsuario")
If reply = vbOK Then
Text1.SetFocus
USUARIO.Recordset.AddNew
END IF
End Sub