L
Larry G.
I want to use a calendar control to allow the user to select a start date and
end date for a range on a report, I have a text box that is named Start_Date
and another named End_Date, I have added a calendar control for each text box
Calendar8 and Calendar9. Each calendar is invisible until a user clicks a
button to bring them up.
My question is how do I get the textboxes to display the date that the user
selects from the calendar control? I tried this:
Private Sub Calendar8_Updated(Code As Integer)
Me.Start_Date.Value = Me.Calendar8.Value
Me.Calendar8.Visible = False
End Sub
But is does nothing. Any help is appreciated more than you know!
end date for a range on a report, I have a text box that is named Start_Date
and another named End_Date, I have added a calendar control for each text box
Calendar8 and Calendar9. Each calendar is invisible until a user clicks a
button to bring them up.
My question is how do I get the textboxes to display the date that the user
selects from the calendar control? I tried this:
Private Sub Calendar8_Updated(Code As Integer)
Me.Start_Date.Value = Me.Calendar8.Value
Me.Calendar8.Visible = False
End Sub
But is does nothing. Any help is appreciated more than you know!