Recent content by AHeyne

  1. A

    Access vs Comercially available databases

    It should be mentioned that SQL Express does not include SQL Server Agent. You have to script database maintenance and backup yourself. That's a disadvantage in a professional environment.
  2. A

    Solved Get A Pointer In SubForm To Already Instantiated Class

    I assume that ‘static class’ here refers to a class whose ‘VB_PredeclaredId’ attribute is set to ‘True’? For the sake of simplicity, I always refer to it as a ‘static class’ too. But technically speaking, it is simply a class of which a default instance exists in VBA, which can be used simply...
  3. A

    Solved Determine What Code Is Still Running?

    When an event such as 'On Load' of a form is raised, you can not only respond to it using code in the corresponding module of the form (Code Behind Form) (in which case the event property would contain '[Event Procedure]'). You can also enter the name of a function with the corresponding scope...
  4. A

    Batch file for updating local frontend Access database copy

    If you use a PowerShell script you could sign it with a certificate and thus protect it against execution if it has been modified.
  5. A

    Batch file for updating local frontend Access database copy

    No, sorry for not specifying that. We use a self-created EXE (C#) as a startup program for our Microsoft Access application. This ensures that the necessary files are copied from the network to the client, searches for/finds the installation location of MsAccess.exe, checks whether it is 32-bit...
  6. A

    Batch file for updating local frontend Access database copy

    But if neither of them is on the client yet, then no. A script or an exe file can specifically address this case. But okay, it all depends on the environment you find at your customers' premises.
  7. A

    Batch file for updating local frontend Access database copy

    The reason we value a decompiled version of the accdb is that we have had problems in the past when different versions of Access were running on the clients. Some locations were unable to use the precompiled code of a (non-decompiled) accdb and refused to run but threw errors. With a decompiled...
  8. A

    Batch file for updating local frontend Access database copy

    In my opinion, the biggest disadvantage of a loader access database is that you first need to have a running Access environment on the client, otherwise nothing works. With a batch file or your own exe (which is how we do it), this is not necessary. In addition, we always copy the front end...
  9. A

    Batch file for updating local frontend Access database copy

    In a domain you can add trusted locations also via group polices (some of our customers do that). ;)
  10. A

    Access instance remains in memory once closed

    That's a good point. :)
  11. A

    Access instance remains in memory once closed

    Maybe the version of Windows 11 makes a difference? I've in my mind that 24H2 is more buggy than others...
  12. A

    Access instance remains in memory once closed

    I don't want to make it unnecessarily complicated, but I haven't even mentioned my operating system yet. However, I use Win 11 23H2, not Win 10. ;)
  13. A

    Access instance remains in memory once closed

    @KitaYama : Simply waiting a few seconds more instead of executing "Set acc = Nothing" doesn't help too? So the variable has definitely to be set to Nothing?
  14. A

    Control Tip Text flashing

    No flashing/flickering of control tip texts on form "frm_Edit_Publications" here on Access 2019 64-bit fully patched.
  15. A

    Access instance remains in memory once closed

    @Gasman: I just checked the minimal code @CJ_London provides in #4 that doesn't contain GetSystemMenu.
Back
Top Bottom