Recent content by cheekybuddha

  1. cheekybuddha

    This SQL problem is the MAX() amount of frustration I can handle right now.

    Yeah, you used code tags, but where are the emoticons? 😝 :ROFLMAO:
  2. cheekybuddha

    This SQL problem is the MAX() amount of frustration I can handle right now.

    12 more posts and then you can post links (unless the threshold has increased from 100)
  3. cheekybuddha

    Connect Access 365 to Mysql connector problem

    Yes, I already found it, and made another whole post that seems to have disappeared :unsure: Probably lost by a mod trying to move this part of the thread out of the Introduce Yourself board. (Or perhaps I never hit 'Post reply' and refreshed my browser? 😬 )
  4. cheekybuddha

    Solved How to migrate MS Access forms or recreating forms to the web based forms

    I'd cut Access out of the loop completely!
  5. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    🤪😝 That's just daft!
  6. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    Very interesting. I didn't know that the CurrentProject object had a .nam property.
  7. cheekybuddha

    Connect Access 365 to Mysql connector problem

    Which version of the MySQL docs are you looking at. In most recent 8.4, the section you mention no longer exists: Show us the code you are using and tell us where it fails. There can be many points of failure, eg open ports on server, ODBC options and connection string, etc , etc ... What...
  8. cheekybuddha

    This SQL problem is the MAX() amount of frustration I can handle right now.

    Don't be lazy, Piet! 😂 Use code tags! 😵
  9. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    Do you have Option Explicit declared at the top of all your code modules? ' ... MsgBox "No records for " & strCriteria, vbOKOnly, CurrentProject.nam ' ... Does that code compile?
  10. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    Have you got Unload code to close and destroy the recordset object variable? Or are you just using the form's recordset via RecorSource?
  11. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    Further to above, what happens in the subform? You say it's not bound. Are you using a recordset within it? Perhaps you're not destroying them properly, causing a memory leak?
  12. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    ' ... Me.frmImageFiles.SourceObject = "sfrmImages" 'name of the form to load in sfrmSubform2 control ' ... Probably not related, but do you really want to reload the subform on every record move? Perhaps better: ' ... If Not Me.frmImageFiles.SourceObject = "sfrmImages" Then...
  13. cheekybuddha

    Boolean in if statement without a value

    Actually, this is not true. I used to think so for years until it tripped me up! A Variant defaults to Empty. Try the following in the Immediate Window (no need to declare variable 'test', it is a Variant by default): ?IsNull(test) False ?IsEmpty(test) True
Back
Top Bottom