Set radio button to ON with code?

  • Thread starter Thread starter wdeleo
  • Start date Start date
W

wdeleo

Can someone please give me the syntax to set a radio
button to "on" with code?

Thanks so much!
 
Thanks ... but I need a bit more info. What is "me"?

The name of my control is Q1_radio. What would the full
command be?

Thanks again!!
 
assuming that you are setting this on the on open event of a form

me relates to the current form

forms!myform.Q1_radio = true
would do the same thing
 
thanks!!!

-----Original Message-----
assuming that you are setting this on the on open event of a form

me relates to the current form

forms!myform.Q1_radio = true
would do the same thing



.
 
Back
Top