Keroleen Posted October 2, 2003 Posted October 2, 2003 Purpose: To enable the user to pick any date and automatically insert that date into another textbox on the form. Can someone help me? Quote
*Experts* Volte Posted October 2, 2003 *Experts* Posted October 2, 2003 UseDateTimePicker1.Value.ToShortDateString()to return the value selected in the control. Quote
Mohsen Posted October 3, 2003 Posted October 3, 2003 Try one of these: " textbox.text = DateTimePicker1.Value.ToLongDateString() textbox.text = DateTimePicker1.Value.ToShortDateString() textbox.text = DateTimePicker1.Value.ToString() " for more questions email me on : mohsenfarran@yahoo.com Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.