如何在Vb.Net中列出驱动程序ODBC? (Visual Studio 2015)
Dim _Software As RegistryKey
Dim _ODBC As RegistryKey
_Software = Registry.LocalMachine
_ODBC = _Software.OpenSubKey("SOFTWARE\ODBC\ODBCINST.INI")
For Each XDrives In _ODBC.GetValueNames()
MsgBox(XDrives)
Next