473,800 Members | 2,726 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dial Up NetWorking (DUN) in VB.Net

Hi,

Sorry, I have to put same message more than three to four times , as I can't
receive a responce.

I want to connect my internet connection through my VB.Net Code.
Is there any sample code, or hints.

Thanks in advance.

Hardik Shah.


Nov 21 '05 #1
2 6074
"Hardik Shah" <ha********@hot mail.com> schrieb:
I want to connect my internet connection through my VB.Net Code.
Is there any sample code, or hints.


\\\

' Written by Herfried K. Wagner.
Public Class InternetDialer
Public Declare Function InternetAutodia l Lib "wininet.dl l" ( _
ByVal dwFlags As Int32, _
ByVal hwndParent As IntPtr _
) As Boolean

Private Const INTERNET_AUTODI AL_FORCE_ONLINE As Int32 = &H1
Private Const INTERNET_AUTODI AL_FORCE_UNATTE NDED As Int32 = &H2
Private Const INTERNET_AUTODI AL_FAILIFSECURI TYCHECK As Int32 = &H4
Private Const INTERNET_AUTODI AL_OVERRIDE_NET _PRESENT As Int32 = &H8

Private Declare Function InternetAutodia lHangup Lib "wininet.dl l" ( _
ByVal dwReserved As Int32 _
) As Boolean

Public Enum AutoDialOptions
ForceOnline = INTERNET_AUTODI AL_FORCE_ONLINE
ForceUnattended = INTERNET_AUTODI AL_FORCE_UNATTE NDED
FailIfSecurityC heck = INTERNET_AUTODI AL_FAILIFSECURI TYCHECK
OverrideNetPres ent = INTERNET_AUTODI AL_OVERRIDE_NET _PRESENT
End Enum

Public Shared Sub Dialup(ByVal Options As AutoDialOptions )
Dialup(Options, IntPtr.Zero)
End Sub

Public Shared Sub Dialup(ByVal Options As AutoDialOptions , ByVal Parent
As Control)
Dialup(Options, Parent.Handle)
End Sub

Public Shared Sub Dialup( _
ByVal Options As AutoDialOptions , _
ByVal hwndParent As IntPtr _
)
If Not InternetAutodia l(Options, hwndParent) Then
Throw _
New ApplicationExce ption( _
"Error dialling the default internet connection." _
)
End If
End Sub

Public Shared Sub Hangup()
If Not InternetAutodia lHangup(0) Then
Throw _
New ApplicationExce ption( _
"Error disconnecting internet connection." _
)
End If
End Sub
End Class
///

Usage:

\\\
InternetDialer. Dialup(Internet Dialer.AutoDial Options.ForceOn line)
..
..
..
InternetDialer. Hangup()
///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #2
Herfried,

Regarding the code you posted, I have two questions:

1. This code seems to open/close an existing Dial-up connection that is
already set up on the computer. Do you know of a sample code where you can
supply the Dialup Function with the DialUp parameters (such as phone number,
user name, password, etc.)?

2. In the Sub Dialup, I received this error "Type 'Control' is not defined.
Do I need to import something in this class?

"Herfried K. Wagner [MVP]" wrote:
"Hardik Shah" <ha********@hot mail.com> schrieb:
I want to connect my internet connection through my VB.Net Code.
Is there any sample code, or hints.


\\\

' Written by Herfried K. Wagner.
Public Class InternetDialer
Public Declare Function InternetAutodia l Lib "wininet.dl l" ( _
ByVal dwFlags As Int32, _
ByVal hwndParent As IntPtr _
) As Boolean

Private Const INTERNET_AUTODI AL_FORCE_ONLINE As Int32 = &H1
Private Const INTERNET_AUTODI AL_FORCE_UNATTE NDED As Int32 = &H2
Private Const INTERNET_AUTODI AL_FAILIFSECURI TYCHECK As Int32 = &H4
Private Const INTERNET_AUTODI AL_OVERRIDE_NET _PRESENT As Int32 = &H8

Private Declare Function InternetAutodia lHangup Lib "wininet.dl l" ( _
ByVal dwReserved As Int32 _
) As Boolean

Public Enum AutoDialOptions
ForceOnline = INTERNET_AUTODI AL_FORCE_ONLINE
ForceUnattended = INTERNET_AUTODI AL_FORCE_UNATTE NDED
FailIfSecurityC heck = INTERNET_AUTODI AL_FAILIFSECURI TYCHECK
OverrideNetPres ent = INTERNET_AUTODI AL_OVERRIDE_NET _PRESENT
End Enum

Public Shared Sub Dialup(ByVal Options As AutoDialOptions )
Dialup(Options, IntPtr.Zero)
End Sub

Public Shared Sub Dialup(ByVal Options As AutoDialOptions , ByVal Parent
As Control)
Dialup(Options, Parent.Handle)
End Sub

Public Shared Sub Dialup( _
ByVal Options As AutoDialOptions , _
ByVal hwndParent As IntPtr _
)
If Not InternetAutodia l(Options, hwndParent) Then
Throw _
New ApplicationExce ption( _
"Error dialling the default internet connection." _
)
End If
End Sub

Public Shared Sub Hangup()
If Not InternetAutodia lHangup(0) Then
Throw _
New ApplicationExce ption( _
"Error disconnecting internet connection." _
)
End If
End Sub
End Class
///

Usage:

\\\
InternetDialer. Dialup(Internet Dialer.AutoDial Options.ForceOn line)
..
..
..
InternetDialer. Hangup()
///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Dec 8 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2320
by: ch | last post by:
Hi, I am trying to write a VB program to detect the Dial Up Networking window in WinXP. For instance, everytime when i launch my Internet Explorer, the default MS windows Dial Up Networking will pop up and start dialling to my ISP. I wanted to write a program to detect that "Dial up needs" and then launch my own dialup application, instead of using the Windows default DUN.
0
1549
by: BrendonJ | last post by:
Hi. Could some one please point me in the right direction about vb.net support for Dial-up connectors? I could not find any documentation. Using VB.NET I would like to search the computer for existing Dial-up connectors, then select one of them and use it to establish a connection to the internet, transfer files to an ftp site and finally close the Dial- up connector. I think I can do the ftp part but I need a way to manage the internet...
0
1520
by: BrendonJ | last post by:
Hi. Could some one please point me in the right direction about vb.net support for Dial-up connectors? I could not find any documentation. Using VB.NET I would like to search the computer for existing Dial-up connectors, then select one of them and use it to establish a connection to the internet, transfer files to an ftp site and finally close the Dial- up connector. I think I can do the ftp part but I need a way to manage the internet...
1
10176
by: Hugh McLaughlin | last post by:
Hello Everyone and thanks for your help in advance. I am writing an application in Vb.Net that queries a SQL Server database and then builds a text file for submission to a vendor. However, the vendor requires that the file be sent via dial-up modem. This is where I am having the problem as I haven't got a clue as to how to do this or where to start. Could someone shed some light on this or point me to a tutorial? Any help would be...
0
1521
by: Davide Bedin | last post by:
Our .net application needs to open a dial up network connection to reach the internet and send and receive emails (we use a third party component for the email). Using wininet.ddl and rasapi32.dll I can list the connections and connect to a specific named connection. If the application is launched as a windows forms application it is able to get the connections defined in the user profile. This application has to move inside a Windows...
0
1300
by: sleepyant | last post by:
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.com/") myReq.GetResponse() Catch ex As Exception
9
2307
by: sleepyant | last post by:
Hi, I've posted this question on several forum but have no response. So I hope anyone who have any idea what I'm talking about please give your solution or advice. My problem is I need to check the internet connection and pop-up a Dial-Up dialog when there isn't any? I've tried the following: Dim myReq As HttpWebRequest
2
1150
by: Tibby | last post by:
I have probably asked this before, but can't find it. Does anyone know of a way that I can make a Dialup Networking Controller? I need to make a program such as NetZero's Dialer, and I know that the code is out there, I just can't findit. I am more than willing to use Win32 API if necessary. Thanks, Tibby
0
1405
by: Axel | last post by:
Hello all, i've a problem with connection to a VPN Network through WinInet API. Scenario: 1 got 2 RAS-connections on my System: one for dialing into the internet via modem and the second for establishing a PPTP connection to our network. When dialing the second connection, the first connection is dialed before. When connection via WinXP desktop this works pretty good.
0
9691
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10507
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10036
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9092
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6815
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5473
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5607
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4150
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3765
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.