Hello Ahmed,
Thanks for your answer, it is going to help me for sure.
However what I was looking for is the control's possibility but it looks
like we cannot access to the different sections of the time control.
I already did this job years ago in C++ by grouping textbox and spin control
into a dialog but I expected that the C# control encapsulated this for us.
Once again, thanks a lot.
Pierre

Signature
Pete
> > Hello,
> > I am using a DateTimePicker set to retrieve time information only. I would
[quoted text clipped - 17 lines]
>
> Hope this answers your question :)
Jared - 19 Jun 2007 21:32 GMT
Me.DateTimePicker1.Value.ToShortTimeString()
Dim T As DateTime
T = New DateTime(0, 0, 0, Me.DateTimePicker1.Value.Hour,
Me.DateTimePicker1.Value.Minute, Me.DateTimePicker1.Value.Second)