I have a dataset that gets filled with one table, although it can be a different table depending on the user selection.
I've been using ds.Tables(0).Rows.Whatever just fine. But after a few days off, I came back and most of those references (but not all!) now only work when I use the tablename, e.g. ds.Tables("SomeTable").Rows, etc. ds.Clear is always called before da.Fill. What's going on, any clues? Thanks.