ENCERRAR DIAL-UP

USUARIO.EXCLUIDOS 15/07/2005 11:50:14
#94302
Olá amigos do VBMania,

Como faço para desconectar uma conexão dial-up pelo vb? Se alguém tiver alguma dica, por favor, compartilhe comigo !! Estou utilizando o VB6(SP6) e WinXP.

Obrigaduuu,

Kyl
ALEXANDREDWWEB 15/07/2005 21:21:09
#94413
tente este codigo, pelo menos no win me funciona...
'======MODULO============
'para desconectar

Public Const RAS_MAXENTRYNAME As Integer = 256
Public Const RAS_MAXDEVICETYPE As Integer = 16
Public Const RAS_MAXDEVICENAME As Integer = 128
Public Const RAS_RASCONNSIZE As Integer = 412
Public Const ERROR_SUCCESS As Long = 0&

Public Type RasEntryName
dwSize As Long
szEntryName(RAS_MAXENTRYNAME) As Byte
End Type

Public Type RasConn
dwSize As Long
hRasConn As Long
szEntryName(RAS_MAXENTRYNAME) As Byte
szDeviceType(RAS_MAXDEVICETYPE) As Byte
szDeviceName(RAS_MAXDEVICENAME) As Byte
End Type

Public Declare Function RasEnumConnections Lib _
"rasapi32.dll" Alias "RasEnumConnectionsA" _
(lpRasConn As Any, lpcb As Long, _
lpcConnections As Long) As Long

Public Declare Function RasHangUp Lib _
"rasapi32.dll" Alias "RasHangUpA" _
(ByVal hRasConn As Long) As Long

Public gstrISPName As String
Public ReturnCode As Long

Public Sub HangUp()
Dim i As Long
Dim lpRasConn(255) As RasConn
Dim lpcb As Long
Dim lpcConnections As Long
Dim hRasConn As Long
lpRasConn(0).dwSize = RAS_RASCONNSIZE
lpcb = RAS_MAXENTRYNAME * lpRasConn(0).dwSize
lpcConnections = 0
ReturnCode = RasEnumConnections(lpRasConn(0), _
lpcb, lpcConnections)
If ReturnCode = ERROR_SUCCESS Then
For i = 0 To lpcConnections - 1
If Trim(ByteToString(lpRasConn(i).szEntryName)) _
= Trim(gstrISPName) Then
hRasConn = lpRasConn(i).hRasConn
ReturnCode = RasHangUp(ByVal hRasConn)
End If
Next i
End If
End Sub

Public Function ByteToString(bytString() As _
Byte) As String
Dim i As Integer
ByteToString = ""
i = 0
While bytString(i) = 0&
ByteToString = ByteToString & Chr(bytString(i))
i = i + 1
Wend
End Function

'no formulário

Private Sub Command1_Click()
Call HangUp
End Sub

FELIPEA 15/07/2005 21:57:52
#94416
Resposta escolhida
Tópico encerrado , respostas não são mais permitidas