I work in windows form application works in c# visual studio 2015 connect to database access 2007
my connection as bellow
public static string fileName = @"\\192.168.1.30\data\accessqr.accdb"; public string connection = string.Format("Provider=Microsoft.ACE.OLEDB.12.0;" + "Data Source={0}", fileName);
it working without any problem
but if i need to move database access file accessqr.accdb in another network or another place
may be no ip 192.168.1.30 available or no drive D: available so that
how to make connection dynamic to accept any network ?
so that i need my connection dynamic and is suitable to any place
what i do ?