I have a databse created in access 2003 which has a numebr of forms that contain calendar controls, when you click on the control the error message
"Run time Error 2683 there is no object in this control" is reported
If I debug the code behind the control is
Ant ideas what the problem is, my VBA skills are a long way out of date so any pointers would be useful.
Thanks.
I love deadlines. I like the whooshing sound they make as they fly by
Douglas Adams
(1952-2001)
"Run time Error 2683 there is no object in this control" is reported
If I debug the code behind the control is
Code:
Private Sub cmdCalFrom_Click()
Me.CalendarFrom.Visible = True
If Not IsNull(Me.txtstartDate) Then
Me.CalendarFrom.Value = Me.txtstartDate
Else
Me.CalendarFrom.Value = Date
End If
Exit_cmdCalFrom_Click:
Exit Sub
Err_cmdCalFrom_Click:
MsgBox Err.Description
Resume Exit_cmdCalFrom_Click
End Sub
Ant ideas what the problem is, my VBA skills are a long way out of date so any pointers would be useful.
Thanks.
I love deadlines. I like the whooshing sound they make as they fly by
Douglas Adams
(1952-2001)