Search results

  1. D

    Add multiple files to ListBox

    basically take a copy of your database, delete anything not relevant, delete any data if it's confidential (for this issue I'm not sure any data is required anyway. then upload it here by going into advanced mode (button next to "post quick reply" and attach the file.
  2. D

    Add multiple files to ListBox

    a sample of your database - i don't need the files you are trying to attach
  3. D

    Query to total all numbers in a column

    you're welcome. glad you got it all sorted.
  4. D

    DMax, incrementing number, creating duplicate values

    Change the field from text to number
  5. D

    Add multiple files to ListBox

    can you post a sample?
  6. D

    DMax, incrementing number, creating duplicate values

    So does the field called NCRNumber just contain the incremented number or does it contain the year as well? can you post a sample?
  7. D

    Add multiple files to ListBox

    the first thing I would do is add some debugging code lngFlags = ahtOFN_ALLOWMULTISELECT Or ahtOFN_EXPLORER Dim result As Variant result = ahtCommonFileOpenSave(InitialDir:="C:\", _ Filter:=strFilter, FilterIndex:=3, Flags:=lngFlags, _...
  8. D

    Add multiple files to ListBox

    Do you get an error?
  9. D

    Seeking advice to attempt Vehicle Database Tables (template based) Access2007

    As far as I am concerned a user specifies how they want the system to work.. and they have no need to know how you achieve that. Most users don't have a clue about table layouts and normalisation... they don't need to know... just like I don't know how to do thier jobs. As for the junction...
  10. D

    Seeking advice to attempt Vehicle Database Tables (template based) Access2007

    I am an MVP but that doesn't mean that I am not capable of being wrong... but in this case I still hold that 1 table is the most flexible way of doing it (and generally the most flexible way is the right way). No - you have a seperate junction table which will allow you to add seperate company...
  11. D

    Query to total all numbers in a column

    Here's an example (it's not pretty :) )
  12. D

    Query to total all numbers in a column

    I'm not exactly sure what you are trying to do (I don't know your data structure or report layout) but have you tried =Sum(Nz([Outstanding Bal],0))
  13. D

    After Insert Trigger

    The ID field in the inserted table should match the ID in T1. The data in inserted is a match of the inserted data - I believe that the field in the inserted table will just be a long integer. (i.e. no identity auto increment)
  14. D

    Seeking advice to attempt Vehicle Database Tables (template based) Access2007

    Sorry I missed your edit or you were typing it when I was typing my message. As I say you can do it the other way.. but I wouldn't recommend it. I am welcome to hear any other opinions on the subject but I honestly can not think of a good reason not to store records of the same structure in the...
  15. D

    After Insert Trigger

    do you really need to match all the fields from T1 and T2? Seems to me that using the ID (which is probably indexed) on it's own should be faster. I would imagine that the speed improvment would probably be marginal but if this trigger runs a lot then a lot of little savings soon add up.
  16. D

    Seeking advice to attempt Vehicle Database Tables (template based) Access2007

    For the reasons I posted above I don't believe having seperate tables is less work. It's the sort of thing that will be fine for a while and then you'll need to add a field and then you have to add it to many tables and many forms. As I also stated once you have a supplier who also buys a car...
  17. D

    Seeking advice to attempt Vehicle Database Tables (template based) Access2007

    having seperate tables for the same information means that you either need seperate forms to edit that information of that you need to start editing your forms recordsource at runtime.... these are both unnecessary things that add complexity where it really isn't needed. You also have the issue...
  18. D

    Append Query for Unique fields...

    Are you saying you only want to append the records if the orderID is not already in the table already? If so then use a sub query. In the criteria for the orderID add in NOT IN (SELECT OrderID FROM YourTableNameThatYouAreAppendingTo) If you are saying that the query is returning multiple...
  19. D

    Update unbound field

    Why is the field unbound if you want it to update the table... why not just bind the control?
Back
Top Bottom