I’m Getting numeric value of “DateTimePciker.Date” at run time. But i want value like ’08/10/2012′. How to get DATE value instead of Numeric value?
show picture of runtime:

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
TDateTimeis not shown as you expect in old Delphi versions.TDateTimeis a float type, and that’s exactly normal for the debugger to display the float value. You might consider converting it usingDateTimeToStr()if you need to see the value.