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.
Are these records related (e.g. Parent/Child records)?Is it possible to display multiple records per row in a datagrid?
myRow = MyDataTable.NewRow
myRow.Item(0) = "<b>" & Column1 & "</b><br><img src=""" & Column2 & """><br>" & Column3
' Column1, 2 & 3 would be the columns from the first data table
MyDataTable.Rows.Add(myRow)