Hello,
I am attempting to populate a textbox with the value from ActiveX Calendar control. THe following works to set the control's visible property = true
Private Sub txtBeginDt_GotFocus()
CalendarBegin.Visible = True
End Sub
however, when I try to set the value using...
Private Sub CalendarBegin_Click()
txtBeginDt.Value = CalendarBegin.Value
End Sub
I get an error message Access can't find the control.
How then was I able to set the Visible property?
Thanks
I am attempting to populate a textbox with the value from ActiveX Calendar control. THe following works to set the control's visible property = true
Private Sub txtBeginDt_GotFocus()
CalendarBegin.Visible = True
End Sub
however, when I try to set the value using...
Private Sub CalendarBegin_Click()
txtBeginDt.Value = CalendarBegin.Value
End Sub
I get an error message Access can't find the control.
How then was I able to set the Visible property?
Thanks