Results 1 to 7 of 7

Thread: Internet connection??Other idea than Inet???

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Nov 1999
    Location
    Melbourne, Victoria, Australia
    Posts
    126
    What do you want to do? provide some more detail as what you are expecting to do and how you want to do it?

    Do you want too...

    a). dial in to the internet
    b). view a website?
    c). get emial?
    d). open a private website (https)

    Provide some more information please...

    Regards,

    Paul Rivoli
    ---------------------
    [email protected]
    http://members.dingoblue.net.au/~privoli

  2. #2
    Junior Member
    Join Date
    May 2000
    Posts
    29

    Arrow Internet Connection

    Aye!
    I just want to connect to the Internet using the password and the username provided by my ISP!!!!
    Like the dial-up control pannel!!
    Thanks

  3. #3
    Guest

    dialup/email send

    I also need to do dialup:
    My app run unattended, and must dialup the internet and send a email and disconnect automatically. I can send using Winsock OK, but it calls the windows dialup networking dialogs to do connection. If connection fails then they stop for user action...
    How can I do all the dialup/emailsend/disconnect in VB6 code, handling all errors, etc??

  4. #4
    Lively Member
    Join Date
    Jan 1999
    Location
    Karjalohja, Finland
    Posts
    123
    Here is couple example:

    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

    Or if you want using API, look here:
    http://www.totalenviro.com/PlatformVB

    And if you want using ActiveX control, look here:
    http://www.catalyst.com/
    And download here free SocketWrench package.

    - Dj4

  5. #5
    New Member
    Join Date
    Sep 1999
    Location
    Utah
    Posts
    11

    RasDial.Exe (Not RasPhone.Exe)

    I think the EXE is actually RASDIAL.EXE not RASPHONE.EXE under Windows NT. I use it on a daily basis from within batch files to do what your talking about. Type the following at the command line for more information.


    RASDIAL /?


  6. #6
    Junior Member
    Join Date
    May 2000
    Posts
    29

    Talking Inet??

    thanks for the replies but where do I have to put my accounts name and my password for my ISP???

    neon

  7. #7
    Guest
    I have checked Catalyist SOCKETWRENCH freeware
    It looks great for doing dialup. They also reply quickly to help email!
    you can use the normal Win dialup networking phone book
    (when you make new net connection from start/Accessories/dialupnetwork/make new connection)
    or code in your own name/numbers.

    Thanks for this lead...

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