What Event To Use

R

Robert_DubYa

I have a form that may contain multiple records (part numbers) in it. In the
form I have a boleen that identifies if the record is exists else where (IE
another manufactured location). I want to change the property of a lbl to be
visible (Not visable by default) if the boleen is true. The boleen is
already set in the underlying data so that is not the problem, I just simply
need to know the event that will test a statement after a record is changed.

thanks!
 
J

John Mishefske

Robert_DubYa said:
I have a form that may contain multiple records (part numbers) in it. In the
form I have a boleen that identifies if the record is exists else where (IE
another manufactured location). I want to change the property of a lbl to be
visible (Not visable by default) if the boleen is true. The boleen is
already set in the underlying data so that is not the problem, I just simply
need to know the event that will test a statement after a record is changed.

thanks!

Use the form's OnCurrent event. This is fired each time you navigate to
a new record. It also fires when a form is opened.

--
John Mishefske, Microsoft MVP 2007 - 2010
UtterAccess Editor
Tigeronomy Software
web: http://www.tigeronomy.com
email: sales ~at~ tigeronomy.com
 
S

Steve

If by "after a record is changed" you mean one field, use the AfterUpdate
event of that field. If by "after a record is changed" you mean any of
multiple fields, use the form's Afterupdate event.

Steve
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top