I've been searching online for weeks now, but I can't find any answer or anything related to my problem
The thing is, I have an application I made using c# to load data from an mdb file. The app runs just fine because right now, the app and mdb file (for the database, using oledb) are on the same computer and not on any shared folder. But once were ready to deploy it at the office, the app and mdb file needs to be on a shared folder, to be use by multiple users but the client/user PCs doesn't have MS access installed.
The problem is that we can't install ms access or any redistributable file (the file I've been seeing on most forums/sites I visited) on the client PCs.
The client PCs have .net 4.0
My questions are:
- Will it work? (app and mdb file on shared folder accessed/executed by the client PC's even without any ms access or redistributable file installed on the client PCs?)
- It it wont work that way, what options do I have for the client PCs to open and run the app and mdb file saved on a shared folder?
- If it can't be helped, how can I compile my app with a redistributable file, lets say a .dll file that will help the client PCs to open the app without ms access installed on them? for example (app,mdb and a .dll on the same shared folder)
I really hope and thank you in advance for an answer.