Click here to Skip to main content
15,885,953 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello all

I'm having issues with the datetimepicker control in VB.NET

When i'm debugging the value it takes its only the hour.

I have short date format.

Any ideas why this control is doing this?

Thanks in advance!
Here is my code:

VB
f.desde = dtpDesde.Value.Date
f.hasta = dtpHasta.Value.Date
Posted
Comments
[no name] 15-Mar-12 20:35pm    
What is the date format on the control?

1 solution

Use dateTimePicker1.Value.Date to get the Date part of this DateTime value.

Do notice though, if you mean to parse into strings, that using
VB
dateTimePicker1.Value.Date.ToString 

will result with the "16/03/2012 10:10:10" string, while using something like
VB
MyString = CStr(dateTimePicker1.Value.Date) 
will result in MyString being "16/03/2012".
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900