Consulting

Results 1 to 7 of 7

Thread: Solved: Help needed with sign in register

  1. #1

    Solved: Help needed with sign in register

    Hi I am designing a sign in register for work, i need to have a button which will input the current time into the register when pushed, I also need a date button, the idea being when someone signs in they input there name, then simple press the time-in button and date button, any ideas on how this can be done?


    I have attached a sign in register fto give you a idea, but need the time in , time out and date buttons added.

    Thanks for any help, its very much appreciated.

    Paul

  2. #2
    VBAX Mentor ALe's Avatar
    Joined
    Aug 2005
    Location
    Milan
    Posts
    383
    Location
    Just an idea. I had problem with the today function but it works.

  3. #3
    Quote Originally Posted by ALe
    Just an idea. I had problem with the today function but it works.
    Hi ALe, Thankyou for replying, it works great but i need the time out button to put the time out in the specific row i highlight, anyone know of a way of doing this.?

    Sorry to be such a pain.


    Paul

  4. #4
    VBAX Mentor ALe's Avatar
    Joined
    Aug 2005
    Location
    Milan
    Posts
    383
    Location
    [VBA]Private Sub CommandButton3_Click()
    Cells((ActiveCell.Row), 13).Value = Hour(Now) & ":" & Minute(Now)
    End Sub[/VBA]

  5. #5
    Quote Originally Posted by ALe
    [vba]Private Sub CommandButton3_Click()
    Cells((ActiveCell.Row), 13).Value = Hour(Now) & ":" & Minute(Now)
    End Sub[/vba]
    Thanks a lot ALe its much appreciated

    Best Regards

    Paul

  6. #6
    VBAX Mentor ALe's Avatar
    Joined
    Aug 2005
    Location
    Milan
    Posts
    383
    Location
    Paul, don't forget to mark this thread as solved

  7. #7
    ignore
    Last edited by Paul C; 07-04-2006 at 12:15 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •