How can I write click command in build event for my form using option button? Here I wrote like that, but when I click option1 it doesn't work. thank you
Code:
private Sub Report_Selection_Click() Select Case Me.Label1 DoCmd.OpenReport "total", acViewDesign Case Me.label2 MsgBox "The job is done !" End Select End Sub
Comment