Recent content by cheekybuddha

  1. 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!
  2. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    🤪😝 That's just daft!
  3. cheekybuddha

    Suddenly Receiving Run Time Error 2057

    Very interesting. I didn't know that the CurrentProject object had a .nam property.
  4. 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...
  5. cheekybuddha

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

    Don't be lazy, Piet! 😂 Use code tags! 😵
  6. 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?
  7. 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?
  8. 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?
  9. 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...
  10. 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
  11. cheekybuddha

    Boolean in if statement without a value

    Your code as is, without assigning the value of ss before reading it, will go down the false path. The variable ss will default to false when dimensioned. This will show you more clearly: Dim ss As Boolean if ss then msgbox "ss is True" else msgbox "ss is False" end if
  12. cheekybuddha

    Outlook365 Classic is broke

    Daniel Pineault has written something about this. (I haven't read it yet! 😬 )
  13. cheekybuddha

    control allow bypass key on another database

    Th OP said they didn't have a facebook account, not that the link went to a facebook page ;)
  14. cheekybuddha

    control allow bypass key on another database

    @DHookom Your link requires signing up to access your file:
Back
Top Bottom