Ok, first off, wonderfull app! This is great!
I am hoping to use this to create a front end to search our museums archive of letters, which are in an access database. So far, it looks great. The only features I would like to add would be the following...
- The data entry person uses a number to represent the sender of all letters in the archive to save space (and time). Can I have the query translate the number into the name from a different table in the same db?
- I would like to be able to search date ranges. ex 1800 to 1810. Of course this poses two problems, the first of which is to have it know a range, and the second is to search the year only.
My thoughts on these are that they should not be difficult. The first one would just have to use the key value (number used to represent the sender). For the second one, I could use semicolens to seperate the beginning and end to the range. I would just need to have the script recognize that it is a range, and lode the two into variable strings like "01/01/"firstdate and "12/31/"lastdate. There are more possibilities, but I think that would be more than enough to get the job done.
Any thoughts on where to start?