|
-
Apr 6th, 2001, 07:54 AM
#1
Thread Starter
New Member
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!!
-
Apr 25th, 2001, 02:26 PM
#2
Junior Member
I m also fighting with same problem
-
Apr 25th, 2001, 11:26 PM
#3
Lively Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|