Now i made a C# windows form application and i managed to make it very good

the application have the ability to connect to a sql server database but only on my machine.
I get my connection string in the app using this line of code
SqlConnection Con = new SqlConnection(Properties.Settings.Default.MyDatabaseConnectionString.ToString());
how i can modify this property in app.settings from advanced installer every time a user install my app on his machine
thanks in advance
