Thank you for your answer. I wasn't sure how to do the query and the update
query at the same time. I kept getting an error message about using an
updateable query. I finally figured I'd use the first query to build a table
with the data, then used that table to update to the table with the field
Exported (Y/N). It works fine and it was helpful to have a temporary table
that is cleared before each export. I've added a small menu that allows a
cancel event if the person isn't sure if the previous checks were printed, so
they don't write over the exported file before printing happens (which could
be later in the day).
I appreciate all the help I receive on this board. Thanks to all of you for
taking the time to answer our questions!
Connie
Building in a reversal capability in case the printing fails, definitely
adds value to your app! Just note that temporary tables contribute to
database bloating, so it would be wise to take some measures toward
regular compaction of the database.
If this is a monolithic, single user database, or a split one in which
the temporary table resides in the local front end, then just setting
the Compact on Close option is all you need.
If, on the contrary, the temp table resides in a back end on a shared
folder, you'll probably need to employ other means for overnight
compaction, or compaction by the first user to open it in the morning
(from the FE, before it connects, or a small VB 6.0 exe which compacts
and then launches the FE), or something like that.
HTH,
Nikos
Connie - 09 Aug 2005 15:27 GMT
Thanks for the added info. I am placing the temp table in the FE of the
person that will send the checks to print. Also I compact on close. This
should keep it clean.
Connie
> Building in a reversal capability in case the printing fails, definitely
> adds value to your app! Just note that temporary tables contribute to
[quoted text clipped - 11 lines]
> HTH,
> Nikos