Hi Aleksandar,
A DataSet does not have an EOF or BOF property, like an ADO Recordset does. You can, however, find out whether one of the tables in the DataSet contains 1 or more rows:
Code:
If DS.Tables(0).Rows.Count > 0 Then
This code checks whether the
first table in the DataSet contains at least a row.
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.