I am using the following connection in VB to connect to an access db:
cn.Open ("Provider=Microsoft.jet.oledb.4.0;" & _
"Data Source=" & App.Path & "\db1.mdb"
However I am getting a runtime error saying that it cannot find the file but it also states the path to the file. Why can it know the path but not find the file?
cn.Open ("Provider=Microsoft.jet.oledb.4.0;" & _
"Data Source=" & App.Path & "\db1.mdb"
However I am getting a runtime error saying that it cannot find the file but it also states the path to the file. Why can it know the path but not find the file?