Clear Option Buttons

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

Guest

Hey all, the answer to this is probably simple as heck, but i'm just not
finding it... i have a form that has an option group on it with radio
(option) buttons. The form functions as a front-end for entering data to
print a report on form-fed multi-layer waybills. What i want is to include a
RESET button that clears all the textboxes and option buttons... i've been
playing with some code such as: ("dind" is the name of one of the option
buttons)
dind = False
dind.value = false
forms.(form).dind.value = false

etc, but i always get an error saying i cannot assign a value to this item

thanx in advance for your help :)
 
You want to set the value of the frame not the buttons

try

Me.NameoFramethatHoldsOptionButtons.Value = ""

HTH

Debra
 
i knew it had to be something simple... that was another thought that briefly
crossed my mind... thanx!!!
 
Back
Top