Similar Threads:
1.making option groups visible/invisible based on another option group selection
I have a form on which there are 3 option groups. my
first option group determines which of two other options
groups will be visible to to user. I have placed the
following code in the afterupdate event of the first
option group. I know it's wrong. Can someone help me out
with the correct code?
Private Sub Request_Type_Frame_AfterUpdate()
'Hide or Unhide Purpose Frame
'Request Type either 1 or 2
Select Case Request_Type_Frame(Request_Type)
'If Request_Type is 1 Show only Sponsorship frame and hide
Consulting frame
Case 1 Sponsorship_Purpose_Frame.Visible
'...I'm not sure how to make the Consulting_Purpose_Frame
invisible here
Consulting_Purpose_Frame.Visible = False
'If Request_Type is 2 show only Consulting Frame and hide
sponsorship frame
Case 2 Consulting_Purpose_Frame.Visible = true
'...same here for the Sponsorship_Purpose_Frame here
Sponsorship_Purpose_Frame.Visible = False
End Select
End Sub
Your help is much appreciated!!
Emma
2.Option Group within another Option Group?
I want my form to have two "nested" option groups. The first option is
"Existing Employee" and the second option is "New Position". If the first
option is selected, I want additional information to appear that allows the
user to put in a desk location number. If the second option is selected, I
want the user to be able to select the date that the new position has been
budged for (i.e., 2005, 2006, 2007, etc.)
It would be nice if the detail information below each option (desk number,
or date position is budgeted for) doesn't appear unless their relevant
"first" option has been selected. Does that make sense?
I tried an option box with the two options "Existing Employee" and "New
Position", but when I added the dates under "New Position", I didn't know how
to link that to ony the "New Position" Option.
Any help is greatly appreciated!
K -
3.Question with Option Groups and Check Boxes
Hello, I have a question regarding the use of combo boxes on a data entry form.
I was wondering, is it possible to cause the option group or check box to
return to the default value after entering the current record (aside from
making the end user click a seperate 'refresh button' after every entry along
with the standard 'next record button).
Currently, the form keeps the value selected, which means that in the case
where it does not need to be selected, it must be unselected.
Thanks in advance for your help in resolving this issue.
4.Unbound option group question
I have a option group which is unbound as i use it to enter text via:
Private Sub optward_AfterUpdate()
On Error Resume Next
Me.[ward] = Choose([optward], "First Text", "Second Text", "Third Text",
"forth text", "fifth text", "sixth text") please ignore text wrap
end sub
however since adding this code, when i use a command button to move onto the
next new record the toggle buttons do not reset, and the selection remains.
how do I reset the option group to be as a new entry?
Your help is appreciated as always,
steve
--
steve adlam
5.Help with option group code
Hi All,
I have an option group (called options) with 4 values in it. I also have a
command button on the page.
What I need to happen is once the user has selected an option and clicked
the command button another window pops up with an input field which the user
than needs to fill out and press ok which will then run a query which is
filtered by the users input. Make sense? :)
Hope someone can help with the code, just a snippet of what is required
would be great.
Cheers,
Andrew
6. Option Group - Question
7. Access Option group question
8. Option Group Value Question