Search results

  1. A

    Unable to create .accde

    To question #1: My experience has taught me to always create an ACCDE with the oldest required Access version. There was always trouble the other way around. But I have to admit that I haven't tested how it currently behaves for an estimated 10 years... To question #2+3: Unfortunately, I can't...
  2. A

    Emmanuel Katto Dubai : How to Create Professional Form Styles in Access

    Now we know where the AIs get their knowledge from... :ROFLMAO: ;)
  3. A

    Unable to create .accde

    'Decompile/Compact' the accdb first can help too.
  4. A

    Solved Pass Parameter from Form to Report

    You are passing your criteria to the parameter 'WindowMode' of 'OpenReport'. So check the commas.
  5. A

    Access Not Using Default Database Folder

    Asked by the same user... ;)
  6. A

    Solved Datasheet: Different back colors for columns and alternate row colors

    Hi Philipp, unfortunately there seems to be no built-in indicator/constant in conditional formatting syntax representing the row to be formatted. But if you could provide a column with an ascending number somehow in your forms recordsource, then you could use this approach. Given a column...
  7. A

    Understanding form event progression

    And in the next stage of programmer enlightenment, you also remember how to fix it... :cool:
  8. A

    Database slow on terminal server running Access Runtime

    What does it look like when you use a Runtime locally on a client? Maybe it's the runtime in general? Have you compared the patch level (Microsoft Access version/build) of your Access full version with that of the runtime used?
  9. A

    Notify user after completion - FlashWindowEx

    Private Const FLASHW_STOP = 0 'Stop flashing. The system restores the window to its original state. Private Const FLASHW_CAPTION = &H1 'Flash the window caption. Private Const FLASHW_TRAY = &H2 'Flash the taskbar button. Private Const FLASHW_ALL = (FLASHW_CAPTION Or FLASHW_TRAY) 'Flash both the...
  10. A

    VBE custom code colors (syntax highlighting)

    Thanks for the answer, I compile and save too often rather than too little and do not have the problem described. But for the back of my mind, I'm interested to know if there is any insight into the setting mentioned.
  11. A

    VBE custom code colors (syntax highlighting)

    Have you received any further information on this setting? How were your trials?
  12. A

    Solved Managing SQL Server Logins in MS Access Frontend

    Thanks @Josef P. , thats annoying.
  13. A

    Solved Managing SQL Server Logins in MS Access Frontend

    It looks like my suggestion has been completely deleted. Thank you Microsoft.
  14. A

    Solved Managing SQL Server Logins in MS Access Frontend

    Forgot to post the link: https://feedbackportal.microsoft.com/feedback/idea/051eedaa-5068-ef11-a4e6-000d3a02a3a1
  15. A

    Solved Managing SQL Server Logins in MS Access Frontend

    Done. But we all should do that, or second my request. ;)
  16. A

    Solved Managing SQL Server Logins in MS Access Frontend

    Maybe the Access team would add a procedure like 'ClearCredentialCache'?
  17. A

    Insert entry in table with only default values

    Your table has no primary key?
  18. A

    Custom event whine

    This could have been written by me... :) (y)
  19. A

    Custom event whine

    Perhaps you have decompiled and compacted your database file in the meantime? This cleans up some stuff. It wouldn't be the first time this has been a cure for fancy problems.
  20. A

    Custom event whine

    It's hard to follow your explanations just mentally, but what immediately popped into my head was whether you might have created circular references of two or more objects that prevent each other from being deleted by the garbage collection...
Back
Top Bottom