How do I dial to another computer, just like and Dial-Up-Networking connetcion, from my VB application.
Printable View
How do I dial to another computer, just like and Dial-Up-Networking connetcion, from my VB application.
Public Sub Win95_98()
Dim WIN
WIN = Shell("rundll32.exe rnaui.dll,RnaDial " & "Connect Name", 1)
End Sub
Public Sub WinNT()
Dim NT
NT = Shell("rasphone.exe [-d Connect Name]", 1)
End Sub