This is a generic solution for multiple client access to a database from a front-end across a net work.
1. Assume you have a database called "sample.mdb" for which you have written a front-end in vb using ADO. First place this in a shared folder [myDbShare] on your server called, myServer.
2. In all places in the VB program, where you want to access the database, you need a "Connection string". For the data source part of this string, you write, data source=\\myServer\myDbShare\sample.mdb. Data Source is only a part of the string. You should get the correct string.
3. Now if you "deploy" your front-end on the clients, the front-end can access the database assuming proper permissions are in place.
Let me know if you need help.
jkrishnaswamy