I am trying to convert code from Visual Studio .NET 2003 to Visual Studio 2013.
I am very new to VS2013.
I had a ODBC connection and DataAdapter set up in VS2003. Now I have a DataSet with a TableAdapter set up in VS2013.
my old code is:
odbcDataAdapter4.SelectCommand.Parameters["Pkg"].Value = LnNbr;
odbcdataAdapter4.Fill(dataSet1);
In VS2013 I created DataSet1 with DataTable1 with DataTable1TableAdapter.
I am unable to come up with the correct code to assign the LnNbr to the DataTable1TableAdapter parameter "Pkg".
Thank You in Advance.
Ron