I ran a stored procedure that executed correctly (I know this because I bound the data to a datagrid to test, but now I want to bind them to textboxes. I want to bind them using the order they are in the row, so I know it is something like DS.Tables("Territory".Rows.item, but I am not sure of the exact syntax. Can someone help me out?
So far I have it as:
oConn.Open()
DA.SelectCommand.ExecuteReader()
oConn.Close()
DA.Fill(DS, "Territory"
and now I want to bind each item in my table to the text boxes.
So far I have it as:
oConn.Open()
DA.SelectCommand.ExecuteReader()
oConn.Close()
DA.Fill(DS, "Territory"
and now I want to bind each item in my table to the text boxes.