EXCLUIR ODBC

EXPOLETA 18/10/2010 14:33:58
#355374
eai pessoal . estou rpecisando excluir um dirver odbc via vb...


alguem sabe como resolver???


desde ja agradeço.
NETMANIA 22/10/2010 16:06:41
#355694
Achei o seguinte código fonte (não testei por que não tenho o VB 6 no meu computador), mas vai a dica:

#If WIN32 Then
Dim intRet As Long
#Else
Dim intRet As Integer
#End If
Dim strDriver As String
Dim strAttributes As String

[ô]Set the driver to SQL Server because most common.
strDriver = [Ô]SQL Server[Ô]
[ô]Set the attributes delimited by null.
[ô]See driver documentation for a complete list of attributes.
strAttributes = [Ô]DSN=DSN_TEMP[Ô] & Chr$(0)
[ô]To show dialog, use Form1.Hwnd instead of vbAPINull.
intRet = SQLConfigDataSource(vbAPINull, ODBC_REMOVE_DSN, _
strDriver, strAttributes)
If intRet Then
MsgBox [Ô]DSN Deleted[Ô]
Else
MsgBox [Ô]Delete Failed[Ô]
End If
Tópico encerrado , respostas não são mais permitidas