|
-
Jul 14th, 2000, 05:10 PM
#1
Thread Starter
Member
How would i bring up the DUN wizard to create a new dialup account in Windows98 & Windows2000 from within a VB application.
-
Jul 17th, 2000, 01:29 AM
#2
Lively Member
You can run the Internet Connection Wizard by running INETWIZ.EXE from the Internet Explorer folder or from the shell prompt. If you want to run the DUN new connection wizard then you will need to find its corresponding API call inside RASAPI.DLL etc... Good luck.
Regards,
 Paul Rivoli 
---------------------
[email protected]
http://members.dingoblue.net.au/~privoli
-
Jul 17th, 2000, 01:43 AM
#3
Lively Member
Try this:
Public Sub NewDialEntryWin95_98()
Dim WIN
WIN = Shell("rundll32.exe rnaui.dll,RnaWizard, 1)
End Sub
Public Sub NewDialEntryWinNT()
Dim NT
NT = Shell("rasphone.exe -a", 1)
End Sub
-Dj4
-
Jul 17th, 2000, 04:19 PM
#4
Thread Starter
Member
Thanks alot
It works perfectly
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
|