-
How can i bring up the dail-up dialog box in windows nt.
from visual basic?
I can do that in win 95/98 with the command:
Shell "c:\windows\rundll rnaui.dll,RnaDial Internet"
where Internet is the name associated with the dialup dialog box.
Is there another way to dial automatically by providing the username and the password?
Thanks!!
-
I m also fighting with same problem
-
Try this:
Public Sub ModemCallWin95_98()
Dim WIN
WIN = Shell("rundll32.exe rnaui.dll,RnaDial " & "Connect Name", 1)
End Sub
Public Sub ModemCallWinNT()
Dim NT
NT = Shell("rasphone.exe [-d Connect Name]", 1)
End Sub
-Dj4