I want to put an option Group on a report with two toggle buttons. Here's my code, you'll get the idea.
Is this possible? When I check for the valuePrivate Sub fraDetails_Click()Code:Private Sub fraDetails_Click() With Me If fraDetails = 1 Then .Detail.Visible = True .Line_Grandchild.Visible = True .lblGrandchild.Visible = True .lblUPC.Visible = True Else .Detail.Visible = False .Line_Grandchild.Visible = False .lblGrandchild.Visible = False .lblUPC.Visible = False End If End With End Sub
The problem is the Option Group doesn't work. There is no stored value in the properties. Do option groups work on a report? With the level of detail I have to put into the code (more than what you see here), this seems the logical place. My next option is to go back to the form that opens it.
What say you?


Option Group on a Report
Reply With Quote
