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.
Call execute_storedProc("sp_name")
Friend Sub execute_storedProc(ByVal sp As String)
Dim nextsortOrder As Integer
Dim cmd1 As New OleDb.OleDbCommand
With cmd1
.Connection = objConn
.CommandType = CommandType.StoredProcedure
.CommandText = sp
End With
objConn.Open()
nextsortOrder = cmd1.ExecuteNonQuery()
objConn.Close()
End Sub