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 workTable As DataTable = mdsTempImport.Tables.Add("TempImport")
workTable.Columns.Add("UID", Type.GetType("System.Int32"))
With workTable.Columns.Item("UID")
.AutoIncrement = True
.AutoIncrementSeed = 1
.AutoIncrementStep = 1
End With
workTable.PrimaryKey = New DataColumn() {workTable.Columns("UID")}
workTable.Columns.Add("ImportBatchUID", Type.GetType("System.Int32"))