Hi
Yes you always use the access database in a multi user environment, there is no issue in this(depends on the size and type of use)
code is pretty simple :
Dim con As New OleDb.OleDbConnection
con.ConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source C:\AddressBook.mdb"con.Open()
MsgBox("A Connection to the Database
is now open")
con.Close()
MsgBox("The Connection to the
Database is now Closed")
Where C:\AddressBook.mdb is the acess database you want to connect.
thnx
Adil...:))