dear all,
I'm trying to find out how to pass a parameter to a predefined parameter in a dataset. I've found everywhere a solution if you build the sqldata adapter and the dataset in the code. Then you can pass the parameter like:
da.SelectComman d.Parameters.Ad d("@param1", SqlDbType.Char) .Value = param1_variable (as example)

But if you have builded a dataset (with table adapters), and then in the form app you...