Results 1 to 4 of 4

Thread: Time Component

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Mar 2000
    Location
    Davis, CA
    Posts
    23
    Does anyone know if there is a component or any code to have a textbox like the one for setting the time?

  2. #2
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    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.

  3. #3
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    I was bored so I made one, you can download it from my site

  4. #4

    Thread Starter
    Junior Member
    Join Date
    Mar 2000
    Location
    Davis, CA
    Posts
    23

    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
  •  



Click Here to Expand Forum to Full Width