PDA

Click to See Complete Forum and Search --> : dial-up networking


onan
Aug 16th, 1999, 02:47 AM
I'm making a program that connects to the internet. I found this code to use with dial-up networking:

Shell("rundll32.exe rnaui.dll,RnaDial " _
& "connection_name", 1)

I'm running windows nt 4, but it doesn't seem to work, because the rnaui.dll doesn't exist in the windows nt dir.

what dll-file do I have to use? how?

------------------

dj4
Aug 16th, 1999, 10:04 AM
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