Help updating comments in a text box

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

I have a Continuous Forms filtered by a selection. After
this i am using a inputbox for the user to enter a string
comment. then a msgbox confirming their input.
On selection of the responce of the msgbox,is it possible
for the "str comment" to be placed into a text field
comment box for all of the filtered rows.
 
I don't know if I understand your question correctly but
I'll give it a shot....if you are fitering data from a
table, the easy solution would be to add a field to this
table for your comments, you would just add a comments
field in you form and write into the comments field the
response from the user. If you can not add a field to
your filtered table, you could create a local table to
store your comments with an additional field that
corresponds to you filtered table to be able to link them
together. You would filter then through a query of your
new comments table and your original table linked
together in bring it to your form this way. I hope this
makes sense.
 
Back
Top