G
Guest
Hello,
I'm using Access 03. I have a form that tracks client phone calls. For
each phone call made, we create a record with CallDate, Subject and
FollowupDate as the fields. Another field is called SelFollow which is an
unbound combo box containing choices: 1 Day, 2 Days, 7 Days, 30 Days, etc.
and is used to select and insert the date in the Followup Date field.
To calculate the followup date, I am testing the following code on the
AfterUpdate event on the SelFollowup field:
Private Sub SelFollowup_AfterUpdate()
If SelFollowup.Value = "1 Day" Then followup Date = CallDate + 1
End Sub
When I click on SelFollowup combo box I get the following error message:
Member already exists in an object module from which this object module
derives.
I've searched through the groups to see if I can figure this out but no
luck. Can anyone help? Thanks much.
I'm using Access 03. I have a form that tracks client phone calls. For
each phone call made, we create a record with CallDate, Subject and
FollowupDate as the fields. Another field is called SelFollow which is an
unbound combo box containing choices: 1 Day, 2 Days, 7 Days, 30 Days, etc.
and is used to select and insert the date in the Followup Date field.
To calculate the followup date, I am testing the following code on the
AfterUpdate event on the SelFollowup field:
Private Sub SelFollowup_AfterUpdate()
If SelFollowup.Value = "1 Day" Then followup Date = CallDate + 1
End Sub
When I click on SelFollowup combo box I get the following error message:
Member already exists in an object module from which this object module
derives.
I've searched through the groups to see if I can figure this out but no
luck. Can anyone help? Thanks much.