Just curious is there a way "in foxpro" to know who else login my database application beside myself ? I'm using Vfp 8 with foxpro database.
All i can think of now is usinf a free table, u_trace(usr_id,loginCnt). Everytime user login, update it based of the userid and +1 for login_cnt.
If user logout, update the login_cnt to -1.
eg:
usr_id, loginCnt
MIKE 1
JAMES 2
Will this approach work ?
All i can think of now is usinf a free table, u_trace(usr_id,loginCnt). Everytime user login, update it based of the userid and +1 for login_cnt.
If user logout, update the login_cnt to -1.
eg:
usr_id, loginCnt
MIKE 1
JAMES 2
Will this approach work ?