snap shot question

A

Angel b1

I have a form that’s a snapshot. I’m using a button to update the table
using data from input boxes. I need to keep the form fields bounded. How do
I refresh the form? Since it is a snapshot, control. requery, from.repaint,
from.refresh are not working. Any code will be appreciated.
 
R

Rick B

As stated in your previous post from 10:55...

A snapshot is a saved or emailed version of a printed report. To refresh
the report, you would rerun it. Then you could save it, or email it as a
new snapshot.

The term "snapshop" (by definition) is not going to update or change, it is
a picture of the data at a particular time.

Rick B
 
R

Rick Brandt

Rick B said:
As stated in your previous post from 10:55...

A snapshot is a saved or emailed version of a printed report. To refresh
the report, you would rerun it. Then you could save it, or email it as a
new snapshot.

The term "snapshop" (by definition) is not going to update or change, it is
a picture of the data at a particular time.

A Snapshot is also a type of RecordSet which is what I suspect the OP is
talking about. If that is the case I believe a Requery of the form would
take a new "snapshot" and the changes would be shown.
 
Top