Setting form properties

  • Thread starter Thread starter Ron Bromwell
  • Start date Start date
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
 
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
 
Back
Top