- Local time
- Yesterday, 21:54
- Joined
- Feb 28, 2001
- Messages
- 30,043
Thank you everyone for your insights! I did have the OnError code in the incorrect place, that is after the error occurred.
When I corrected this it worked perfectly!
In regard to the unbound form, I use this as some of the data is used to update other tables as well.
Many thanks again
OnError in wrong place? Now it makes sense as to why no interception. Glad to have contributed in the fix.
In regard to the unbound form, I use this as some of the data is used to update other tables as well.
Your app is yours and I will not try to second-guess it too much. However, you should be aware that repeating data among multiple tables is often a sign of incorrect design. When a database is normalized, it removes a lot of duplication and shrinks the database's table size anywhere from a little bit to a whole lot.
Further, using the data to update other forms still isn't a valid reason to not use a bound form so that you have one less table to manually update. Do as you must for your app, but I hope to offer a little food for thought. My philosophy over the years has been to make the computer do much of my work for me so that I don't have to personally work QUITE so hard. Using the features built into Access would be one example of "work smarter, not harder." PLEASE don't take that as a personal criticism, just take it as an old patootie passing along advice that MIGHT be helpful.