[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.remoting

Check internet connection, pop up dial-up networking dialog

sleepyant

11/1/2004 2:01:00 AM

Hi, how can I check the internet connection and pop-up a Dial-Up Networking
dialog when there isn't any?

I've tried the following:

Dim myReq As HttpWebRequest
Try
myReq = WebRequest.Create("http://www.yahoo....)
myReq.GetResponse()
Catch ex As Exception
----------------> pop up Dial-Up network here
End Try

The checking part is ok so far. But it can't automatically dial up or prompt
for dial up.
I need your advice on the correct way in doing this stuff. Thanks.