Clear Option Buttons

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 :)
 
D

Debra Farnham

You want to set the value of the frame not the buttons

try

Me.NameoFramethatHoldsOptionButtons.Value = ""

HTH

Debra
 
G

Guest

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top