Is there a way to check if a DB Grid is populated?
Basically, I'm populating a DB Grid with the following code

form1.Data1.Refresh
form1.Data1.RecordSource = _
"SELECT * FROM Register WHERE NAME LIKE k*"

form1.Data1.Refresh
form1.DBGrid1.ClearFields
form1.DBGrid.ReBind



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