Similar Threads:
1.Option group value in an unbound text box.
I would like to create an option group with several checkboxes which
populates a "text value" into an unbound text box on the same form.
I created the option group and the unbound text box. I have tried creating
IIf statements in the AfterUpdate Event for the option group, but can't
figure out how to make it update the text box. The only thing that shows in
the text box is #error
2.Option control group unbound
I have a group control that has 8 option buttons and is not bound to the
table. if one of the option buttons is selected how do I know which one? do I
check the group of each option button. I have not found in the group where
the result would be nor have I found where the result would be in the
individual option.
--
Les
3.Unbound option group
Hi all,
I have created an unbound option group of radio buttons. However, the
buttons are displayed as grey, and I can't select any of them. Making the
frame default value equal to one of them, has it selected upon form load,
but still I can't select any other choices.
What have I missed?
A
4.Referencing Unbound Option Group in Query
I have a form I'm using to collect data to search a table. One field is
called "DateComp" data type of Date. I don't want to use actual dates to
search by, simply provide an Option Group with "Completed", "Open" (value of
2) or "All". The Option Group "Status_Grp" is unbound since the data type of
the underlying field is different.
In the query the criteria for the DateComp I've tried:
IIf([Forms]![1_Main]![Status_Grp]=2,"Is Not Null")
IIf([Forms]![1_Main]![Status_Grp]=2,"Is Null")
IIf([Forms]![1_Main]![Status_Grp]=2,"*")
For testing purposes I'm trying to match just one of the fields, if I can do
that, nesting will be easy hopefully I'm running out of hair.
I've tried with and without quotes, tried adding Like in front. All results
yield zero records. This is the only criteria in the query so far. Am I not
referencing the group correctly?
~Lori
5.Unbound option group writing text values...
Hi,
I have an interesting and extremely annoying problem with my option group!
I have setup an option group with 3 options; ption 1 ption 2and
ption 3 These options are not bound to a field as the field must store
these options in pre-determined text format and not numerical (i.e. 1, 2 or
3). Instead I have hidden the bound field ignoffand set the options
depending on the value in this hidden field. I have done this through the
forms n Currentevent:
Private Sub Form_Current()
If Me.SignOff.Value = "Option 1" Then
Me.OptionGroup = 1
ElseIf Me.SignOff.Value = "Option 2" Then
Me.OptionGroup = 2
ElseIf Me.SignOff.Value = "Option 3" Then
Me.OptionGroup = 3
Else
Me.SignOff.Value = ""
Me.OptionGroup = 0
End If
End Sub
In order to set the field to the option selected I have set the option
button n Got Focusevent:
Private Sub Option62_GotFocus()
Me.OptionGroup = 1
Me.SignOff.Value = "Option 1"
End Sub
This works fine, except when I actually set an option button. When I set the
first record option button to ption 1 the second option button is
unaffected, however the third record option button, which was previously
blank, is now being set to ption 3!?!
Please help.
Thanks in advance,
Dave
6. Unbound option groups and form's RecordSource in Access 2007
7. Another Unbound Form with Option group Problem
8. Passing info from unbound option group to table fields