Here is the code for the option group. For some odd reason if I select an option I have to click away, or press tab, before I can select another. If I don't press tab then my clicks do nothing.
Has anyone encountered this before? Is there a way to force something into the vba code of the afterupdate so that a tab does not need to be pressed?
Private Sub opCreditApplied_AfterUpdate()
If Me.opCreditApplied = 1 Then
Me.sfInvoicesAvail.Visible = False
Me.sfInvoicesAvail_Label.Visible = False
Else
Me.sfInvoicesAvail.Visible = True
Me.sfInvoicesAvail_Label.Visible = True
End If
Has anyone encountered this before? Is there a way to force something into the vba code of the afterupdate so that a tab does not need to be pressed?
Private Sub opCreditApplied_AfterUpdate()
If Me.opCreditApplied = 1 Then
Me.sfInvoicesAvail.Visible = False
Me.sfInvoicesAvail_Label.Visible = False
Else
Me.sfInvoicesAvail.Visible = True
Me.sfInvoicesAvail_Label.Visible = True
End If