Getting right date value

R

Robert Crandal

I setup my DTPicker control to be used only
as a date control, yet I'm noticing that sometimes
it will give back a date AND a time all in the
same "value" variable.

Since it appears that a variable of type "Date"
can give back both a date and time, how can I
eliminate the time half of a date value???

I might not be able to exactly control the DTPicker
control to give me JUST a date, so I'm just curious
what to do if it gives me back both a date & time.


thank u
 
M

michdenis

Hi,

Try this :

Dim x as date
x = cdate(clng(DTPicker1.value))



"Robert Crandal" <[email protected]> a écrit dans le message de groupe de discussion :
[email protected]...
I setup my DTPicker control to be used only
as a date control, yet I'm noticing that sometimes
it will give back a date AND a time all in the
same "value" variable.

Since it appears that a variable of type "Date"
can give back both a date and time, how can I
eliminate the time half of a date value???

I might not be able to exactly control the DTPicker
control to give me JUST a date, so I'm just curious
what to do if it gives me back both a date & time.


thank u
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top