Recent content by gemma-the-husky

  1. gemma-the-husky

    Updating from Access 2013 to 365?

    I actually found it quite tricky to find and download, and to install 32bit on my new machine. It was tricky removing all the parts of 64bit office that were installed by default, and which prevented the installation of 32bit.
  2. gemma-the-husky

    Solved Why an overflow?

    It's only very rarely that I use anything other than long for a discrete value.
  3. gemma-the-husky

    Cumulative Total with a Curve Ball

    @MattBaldry Personally, I would avoid trying to store a cumulative/running total in a table. I don't see the point especially as changing the sort order will change the running total. Can you not find a way to use the overall total of a (data)set to produce what you want?
  4. gemma-the-husky

    How to display table size?

    Isn't it sufficient to count the records in each table? Why is the table size critical?
  5. gemma-the-husky

    How can I read newly received invoice files without having to re-read the old ones?

    I haven't read the whole thread. I would tend to either rename a processed file, or move it to a different folder, or even both. Then you only have the new files to consider. In any event, I would still check for duplicate documents in any imported file, as it's quite possible you will receive...
  6. gemma-the-husky

    VBA class modules & factory design

    Will you be able to re-use these class modules in other apps? If you need to budget for many companies, then I can understand perhaps. If it's only one company then I struggle to see the point. In fact, budgeting is one area where I found it easier to use excel. I had an excel template that...
  7. gemma-the-husky

    Solved Transforming database from 2010 model or higher to 2003.

    It's not creating a new dbs though. It's taking an accdb, and trying to revert it to a mdb. It can't be easy even if there are no advanced features. Maybe you can't even copy and paste objects from an accdb firm on to a mdb blank form. No doubt you can copy and paste code though. I'm not sure...
  8. gemma-the-husky

    Documents and/or pictures in my DB

    You can create you own menus. Do you mean the switchboard. Just import an A2003 switchboard and switchboard items table. It still works fine. That's what I use. A modified version, but A2003 code. You don't want to insert objects into a database. Just link to the file and windows/ access will...
  9. gemma-the-husky

    Solved Transforming database from 2010 model or higher to 2003.

    No. A2003 was mdb only. Mdb will still run on current versions. When you change an mdb to an accdb you get warnings, so I guess it's not trivial to reverse the process even if you don't use advanced constructs.
  10. gemma-the-husky

    Update of stock quantity

    If you can find it, I actually think the best inventory database was a MS template I called Dharamsala Tea. I called It that because that was the first product. Just a brilliant example. The only thing I changed was to have stock movements inwards as positive and outwards as negative so you...
  11. gemma-the-husky

    Update of stock quantity

    If you have a lot of transactions though, one thing you can do is for individual (or all) products is undertake stock counts, and adjust your records to store an updated starting point for the stock calculation. if you struck a balance at say 1st August 2025, then you only have to sum 1 months...
  12. gemma-the-husky

    Re-design a wellworking data base

    When you go to login, the 2fa sends you a code to your phone (well mine does). You don't see the "send the code" button until you scroll down, and the number boxes are enormous. Maybe I've enabled accessibility options somehow. And a different thing, it's functionality rather than layout, but...
  13. gemma-the-husky

    Solved Determine What Code Is Still Running?

    So there's an active structure in memory that would be de deleted/released by resetting the program. Wouldn't you get the same if you created a pointer to a remote table to maintain a permanent connection to the data. That would also be deleted on resetting the program, wouldn't it?
  14. gemma-the-husky

    Remote desktop vs. browser based web apps.

    @BlueSpruce I imagine this is the sort of thing that if you don't know the answer might take a lot of time and resources testing to find out.
  15. gemma-the-husky

    Solved Determine What Code Is Still Running?

    I don't quite understand. Do you mean there is no active event, but the program is still running and waiting for an event/interruption, (ie there is an open form) and therefore still won't allow certain code to be changed. The user would actually have to reset the program in order to make code...
Back
Top Bottom