I apologized for the confusion. My little experience in getting apps to run on servers is the reason. I have listed my applicable code here. The app can find the databases when I run it locally. But when its installed on a server I was getting an error: "database not found". Since I had it hard coded to "C": I can see why (since the server drive was "E") Along with that issue I assume there would be a similar issue once the networked PC's are mapped to the server. They wouldn't see the databases either since they path was hard-coded as "C:".
You gave me some good leads on the server question making the drives relative. I was lost when it comes to the networked PC side. Does my code have to change also or just by mapping to the \\MyServer\MyShare resolved this relative drive issue?
Thank you for your time.
John M
Dim ConnString2 As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\NMPNMB2\BuyerValues.mdb;" & _
"User ID=Admin;" & _
"Password="
Dim cnn2 As OleDbConnection = New OleDbConnection(ConnString2)
Dim command2 As String = "INSERT INTO BuyerPicks " & _
"(StudentInitials, [StudentID], DayCare, [Bus], [Cable], Car, CarLeased, CarRepair, " & _
"Charity, Clothes, Electricity, Food, House, FoodRest, Appliances, SmallStuff, " & _
"Gas, Gifts, Heat, HotWater, InsApt, InsCar, InsCarIniPay, InsDen, InsHeal, InsHome, " & _
"InsLife, Internet, Laundry, LesiACT, LesiTH, PersCare, Phone, PhACT, PhPlan, Saving, Smoke, TaxExcise, TaxSales, Done, " & _
(