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.
Printable View
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.
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.