Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DataRow.Item("ColumnName") = Value
'Or
DataRow.Item(ColumnNumber) = Value
Value = DataRow.Item("ColumnName")
'Or
Value = DataRow.Item("ColumnNumber")
DataTable.Rows(RowNumber)
'Or
Dim dr() As DataRow = DataTable.Select("AColumn = 'abc'")
'FirstName
Dim dr() As DataRow = DataTable.Select("FirstName = 'Bob'")
'FirstName and surname
Dim dr() As DataRow = DataTable.Select(FistName = 'Bob' AND Surname = 'Smith')
'Age equal or above 30
Dim dr() As DataRow = DataTable.Select("Age >= 30")