Search results

  1. D

    Question Access 2007 runtime and it's perfomance

    It works now, thx.
  2. D

    Question Access 2007 runtime and it's perfomance

    I don't ever use that sort/filter/binoculars included in Access, I have my own search, filter, sort functions and also global error handling routines because this is more suited for me. I never use macros, and I don't want customer to full around to much and everything in my application is...
  3. D

    Question Access 2007 runtime and it's perfomance

    Thx, looks like your link doesn't work. (maybe just for me)
  4. D

    Question Inno setup installer

    Until now I was using that great installation script for INNO installer to install Access97 runtime. It worked great, Access 97 could work no matter which version was installed on target machine and he didn't messed up anything. This new Microsoft package program is good for some basic...
  5. D

    Question Access 2007 runtime and it's perfomance

    Hi, I have about 11 applications written in good old Access 97. Some of them are small and some of them are quite large (over 160 forms, 200 queries, 150 reports ....). In some cases some of them in some tables can have over 500.000 records. Until now I was happy with Access 97, but many of...
  6. D

    Creating collection

    Thank you very much.It works. :)
  7. D

    Creating collection

    Thx for answer Banana, I managed to do the following function which is started when application is launched. Public Function ClassFill() Dim PrintersColl As New Collection ' Create a Collection object. Dim rst As Recordset, dbs As Database Set dbs = CurrentDb()...
  8. D

    Creating collection

    Hi, Is it possible to create a new collection, fill it with values from some table and that that collection can be accessible from any module or form after program is started. I would like to use collection as public variable for storage of some variables which will be used very often inside...
Back
Top Bottom