I have created two new stored procedures in my database, but when I refresh my dataset in VS they do not show up. How do I accomplish this without having to create a new datasource? Any help will be greatly appreciated.
cn = New OleDbConnection("Provider=M...")
Dim ds As DataSet = Me.DataSet1
ds.Tables("Table").Rows.Clear()
da = New OleDbDataAdapter("SELECT * FROM Table", cn)
da.Fill(ds, "Table")