Shows dialog box for beginning a dialup connection.
[Visual Basic]
Public Function ShowInternetDialDialog( _
ByVal handle As IntPtr, _
ByVal entryName As String _
) As Boolean
[C#]
public bool ShowInternetDialDialog(
IntPtr handle,
string entryName
);
Parameters
-
handle
- Handle of the parent window.
-
entryName
- Entry name.
Return Value
Returns true if it succeeded; otherwise false.
Example
How to begin a dialup connection by using the entry "XXXXX".
dialup.ShowInternetDialDialog(Me.Handle, "XXXXX")
dialup.ShowInternetDialDialog(this.Handle, "XXXXX");
See Also
AwDialup Class | Asterworld.Dialup Namespace