Re: Clear option group
Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance
On Sat, 10 Mar 2007 17:37:32 GMT, Ivor Williams wrote:
I have on a form an option group with two check boxes. On occasion, I may
want to clear both check boxes. Is there a way to do this?
Ivor
Add a 3rd button (I'll assume it's value is 3).
Code the OptionGroup AfterUpdate event:
If Me![OptionGroupName] = 3 Then
Me![OptionGroupName] = Null
End If
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
.
Relevant Pages
- Re: Update Table from Form
... calling for 2 text boxes. ... Please respond only to this newsgroup. ... I do not reply to personal e-mail ... (microsoft.public.access.forms) - Re: how to create a query to handle "No Such Data Found"
... values to diaplay on a form, however, sometime data of combination of ... Found" and be also direct back to combo boxes menu. ... Please respond only to this newsgroup. ... I do not reply to personal e-mail ... (microsoft.public.access.queries) - Re: From text box to field
... but I'm lost for the answer. ... have two text boxes in a form: one for FirstName, ... Please respond only to this newsgroup. ... I do not reply to personal e-mail ... (comp.databases.ms-access) - Re: How do I wrap text in a list box?
... boxes in the print preview view. ... drop-down list portion will still be just one line). ... Please respond only to this newsgroup. ... I do not reply to personal e-mail ... (microsoft.public.access.tablesdbdesign) - Re: merge with an "online form" problem with text box
... I definitely used the forms toobar and not the Controls toolbox with the ... "Charles Kenyon" wrote: ... > This message is posted to a newsgroup. ... >> had to be a reason my text boxes were misbehaving. ... (microsoft.public.word.mailmerge.fields) |
|