Results 1 to 2 of 2

Thread: dial-up networking

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 1999
    Location
    rute 507, 3370 VIKERSUND, NORWAY
    Posts
    2

    Post

    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?

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

  2. #2
    Lively Member
    Join Date
    Jan 1999
    Location
    Karjalohja, Finland
    Posts
    123

    Post

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width