PDA

Click to See Complete Forum and Search --> : ODBC in vb


J.X.
Apr 13th, 2000, 09:44 AM
I have tried that , but it doesn't seem to work. I was thinking that probably there is something wrong with App.Path but I have no clue what should be there instead? anybody, help?

Clunietp
Apr 13th, 2000, 10:16 PM
Its probably your connection string

change this:

Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.3.51;" & _
"Persist Security Info=False;" & _
"Data Source=" & App.Path & "\mailingList.mdb;"
'"Mode=Read|Write|Share Deny None;"


To This:

Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=" & App.Path & "\mailingList.mdb"

You don't need that extra crap on the end unless you need a special edit mode....


Tom

J.X.
Apr 14th, 2000, 05:11 AM
yes, It seems that I don't need those extra things, but I still get the same error. any suggestions?