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.
setting up a link from VB.Net to Sybase
Imports System.Data.Odbc
Public DataConn As OdbcConnection
Function FConnect() as Boolean
DataConn = New OdbcConnection
DataConn.ConnectionString = "DSN=MyDSN;UID=dba;PWD=sql;DatabaseName=MyDB;EngineName=MyServer;AutoStop=No;Integrated=No;"
Try
DataConn.Open()
Return True
Catch
'Do err handling
End Try
End Sub