Recent content by tomself1

  1. T

    Changing Default Table Value Using VBA/Macro

    Ahha, we'll see! And cheers for your help! Hopefully it should work perfectly (:
  2. T

    Changing Default Table Value Using VBA/Macro

    Okay, I'll try that. :) And yeah, it's for a shop system. Every transaction has to record the current VAT rate for transaction purposes.
  3. T

    Changing Default Table Value Using VBA/Macro

    Exclusive access isn't a problem! VAT only changes every few years. So something like this? currentdb.TableDefs("myTable").Fields(0).DefaultValue = "NewDefaultValue"
  4. T

    Changing Default Table Value Using VBA/Macro

    Is there a way to change the field's default value straight off then?
  5. T

    Changing Default Table Value Using VBA/Macro

    Oh that's absolutely brilliant! Thank you :)
  6. T

    Changing Default Table Value Using VBA/Macro

    Hi, I'm doing a shop database, and I'm using the default value to store VAT values. Is there a way to change the default value on a number of tables using VBA code or macros? Cheers, Tom.
  7. T

    Shop Database - Finding a Product Via Serial Number and Marking as Sold

    It's a piano shop, so normally only one piano is sold at a time. And in the stock table, I've put each piano as a separate record, as each one has a unique serial number. Ah cheers, I'll have a go at an update query... Tom.
  8. T

    Shop Database - Finding a Product Via Serial Number and Marking as Sold

    Hey, I have a bit of a query regarding a database for a shop. Basically, I have 3 tables: one for customers, one for stock, and one for all the transactions. Each product on the stock table has its own unique serial number. There is also a tickbox field on the stock table, which indicated...
Back
Top Bottom