I have DataSet.xsd. i want to connect the dataset using app.config file in vb.net
Hi nirmal90,
Where you are specifying the connection string for the DataSet?
Bind DataSet to RDLC Report in Windows Forms Application using C# and VB.Net
Are you using code like in this article?
What are you trying to do, kindly explain in detail
i have a dataset.xsd file in my project with i can dynamiclly change the database name in app.config. i want to change database find in dataset.xsd dynamically with respective to app.config
Use the ConnectionString property of the Adapter to set the dynamic connection string.
string constr = "Your updated connection"; TableAdapter1.Connection.ConnectionString = constr;
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.