|
-
Jul 28th, 2000, 11:52 PM
#1
Thread Starter
Junior Member
Does anyone know if there is a component or any code to have a textbox like the one for setting the time?
-
Jul 29th, 2000, 12:07 AM
#2
transcendental analytic
You could make your own, it's not too hard:
Code:
Private Sub Text1_Change()
Static Olddate As Date
If IsDate(Text1) Then
Olddate = Text1
Else
Text1 = Olddate
End If
End Sub
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Jul 29th, 2000, 02:49 AM
#3
I was bored so I made one, you can download it from my site
-
Jul 29th, 2000, 12:33 PM
#4
Thread Starter
Junior Member
Thanks A Lot
Thanks for the component. It is awesome. Just one suggestion for it is to have it change the times when you press up or down. But anyway thanks, Its gonna be a big help.
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
|