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.
Public Function TabReseed(cnn As Connection, tName As String, fName As String, iSeed As Integer, iInterval As Integer) As Boolean
Dim str As String
str = "ALTER TABLE [" & tName & "]" & _
" ALTER COLUMN [" & fName & "]" & _
" COUNTER(" & iSeed & "," & iInterval & ")"
cnn.Execute str
End Function