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?
Printable View
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?
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
yes, It seems that I don't need those extra things, but I still get the same error. any suggestions?