Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Active X callendar

Status
Not open for further replies.

76646

MIS
Sep 3, 2002
5
DE
hi,
After creating the callendar in a pop up form , how should I copy that date to the particular text box?
Can someone please help me with this.

 
Hi 76646,

U have chose activex calendar control ? if Yes
select calendar control and then properties and select the control source field (i.e. you text box field name).

Now clicking on the date will copy the date to your text box field

Enjoy

Shyam
 
hi,
but its not working that way. if i do this, i cant select anything from the active x calendar.

 
try this piece of code

Public Sub AXYourCalendarDate_Change()
Me.YourTextBox.Value = Me.AXYourCalendarDate
End Sub

This should do the trick

pr
 
I tried this, but the year always defaults to the current year. If I select 1/1/02, it displays 1/1/03.

Has anyone else encountered this problem?? ---------------------
survane@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top