access tables by name

  1. A

    Why can't I access tables in a dataset by table name?

    In my VB.Net desktop application, I have several places where I am accessing a table, both for reading and for updating. For example: Dim tempCount As Integer = Glbl.GlobalDataSet.Tables("Profiles").Rows.Count The above does not work. However, the following does: Dim tempCount As Integer =...
Back
Top