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.
xADOCon = "Driver={SQL Server};" & _
"Server=" & conServer & ";" & _
"Database=" & conDatabase & ";" & _
"Uid=" & conUserName & ";" & _
"Pwd=" & conPassword
? TypeOf Me.recordset Is ADODB.Recordset
False
' input: ADO recordset
' returns: string with Supports and other recordset info
' created August, 2007
' by Bill Butler
Public Function pfSupports(ByRef rs As ADODB.Recordset) As String
Dim s As String
With rs
s = "ActiveConnection " & .ActiveConnection & vbCrLf
s = s & "CursorPosition " & .CursorLocation & vbCrLf
s = s & "CursorType " & .CursorType & vbCrLf
s = s & "EditMode " & .EditMode & vbCrLf
s = s & "LockType " & .LockType & vbCrLf
s = s & "Source " & .Source & vbCrLf
s = s & "RecordCount " & .RecordCount & vbCrLf
s = s & vbCrLf & "---SUPPORTS--- " & vbCrLf
s = s & "AddNew " & .Supports(adAddNew) & vbCrLf
s = s & "ApproxPosition " & .Supports(adApproxPosition) & vbCrLf
s = s & "Bookmark " & .Supports(adBookmark) & vbCrLf
s = s & "Delete " & .Supports(adDelete) & vbCrLf
s = s & "Find " & .Supports(adFind) & vbCrLf
s = s & "HoldRecords " & .Supports(adHoldRecords) & vbCrLf
s = s & "Index " & .Supports(adIndex) & vbCrLf
s = s & "MovePrevious " & .Supports(adMovePrevious) & vbCrLf
s = s & "Notify " & .Supports(adNotify) & vbCrLf
s = s & "Resync " & .Supports(adResync) & vbCrLf
s = s & "Seek " & .Supports(adSeek) & vbCrLf
s = s & "UpDate " & .Supports(adUpdate) & vbCrLf
s = s & "UpDateBatch " & .Supports(adUpdateBatch) & vbCrLf & vbCrLf
s = s & Now()
End With
pfSupports = s
End Function
ActiveConnection Provider=MSDASQL.1;Extended Properties="DRIVER=SQL Server;SERVER=<ServerName>;UID=<UserName>;PWD=<Password>;APP=Microsoft Office 2010;WSID=<WorkstationName>;DATABASE=<DatabaseName>"
CursorPosition 3
CursorType 3
EditMode 0
LockType 3
Source dbo.usp_VisitMembers_List -1
RecordCount 2
---SUPPORTS---
AddNew True
ApproxPosition True
Bookmark True
Delete True
Find True
HoldRecords True
Index False
MovePrevious True
Notify True
Resync True
Seek False
UpDate True
UpDateBatch True
5/30/2012 10:49:37 AM