R
Roshawn
Hi,
I am using a DataRowView object that contains exactly one row. Here's my
code:
Dim dv as New DataView(ds.Tables(0), "City = 'Hammond'", "",
DataViewRowState.CurrentRows)
Dim row as DataRowView = dv(0)
The row contains a column that can contain empty data. How can you tell if
the specified column has data or not?
Thanks,
Roshawn
I am using a DataRowView object that contains exactly one row. Here's my
code:
Dim dv as New DataView(ds.Tables(0), "City = 'Hammond'", "",
DataViewRowState.CurrentRows)
Dim row as DataRowView = dv(0)
The row contains a column that can contain empty data. How can you tell if
the specified column has data or not?
Thanks,
Roshawn