Khalid_Afridi
Registered User.
- Local time
- Today, 11:08
- Joined
- Jan 25, 2009
- Messages
- 491
Hi, all
can anyone tell me how do I know that database window is accessed on front End application linked with a back-end tables?
I have front end application on network using by 50 users which linked with back-end database. The back-end database however is password protected and front end is an accde fortmat moreover it's database window is also dissabled from being opening through Shift key.
however I want to create a function which alert me whenever a database window is accessed by un-authorized users, the function should store the username and his pc number in a hidden table. I have an Adminstrator from on my pc which monitors all the users loggedin to the database,their user names,pc numbers,loggedin times,loggedout time,sending messages to specific or all users,forcing all or specific user to loggout from the application etc...
in simple....
how do i know that database window is accessed/opened?
i can open the datbase window through VBA code with
DoCmd.SelectObject acTable, , True
but i don't need it. i can also store users information in a table using:
Dim sHostName As String
Dim sUserName As String
sHostName = Environ$("computername")
sUserName = Environ$("username")
I only want to know if is there any built in function when database window is accessed?
Thanks
Khalid Afridi
can anyone tell me how do I know that database window is accessed on front End application linked with a back-end tables?

I have front end application on network using by 50 users which linked with back-end database. The back-end database however is password protected and front end is an accde fortmat moreover it's database window is also dissabled from being opening through Shift key.
however I want to create a function which alert me whenever a database window is accessed by un-authorized users, the function should store the username and his pc number in a hidden table. I have an Adminstrator from on my pc which monitors all the users loggedin to the database,their user names,pc numbers,loggedin times,loggedout time,sending messages to specific or all users,forcing all or specific user to loggout from the application etc...
in simple....
how do i know that database window is accessed/opened?
i can open the datbase window through VBA code with
DoCmd.SelectObject acTable, , True
but i don't need it. i can also store users information in a table using:
Dim sHostName As String
Dim sUserName As String
sHostName = Environ$("computername")
sUserName = Environ$("username")
I only want to know if is there any built in function when database window is accessed?
Thanks
Khalid Afridi
