I get this error message when trying to open my 2002 access database using MS visial Studio 2005
"System.IO.FileNotFoundException was unhandled" using the code below
Imports System.Data.OleDb
Imports System.Console
Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader
Source=C:\temp\MIRC\CCC_DATA.mdb;Persist Security Info=False")
cn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\temp\MIRC\CCC_DATA.mdb;")
cn.Open()