There are two ways to hide tables. If the user knows how to unhide them, then they can access the hidden tables once they get the BE password. In fact, just knowing the names of the hidden tables could be enough to access them.Changing BE extension looks great trick.
btw: How do you hide tables in BE? If someone has BE PWD, will he be still able to access BE hiden tables?
Thanks,
Use the option in the navigation pane. It is just one more hurdle that someone trying to get into the database has to overcome. As we've all said many times, no Access file is ever truly secure. Tht FE is just code so that is technically intellectual property but if you are not selling the app, that really doesn't matter because it's not yours anyway. It belongs to your employer or your client unless your contract says that you own the source code. You just want to do your best to prevent accidental modifications. But if you need security for the data which is far more valuable, then you need to be using a server based RDBMS like SQL Server.btw: How do you hide tables in BE? If someone has BE PWD, will he be still able to access BE hiden tables?
Just curious, are you aware of the FE updater by Bob Larson? It uses the running database to create the batch file and runs it.I thought you might have come up with a way to achieve this with a running database.
Hi, PatNo, the database is distributed in house and the users know better than to mess with it. The .accde does nothing to protect the database. it doesn't stop the users from opening the tables and updating the data directly. It doesn't stop them from creating their own macros or queriees, It only removes the source code. If you need to lock the database, you need to go far beyond just creating an .accde.
Really? You're not even going to take a shot at it?
Code:md c:\SomeLocalDirectoryName del c:\SomeLocalDirectoryName\BTI_Employee_Database_Testing.accde copy "\\Book-dc\hr\BTI Employee Database\BTI_Employee_Database_Testing.accde" c:\SomeLocalDirectoryName c:\SomeLocalDirectoryName\BTI_Employee_Database_Testing.accde
As I mentioned, the database needs to be downloaded to the user's local drive. Do NOT use a server location.
Also, keep in mind that if you use embedded spaces or special characters in path or file names, you MUST enclose the string in double quotes to isolate the offending characters.
Ok Pat now I will show the extension of my files.The .bat file needs to be stored on the server. You can place it in the directory where the master copy of the FE is stored. Do NOT store the .bat file in the user directory. You seem to have swapped the .bat file with the shortcut. The shortcut is installed on the LOCAL drive. The .bat file lives on the Server so that if you need to change it, you can change it without having to visit every single user computer!!! The shortcut simply runs the .bat file so it would never need to change.
Did you send a copy of the shortcut that opens the .bat file to each user?
Developers should ALWAYS have extensions displayed. You should never have to guess what the extension is for any file.
I am sorry I was reading your reply and understanding it.Thanks for the like but we are not children here. Likes are totally useless when it comes to helping people who find this thread later determine what answer solved the problem. So, when you have a solution to a problem it is always more helpful to say, in words, what it was or if one specific comment helped more than others, point that out.
Thank you so much Pat, It's working perfectly.Not sure why this is so hard. Again.
1. The current distribution version of the FE is stored on the server. Unless your PC is properly backed up, then you need to also store your design master on the server. It is too dangerous to have the design master stored only on your Local PC.
2. The BE is stored only on the server. You need a testing copy and that should be stored on your local PC.
3. The .bat file is stored on the server.
4. The master copy of the shortcut is stored on the server.
5. Create a shortcut that runs the batch file. Store it on the server
6. You distribute the shortcut to each person who will be using the application with instructions to save it on their local drive (not sure why you are using D (something is amiss here). The local drive is always C. Use email to distribute the shortcut.
When the user wants to run the application, he double clicks on the shortcut.
The shortcut runs the batch file from its server location
The batch file executes the four instructions.
The FE opens on the client PC.
YOU are the developer. Are you also a USER of the application? If so, then you also need the shortcut when you want to open the production version of the application. When you want to work on your development version, you open it directly. You would NOT EVER use the shortcut since the shortcut would overwrite your changes and you would be very unhappy.
Not sure why this is so hard. Again.
1. The current distribution version of the FE is stored on the server. Unless your PC is properly backed up, then you need to also store your design master on the server. It is too dangerous to have the design master stored only on your Local PC.
2. The BE is stored only on the server. You need a testing copy and that should be stored on your local PC.
3. The .bat file is stored on the server.
4. The master copy of the shortcut is stored on the server.
5. Create a shortcut that runs the batch file. Store it on the server
6. You distribute the shortcut to each person who will be using the application with instructions to save it on their local drive (not sure why you are using D (something is amiss here). The local drive is always C. Use email to distribute the shortcut.
When the user wants to run the application, he double clicks on the shortcut.
The shortcut runs the batch file from its server location
The batch file executes the four instructions.
The FE opens on the client PC.