Calender Control problem

  • Thread starter Thread starter Bill Davis
  • Start date Start date
B

Bill Davis

I am trying to use the calendar control from MS Knowledge
Base Article 190194.
When I entering the routine for the calendar control
On Click to SetFocus, the only item that comes up
is "Value", it will let me enter SetFocus but when I run
the form I get "Complie error: Method or data member not
found 461. I have used this control in another database
and it work fine.
Thanks in advance
 
By chance do the field and control have the same name? If so change the name of the
control (i.e. Field Name is Field1, change control name to txtField1). Try prefixing the
line with Me.

Me.ControlName.SetFocus
 
Back
Top