born2program
Technical User
I have a small web application that reads from a sql server database and displays results in a data grid. Everything works fine until there is no data in the dataset. What is the best way around this. I have included the function below that reads from the dataset. Any help appreciated. Thanks.
Code:
Private Sub LoadChecksToPrint()
Dim objDataHandler As New DataHandler
Dim objGetChecksDataSet As New DataSet
Dim objGetChecksDataView As New DataView
objGetChecksDataSet = objDataHandler.getChecksToBePrinted(strDepartment)
If objGetChecksDataSet.Tables(0).Rows.Count <> 0 Then
objGetChecksDataView = objGetChecksDataSet.Tables.Item(0).DefaultView
dgOverpay.DataSource = objGetChecksDataView
dgOverpay.DataBind()
Else
Exit Sub
End If
End Sub