Number of items???
I use the following code to retreive records from an ACCESS database and everything works fine. How do I find out how many items there are in the dataset or the dataadapter??

________________________________________________
strsql = "select * from spis where titel like '%" & TextBox1.Text & "'"
objda = New OleDb.OleDbDataAdapter(strsql, objconn)
ds.Clear()
DataGrid1.DataSource = ds
objda.Fill(ds)
DataGrid1.DataBind()

----------------------------------------------------------------------