|
-
May 7th, 2001, 02:55 PM
#1
Thread Starter
New Member
Dial up BOX
How can I show the Dial Up Box , with an API Call ?
Sorry I Don't speak english
Javier Gonzalez
-
May 7th, 2001, 07:19 PM
#2
Try this:
Code:
Shell "rundll32.exe rnaui.dll,RnaDial " _
& "connections_name", 1
-
May 8th, 2001, 09:00 AM
#3
Thread Starter
New Member
Module Error
Your example return a error , module rnaui.dll not found
-
May 8th, 2001, 11:33 AM
#4
Thread Starter
New Member
-
May 8th, 2001, 11:57 PM
#5
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
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
|