文件名称:断开网络 断开网络 VB源代码
文件大小:4KB
文件格式:TXT
更新时间:2013-01-29 09:37:05
VB
Option Explicit Private Type RASCONN 'version 4.0 dwSize As Long hRasConn As Long szEntryName(256) As Byte szDeviceType(16) As Byte szDeviceName(129) As Byte 'extra byte added for alignment in VB5 End Type Private Type RASCONNSTATUS 'version 4.0 dwSize As Long rasState As RASCONNSTATE dwError As Long szDeviceType(16) As Byte szDeviceName(130) As Byte 'two extra bytes added for alignment in VB5 End Type 'Enumerates intermediate states to a connection. Private Const RASCS_PAUSED As Long = &H1000 Private Const RASCS_DONE As Long = &H2000 Public Enum RASCONNSTATE ...