hello how can i check if my DataGrid is null? i mean if it has no binded data yet.. how can i check this???
chech if DataGrid is null
Collapse
X
-
Tags: None
-
Hi ,
You can check if datagrid is bind to any data source or not by using its Item property.
e.g.
If( Datagrid1.Items .Count =0) Then
'' other code if datagrid is not binded to data
End If
Originally posted by chriskaza81hello how can i check if my DataGrid is null? i mean if it has no binded data yet.. how can i check this???
Comment