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.
' Declare require variables.
Dim logOnInfo As New TableLogOnInfo()
Dim i As Integer
' Loop through every table in the report.
For i = 0 To report.Database.Tables.Count - 1
' Set the connection information for current table.
logOnInfo.ConnectionInfo.ServerName =
logOnInfo.ConnectionInfo.DatabaseName =
logOnInfo.ConnectionInfo.UserID = [i]Type your DBUsername</i>
logOnInfo.ConnectionInfo.Password = [i]Type the password[/i]
report.Database.Tables.Item(i).ApplyLogOnInfo(logOnInfo)
Next i