HI,
I have a Winform where I have connection.config file where i get my database connection.
I also have forms where i have dataGridView and that is bound to a DataSet that are in .XSD file. I used that while i was creating an application. Now when i publish to server for live, it still displays data from hardcoded values of DataSet rather than taking it from App.config ( connection.config) file. How do i make sure all of my connections comes from that one eg. connection string that are in connection.config file?
e.g. this.tbl_StatusTableAdapter.Fill(this.MyDataSet.Tbl_Status);
Above line of code does not connect to App.config files connection!
this.tbl_TableAdapter.Update(this.DBDataSet);How do i convert above statement that link to App.COnfig connection?
Please help!
JRS