Hi
I have project which involve a database and a folder in which i will store the images which paths are stored in database.
When i make a setup copy of my project and run it gives the following error.
COULD NOT FIND FILE 'C:\DOCUMENT AND SETTINGS\ADMINISTRATOR\ISO.mdb'
while i have declared the connection string as
OleDbConnection mycon = new OleDbConnection("Provider=Microsoft.JET.OLEDB.4.0; Data Source=ISO.mdb");
and this line also does not work
string pathing = AppDomain.CurrentDomain.BaseDirectory + "Images_of_Student\\Image_" + name;
what is the solution of my problem.
thnx in advance