Hi there to all forumers :) I want to know what is the component used in vb6 to display time as shown below
[IMG]time.bmp[/IMG]
thanks
Printable View
Hi there to all forumers :) I want to know what is the component used in vb6 to display time as shown below
[IMG]time.bmp[/IMG]
thanks
It's similar to the DTPicker but I would guess that it's a custom control someone has created.
It is DTPicker component which is in Microsoft Windows Common Control-2 6.0
I was right, just needed to tick the "UpDown" option and wallah :D
Ya, and If u need u can change the type of that control from it's property.
Yup, everybodys right! It is a component from Microsoft Windows Common Control-2 6.0. Now if I want to use that control to make it functioning exactly like the windows time control how can I do this? I'm actually using this control to make user easy to set appointment time.
Create a Control and follow this think, If this is u need. or post ur exact need.
VB Code:
Private Sub Form_Load() DTPicker1.Format = dtpTime DTPicker1.Value = Now End Sub
Thanks balajikandaswamy ! Exactly what I need