Deleting Record

M

m stroup

I have a form which writes to a temporary table. When I hit the submit
button, a macro runs an append query, writing the data to a permanent table
and deleting the record in the temporary table.

This works great, but all the sudden my form has 'deleted?" in each of my
controls. This wasn't happening earlier and I've retraced my steps and can't
find the problem.

How I can refresh the form or prevent the deleted? statement.

Thanks--
Teach me to fish! Thanks for the help.
Pax, M
 
T

tina

try requerying the form at the *end* of the append/delete procedure, as

Me.Requery

hth
 
Top