I have a tiny little Access form with the following code

VB Code:
  1. Private Sub Form_Load()
  2.     Label41.Visible = False
  3.     ctlDate.Value = Date - 1
  4.     strDateName = "AdmitDate"
  5.     strDownloadType = "All"
  6. End Sub

When opening this form I get the following error message:

There is no object in this control

It then highlights the "ctlDate.Value = Date -1" line.
What...the...hell?

I do have a control on the form named ctlDate so I am lost here.