I assume you are referring to the connection string found in the project properties. That was set as seen below. Except I can't remember what content exactly was and replaced that with *****. It is one of those things that automatically sets up for you.
Code:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|******|\bin\Debug\MasterBase.accdb
This reminds me of a problem I had quite some time ago that was resolved using what is below. But I do not recall how to set that up or the circumstances.
Code:
AppDomain.CurrentDomain.SetData("DataDirectory","C:\SiTech\Development\SiTechSolution\MasterBase\Bin\Debug\")
What I did do is set the connection string like below. Which is the exact string to the database. Works fine until I run the Setup.
Code:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\SiTech\Development\SiTechSolution\MasterBase (P)\bin\Debug\MasterBase.accdb
Or, are you telling me that in the connection string used in the code should show the full path?