checking for 0 records in a table

  • Thread starter Thread starter DC Gringo
  • Start date Start date
D

DC Gringo

How can I check for the number of records in a table?

If MyDataSet1.Table1.recordcount = 0
'my code'
End If
 
MyDataSet1.Table1.Rows.Count

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
DC Gringo said:
How can I check for the number of records in a table?

If MyDataSet1.Table1.recordcount = 0
'my code'
End If

Try this:

If MyDataSet1.Tables("Table1").Rows.Count = 0 Then
'your code here
End If
 
Use DataTable.Rows.Count property.

How can I check for the number of records in a table?

If MyDataSet1.Table1.recordcount = 0
'my code'
End If
 
Back
Top