Simply add another column with a check box on it, in which the user then can
select what records to operate on. you can then test for true and false in
this column and when done reset it back to false. however if you're not a
multi user environment this suggestion will not work.
Another possibility is to use the list box with multiple columns and let the
user select from that. while this box is not updateable, with multiple
columns a list box often looks very similar if not almost indistinguishable
from a continuous form.
I have a few screen shots here that uses continuous forms, and also a list
box, and I highlight some of the differences between using the two:
http://www.members.shaw.ca/AlbertKallal/Articles/Grid.htm
So consider using the list box, and a user can select multiple records from
a list box if you enable multi select ability .
You can also add a check box to the continuous form. I have an example here
on how to actually make it un-bound to function correctly, and it is a
continues form
http://www.members.shaw.ca/AlbertKallal/msaccess/msaccess.html
(Look for the multi select example the above -- well this example actually
sits a filter to a report, it would be to trivial to use the list of id's
generated in a SQL update statement to make the modifications
eg:
strSql =
"update tblTest set SomeField = SomeValue where id in (" & myfilter & ")"
currentdb.Execute strSql
"myfilter" would be the list of id's in the multi-select example I posted.