|
-
Sep 19th, 2006, 09:44 PM
#1
Thread Starter
Hyperactive Member
-
Sep 19th, 2006, 11:09 PM
#2
Re: How to make time control like this one?
It's similar to the DTPicker but I would guess that it's a custom control someone has created.
-
Sep 19th, 2006, 11:48 PM
#3
Lively Member
Re: How to make time control like this one?
It is DTPicker component which is in Microsoft Windows Common Control-2 6.0
-
Sep 20th, 2006, 12:27 AM
#4
Re: How to make time control like this one?
I was right, just needed to tick the "UpDown" option and wallah
-
Sep 20th, 2006, 12:30 AM
#5
Lively Member
Re: How to make time control like this one?
Ya, and If u need u can change the type of that control from it's property.
-
Sep 20th, 2006, 04:40 AM
#6
Thread Starter
Hyperactive Member
Re: How to make time control like this one?
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.
-
Sep 20th, 2006, 04:48 AM
#7
Lively Member
Re: How to make time control like this one?
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
-
Sep 20th, 2006, 04:57 AM
#8
Thread Starter
Hyperactive Member
Re: How to make time control like this one?
Thanks balajikandaswamy ! Exactly what I need
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|