I have DataSet.xsd. i want to connect the dataset using app.config file in vb.net
Hi nirmal90,
Use the ConnectionString property of the Adapter to set the dynamic connection string.
string constr = "Your updated connection"; TableAdapter1.Connection.ConnectionString = constr;
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.