Results 1 to 2 of 2

Thread: SSTab Control

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2000
    Posts
    3

    Post

    I'm really new to VB6...actually VB. If someone could help me...I'd appreciate it.
    I need to time in seconds the user spends on each tab in a SSTab Control.

  2. #2
    Hyperactive Member
    Join Date
    Nov 1999
    Location
    Columbia, SC USA
    Posts
    374

    Post

    I don't know exactly how you would go about doing that, but I would suggest employing the NOW function. E.G. define two global variables

    Dim Time1, Time2

    then when the user selects one tab

    Time1 = Now

    and when the user selects another tab

    Time2 = Now

    The total time spent on the first tab will be Time2 - Time1.


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