I am having the same problem 
I can't figure it out.
I have a Database class called Database, that just returns datasets for any given SQL SELECT statement.
This works.
I have:
VB Code:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim ds As DataSet
Dim db As New Database
ds = db.GetDataSet("SELECT * FROM Users")
grdUsers.DataSource = ds
End Sub
When I do:
Code:
? ds.Tables.Item(0).Rows.Count
Then it returns a 1, which is correct. I have 1 user in my table.
But the datagrid is just not visible 
I have tried the above and:
VB Code:
grdUsers.DataSource = ds.Tables(0)
Yet I still can't see the table 
Wopka