Recent content by AHeyne

  1. A

    Access Versions?

    @RaptorRaptur : This maybe could help you for your 'feature' decision: Microsoft Access Version Features and Differences Comparison Matrix One major plus of 2024 compared to 2021 is the Microsoft Support (including the mentioned security updates): - Office 2021 ends 2026-10-13 - Office 2024...
  2. A

    Runtime Issue

    Does the Access version of the runtime machines differ to your development PC? If so, be sure to decompile the accdb before deploying it to them.
  3. A

    Access Versions?

    Choose one which still receives security updates from Microsoft. That are Microsoft Office 2021, 2024 and 365.
  4. A

    Solved Form DAO.Recordset Looses Position On Requery

    Regardless of the actual topic, I expect that the logic used here does not quite match your requirements, as "And" ranks higher than "Or" in the operator hierarchy. You can use parentheses to specify this as desired. Your current code is essentially equivalent to this code: If...
  5. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    You've really put a lot of work into this. What you've found out sounds quite confusing (not from you, but in terms of the context). I think it all boils down to accepting that you can't figure everything out. I played around a little with the layout-related properties from my initial post...
  6. A

    VBAStack - Read the callstack in VBA6 and 7

    Very nice. Works on 64-bit VBA well too! (y)
  7. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    As I said, I don't want to use a sledgehammer to find the Holy Grail or other artifacts, but rather encourage the community to introduce properties that haven't been mentioned here yet. At least that was my idea, which unfortunately was somewhat misunderstood (but I think I may have expressed...
  8. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    @Edgar_ : Thank you for the information. But as I have already written here and added in my first post now, it's not specifically about compiling a complete list for the sake of it, but rather about gathering knowledge about such useful properties in one central location. So if anyone knows of...
  9. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    Hi, no, I didn't ask him yet. I could actually do that, thanks for the suggestion. @Albert D. Kallal : Thank you for your detailed reply. While reading, I wondered when you would get to the point of this thread, but ultimately I feel that your post would be better suited to its own thread, as...
  10. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    Perhaps I should have phrased that differently at the beginning. It's not specifically about compiling a complete list for the sake of it, but rather about gathering knowledge about such useful properties in one central location. I would have thought that uncovering the possibilities this...
  11. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    You mean one would have to add it himself to be able to use it afterwards?
  12. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    @ First: Sure, I could loop the collection, but how to check programatically which of them doesn't exist of a named property in the object model (e.g. in the object browser)? And if I really find some, there will be no explanation/description. @ Second: I don't quite follow what you mean. @...
  13. A

    Overview of subsequently added object properties that are only accessible via the "Properties" collection.

    In the video contained here (https://isladogs.co.uk/aeu-11/index.html), Karl Donaubauer addresses the topic of 'New Properties of Objects'. It deals with properties of various objects that cannot be addressed using "." syntax, but only using the "Properties" collection of the respective object...
  14. A

    Access Europe User Group - Wed 7 Jan: Spot the Difference – A new style MsgBox for Access (Neil Sargent)

    @isladogs: Since you touched on the topic of ‘timeout’ in your article: In addition to the MessageBoxW API, there is a similar one with timeout: Private Declare PtrSafe Function MessageBoxTimeoutW Lib "user32.dll" (ByVal xHwnd As LongPtr, ByVal lpText As LongPtr, ByVal lpCaption As LongPtr...
Back
Top Bottom