I have this connection string :
OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=..\Release\DB.accdb"); // Database Connection
I want my program to connect to the database without the "..\Release\" in the string. What I mean is, that i want the program to look for the database in the program's folder, without specifying the folder's name (whatever the folder's name is). How is that done?