Setting form properties

R

Ron Bromwell

I want to set a form property from a different form, when
a command button is pushed. Any ideas on how I can
accomplish this?

Ron
 
M

Marshall Barton

Ron said:
I want to set a form property from a different form, when
a command button is pushed. Any ideas on how I can
accomplish this?

The form must be open to set its properties and then you
would do it by using the full form reference:

Forms!theform.someproperty = somevalue
 
Top