controls and thier properties

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I avhe an aniamted icon button on a form and one of the properties is
"Value", when I click the animated button it changes from Yes to No and vica
versa.

How do i refer to this actual property and its value so that if it is No i
can then execuate some event within visual basic?
 
If you are referring to it in a procedure in the code module of the current
form, you can use the Me! shortcut:

Me![YourControl].YourProperty

otherwise, use the complete specifying syntax:

Forms![YourForm]![YourControl].YourProperty

Sprinks
 
Back
Top