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.
dim dt as new datatable("MyTableName")
dt.columns.add("Column1",gettype(string))
dt.columns.add("Column2",gettype(integer))
dim dr as datarow
dim i as integer
for i = 0 to SomeCountMax
dr = dt.newrow
dr.items("Column1") = SomeValueBasedOnI
dr.items("Column2") = SomeValueBasedOnI
dt.rows.add(dr)
next i