|
|
|
The ODBCTOOL.DLL library contains three functions that make it easier to manage DSNs. To run the following code you must add a reference to the "ODBC Driver & Data Source Name Functions" library to your References dialog box. If you don't find this library listed in the References list, use the Start-Find dialog to locate it (it should be in the \Microsoft Visual Studio\Common\Tools\APE directory).
To get the list of installed DSNs you can use the following code: |
Click here to copy the following block | Dim odbcTool As New ODBCTool.Dsn Dim Dsn() As String, i As Long If odbcTool.GetDataSourceList(Dsn()) Then lstDataSources.Clear For i = 0 To UBound(dsn) lstDataSources.AddItem dsn(i) Next Else MsgBox "Unable to read DSN list", vbExclamation End If |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|