Search results

  1. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    yeah, it's easy to reprocuded it. Ms Access does not handle this error properly i think
  2. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Yeah, as no-experience access user, I am always scared this scenerio, code error cause forms/local tables coruption without knowing. I am not so clear what difference btw compact and decompile. I usually do Cmpact & Close before copy my accdb as a backup. Let me learn to use decompile as...
  3. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    A side-question, In your modified code: Private Sub User_MainProductShowDetail() Dim rs As DAO.Recordset Set rs = Me.Form.Parent.Form.Recordset rs.FindFirst "[VendorID] = " & Txt_ID If rs.NoMatch Then MsgBox "Unknow Error - No Vendor Name " & Txt_QField1 & " !" End...
  4. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Dear all. Solved. With your advices, i followed and found that the subform record source was not table TBLVendor but from query Q_QinfoVendor_Source. And in Q_QinfoVendor_Source, there are no field names: Country and ROCNumber. Access introduces no meaningful msg in that case: Error '3709'...
  5. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    I was guesting same then I build forms from scratch but same error. Please build the form at your side. Hope you can re-use my data, i suppect the local language characters might make filter work improperly... if so it is my nightmare
  6. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Sorry about that, it costs nothing with sapce before "OR"... but this is cut-down version I did not have must time to make it clearer
  7. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Hi MajP. The attached db is already fresh-build. I thought my form was corrupt but rebuid it did not help. May you please digout further from clue that the error does not happen with short-criteria filter string?
  8. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    wildcardstr = " like '*" & str & "*') " The wildcardstr is with a SPACE at its end, so it is OK
  9. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Oh, sorry the attached file was with "short-criteria fillter string". That is why no error. I have re-attached the correct DB file . Please help to take a look again
  10. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Yes, I tried it. I found that assigning bookmark on mainform causes subform's on-current event fires. That's why I said it is very strange/weird behavior. A question is, why does it not happen when reducing filter criteria string...?
  11. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Please apply type "ABC" in the search box first, then you click on #2, #3 record of filtered result.
  12. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Dear everyone I have been struggling for 3 days to debug but only narrow down some clues... I have a mainform and a continous subform, they act like split form. Main form has button to filter out records on subform, and when user click on a record in subform the main form will show current...
  13. Babycat

    Replace (Ctrl + H) with Newline character in VBE

    Appreciated so much for your suggestions, I just simply dont know about Application.SetOption "Error Trapping". It seems to be what I need. Let me try it out.
  14. Babycat

    Replace (Ctrl + H) with Newline character in VBE

    Yes Yes, like ebs17's comment, I want Access stop at every error code so that I can jump into it and investigate in detail. My Error handler mostly consists of "Resume Next", thus I disable error trapping to try catching all unforeseeable errors.
  15. Babycat

    Replace (Ctrl + H) with Newline character in VBE

    Hi all I have many forms and modules in VBA code. My code usually has a line in comment mode like 'On Error GoTo ErrorHandler thus, this error handler is temporary disabled during the code development. Now, I want to replace above line by using a compiler switch such as #If DEVMODE Then #Else...
  16. Babycat

    Solved How can I restrict the front-end user from editing the queries?

    The fresh FE gives no clue to indentify the user opening FE... that is the point, sir
  17. Babycat

    Solved How can I restrict the front-end user from editing the queries?

    Not so clear what you mean, but the case is user selecting "remember me" on login form for the 1st login, next time they will not need to type username & password again. This looks impossible if a fresh new FE is downloaded from server...
  18. Babycat

    Solved How can I restrict the front-end user from editing the queries?

    Hi Isladogs, Same FE file is downloaded from server to local (user's) computer everytime user start the application, thus how and where to store these login data?
  19. Babycat

    Solved How can I restrict the front-end user from editing the queries?

    Kind of lazy to handle an extra text file, many thing can be happened with that file which is outside of Access db
  20. Babycat

    Solved How can I restrict the front-end user from editing the queries?

    Hi Pat, I distribute same FE to 2 different teams: R&D and purchasing team. They have to login in with given username & password, this login form has "remember me" feature which is store on local table. If the FE is downloaded from server everytime user clicking on the shortcut, then"remember...
Back
Top Bottom