|
-
Feb 15th, 2000, 01:23 AM
#1
Thread Starter
New Member
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.
-
Feb 15th, 2000, 02:50 AM
#2
Hyperactive Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|