Search results

  1. V

    Prevent Duplicate Records

    Try This Friend check on the form cus_name afterupdate event
  2. V

    Prevent Duplicate Records

    what about the dlookup did it helped you ??
  3. V

    Prevent Duplicate Records

    try to use DlookUp friend : Dim rslt as String rslt = DLookup("[lastName]", "Clients", "LastName='" & Me.lastName & "'") If Me.NewRecord Then If Not (IsNull(rslt)) Then MsgBox ("The Client Name is already registered Plz Choose Another ..") DoCmd.DoMenuItem acFormBar, acEditMenu, 8, ...
  4. V

    DB To save passwords

    Hello Dear try this you will like it and also i change name of fields in the table don't use like this names hope it help you
Back
Top Bottom