Search results

  1. D

    Access 2024

    Thanks for all the advice and info, guys. The one advertised doesn't appear to be an LTSC version; My current software is an LTSC version as I had worked for the local uni and got it for free. I will do a little more research and see ehat comes up... Dave
  2. D

    Access 2024

    I'm using Office Pro 2010 and thought I might upgrade to a non-subscription MS Office Pro Plus 2024. Does anyone know if the Access version is a 2024 version and are there many changes since 2010? For ~£30 it's a steal. Is it?
  3. D

    The Name function

    Thanks for that. It is an interesting routine and I will take it away and try it out. Dave E
  4. D

    The Name function

    I tried your idea of changing Name to VBA.Name without success. These two lines were typed in and the newname has a missing backslash for the newname. That oldname (that which is stored in the db) has been used, in the syntax shown above, without error, for many years.
  5. D

    The Name function

    It isn't about the error message so much as the strange appearance of the table's name over the Statement.
  6. D

    The Name function

    The query for the table "ImageTest" is: SELECT ImageTest.Tot, ImageTest.ID, ImageTest.LatinName, ImageTest.Picture, ImageTest.Corrected, ImageTest.Correct FROM ImageTest ORDER BY ImageTest.Tot; Hmm...there is a slash after the C:
  7. D

    The Name function

    It works with all the filenames that use single apostrophes and have plantname and stored name matching. There are over 400 plants in the db and only a small percentage have thrown up the problem. It seems odd that MS have a listed statement using Name oldfile As newfile. But the MS site shows...
  8. D

    The Name function

    Thanks for that. The code section I submitted is just the crux of the problem. In previous code, the Stored path/filename ([Picture] in the db MainTable) is copied to a new table, "ImageTest" together with the MainTable [LatinName] for the corresponding record IF its filename doesn't match...
  9. D

    The Name function

    Hi all, I have never used the Name statement before and I want to rename some filenames to match the path/filename stored in the db. The format is Name oldname As newname Myset.MoveFirst Do Until Myset.EOF TableName = Myset![Picture] FolderName = "C:\Access Files\OurGardenPics\" &...
  10. D

    Saving records

    Hi Isaac, Now, I'not sure which function you are referring to so I will offer the code for the IsNothing() function Function IsNothing(varToTest As Variant) As Integer ' Tests for a "logical" nothing based on data type ' Empty and Null = Nothing ' Number = 0 is Nothing ' Zero length string...
  11. D

    Saving records

    In this case the Date is generated, not selected or input by a user. The code detects when a set period has elapsed and then recalculates the new one as a DateAdd('d', 30, Date). That is then saved to the holding table and used by the relevant form's OnOpen routine which looks at the saved date...
  12. D

    Saving records

    I simply wrote a function that opens a recordset for one table, one record, with two fields and the same unique ID. When used, a new date is saved to the table as in - MySet.Edit MySet![ReminderDate] = Forms!MyForm!ReminderDate MySet.Update It works. I have set up two fields on the main...
  13. D

    Saving records

    Yes Pat. Thanks. I have written the code for two forms that take and put data into a table. It works well, and I was content to write the code knowing there wasn't a pre-existing function available. It does seem odd that one doesn't already exist in Access when the DLookUp function is commonly...
  14. D

    Saving records

    Thanks. I will write a DPut function and try an UPDATE function to see which is best for me. Dave E
  15. D

    Saving records

    I knew that you'd pop up with a definitive reply. The comment was a tad tangled but I wasn't, nor am I a newbie, having written many database programs for my uni and personal use, such as the one that keeps me occupied during my retirement. I will go ahead, now, and try out a function and an...
  16. D

    Saving records

    Yes. It looks like either a function, which I'm going to try, or an UPDATE query and see which one fits my purpose. It seems odd that it's possible to use a function like DLookUp to get data from a table but not be able have a DPut function to put data into a table. Still, now I see there isn't...
  17. D

    Saving records

    Yes, it was a befuddled question, and it deserved your response. Basically, I have a new table with 2 fields, both containing dates. One for Reminders and one for a ToDo list. The two fields hold the dates for the next date action required for the monthly/seasonal work required in the garden and...
  18. D

    Saving records

    It was a rather clumsy attempt at a question, having read it back. But what you have suggested looks like what I want. I'll take a browse thru the list and, as you suggest, keep it for future reference. Thanks for that. Dave E
  19. D

    Saving records

    OK Chaps, and Chapesses I have a form with an underlying table containg many records. Just lately, I was thinking of adding a couple of new fields which exist only once in a table with two fields. These fields contain the dates when an action needs to be triggered, which are generated, but not...
  20. D

    Google search

    I'm losing it...I must be getting too old for this databasing lark. I'm beginning to wonder which will come to an end first, me or MS Access :-) I rebooted the PC and it's all OK.
Back
Top Bottom