VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Check that your computer is connected to internet even on Lan environment

romi  (2 Submissions)   Internet/HTML   Visual Basic 5.0   Unknown Difficulty   Fri 31st May 2002   Mon 8th February 2021

Check that your computer is connected to internet even on Lan environment

API Declarations



Private Const WS_VERSION_REQD = &H101
Private Const WS_VERSION_MAJOR = WS_VERSION_REQD \ &H100 And &HFF&
Private Const WS_VERSION_MINOR = WS_VERSION_REQD And &HFF&
Private Const MIN_SOCKETS_REQD = 1
Private Const SOCKET_ERROR = -1
Private Const WSADescription_Len = 256
Private Const WSASYS_Status_Len = 128

Private Type HOSTENT
hName As Long
hAliases As Long
hAddrType As Integer
hLength As Integer
hAddrList As Long
End Type

Private Type WSADATA
wversion As Integer
wHighVersion As Integer
szDescription(0 To WSADescription_Len) As Byte
szSystemStatus(0 To WSASYS_Status_Len) As Byte
iMaxSockets As Integer
iMaxUdpDg As Integer
lpszVendorInfo As Long
End Type

Private Declare Function WSAGetLastError Lib "WSOCK32.DLL" () As Long
Private Declare Function WSAStartup Lib "WSOCK32.DLL" (ByVal wVersionRequired&, lpWSAData As WSADATA) As Long
Private Declare Function WSACleanup Lib "WSOCK32.DLL" () As Long
Private Declare Function gethostbyname Lib "WSOCK32.DLL" (ByVal hostname$) As Long
Private Declare Sub RtlMoveMemory Lib "KERNEL32" (hpvDest As Any, ByVal hpvSource&, ByVal cbCopy&)

' add a command button command1


Rate Check that your computer is connected to internet even on Lan environment (2(2 Vote))
Check that your computer is connected to internet even on Lan environment.bas

Check that your computer is connected to internet even on Lan environment Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters