This is a discussion on Using MSXML3.dll to check the internet connection.. within the XML and SOAP forums, part of the Web Development category; Hi, Is there anyone tell about how to check whether your network is connected or disconnected? It is very easy ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi, Is there anyone tell about how to check whether your network is connected or disconnected? It is very easy to check using MSXML3.dll library file in VB6.0. Actually this library is used to manage the xml in & out information, here I have used to check for the website is connected or not. Sample program.
Sub IsWebConnected(ByVal pstrPhpURL As String, ByRef xmlstr As String) On Error GoTo ErrH Dim msxml1 As New XMLHTTP xmlstr = "" msxml1.Open "GET", pstrPhpURL, False msxml1.send xmlstr = "Connected" Exit Sub ErrH: xmlstr = "Not connected" End Sub This is really a cool stuff to check for thewebsite or net connection. If the XML object successfully executed, then the web site is connected or else it is not connected. The same way you can used in VBScript or javascript to check for the netconnection. thanks ![]()
__________________ Karpagarajan. R Necessity is the mother of invention |
| Sponsored Links |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/xml-soap/805-using-msxml3-dll-check-internet-connection.html | |||
| Posted By | For | Type | Date |
| Digg / News / Upcoming | This thread | Refback | 07-20-2007 03:55 AM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What is Internet Printing? | arjkhanna | Networking & Internet Connectivity | 6 | 02-07-2008 10:48 AM |
| Wireless internet connection help please! | kiret23 | Networking & Internet Connectivity | 0 | 12-03-2007 12:51 AM |
| What is the difference between internet connection and GPRS or mobile net connection? | sathishkumar | Computer Hardware | 2 | 08-11-2007 04:16 AM |
| Internet Connection Speed | Anandavinayagam | ASP and ASP.NET Programming | 3 | 03-27-2007 01:19 PM |
| Internet TV | deerhunter | The Lounge | 5 | 03-08-2007 09:40 PM |