S
scottyboyb
Greetings, another trip to the well. The following code works except for:
Me!grpHowPaid.Value = ""
Here is the code. It is in the after update and form current events. Can
someone please tell me what little secret I do not know about deleting values
in option groups?
Private Sub chkPaid_AfterUpdate()
If Me!chkPaid = False Then
Me!txtPaymentDate.Visible = False
Me!grpHowPaid.Visible = False
Me!txtPaymentDate.Value = ""
Me!grpHowPaid.Value = ""
Else
Me!txtPaymentDate.Visible = True
Me!grpHowPaid.Visible = True
End If
End Sub
Many thanks,
Scott
Me!grpHowPaid.Value = ""
Here is the code. It is in the after update and form current events. Can
someone please tell me what little secret I do not know about deleting values
in option groups?
Private Sub chkPaid_AfterUpdate()
If Me!chkPaid = False Then
Me!txtPaymentDate.Visible = False
Me!grpHowPaid.Visible = False
Me!txtPaymentDate.Value = ""
Me!grpHowPaid.Value = ""
Else
Me!txtPaymentDate.Visible = True
Me!grpHowPaid.Visible = True
End If
End Sub
Many thanks,
Scott