Click here to Skip to main content
Licence 
First Posted 13 Jan 2000
Views 118,989
Bookmarked 26 times

Opening a Dial-Up connection

By | 13 Jan 2000 | Article
How to open a new dialup connection using RasDial
  • Download demo project - 10 Kb
  • There is a code for Dial-Up connection. Alexander Fedorov discusses in his article Calling RasHangUp without errors how to disconnect a dial-up connection. This is other part of same problem (accessing the internet via phone line). This task can be done by using the CInternetSession::GetFtpConnection() function for example, but only if all parameters in the dial-up dialog are present (but then you can't set the username, password and phone number programatically).

    To use this function you must include the "ras.h" and "raserror.h" header files and link with rasapi32.lib.

    bool DialUp() 
    {    
        // Fill RASDIALPARAMS structure
        RASDIALPARAMS rdParams;
        rdParams.dwSize = sizeof(RASDIALPARAMS);
        rdParams.szEntryName[0] = '\0';
        lstrcpy(rdParams.szPhoneNumber, szPhoneNumberToDial);
        rdParams.szCallbackNumber[0] = '\0';
        lstrcpy( rdParams.szUserName, szUserName );
        lstrcpy( rdParams.szPassword, szPassword );    
        rdParams.szDomain[0] = '\0';
    
        HRASCONN hRasConn = NULL;
        DWORD dwRet = RasDial( NULL, NULL, &rdParams, 0L, NULL, &hRasConn );
    
        // Everything OK?
        if (dwRet == 0)  
            return true;    
    
        // Error occurred - get error description and alert user
        char  szBuf[256];
        if (RasGetErrorString( (UINT)dwRet, (LPSTR)szBuf, 256 ) != 0 )
            wsprintf( (LPSTR)szBuf, "Undefined RAS Dial Error (%ld).", dwRet );
        RasHangUp( hRasConn );
        AfxMessageBox( NULL, (LPSTR)szBuf, "Error", MB_OK | MB_ICONSTOP );
    
        return false;
    }
    

    Note that here I'm using the synchronous version (the fifth parameter of RasDial() is NULL). The updated version can use a pointer to the RasDialFunc() function instead, and then RasDial() returns immediately and calls RasDialFunc() when WM_RASDIALEVENT occurs.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Mileta Radenovic

    Software Developer (Senior)

    Canada Canada

    Member



    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    GeneralProblem with proxy Pinmembermahila23:18 6 Jan '06  
    GeneralNice Pinmembereuacela11:51 12 Sep '04  
    GeneralWin 98 & RasDial Pinmembershoshana0:55 13 Jul '04  
    GeneralRe: Win 98 & RasDial Pinmemberleechangjun21:51 29 Mar '11  
    GeneralRegarding creating Dialup via Visual Basic Pinmemberautometa23:31 2 Feb '04  
    GeneralNewer ras.h Pinmembernikouhl5:26 6 Aug '03  
    GeneralGetting the IP address from the Remote PC PinmemberLeon v Wyk1:40 10 Apr '03  
    GeneralPlease help Pinmemberbowetech16:25 14 Feb '03  
    GeneralRe: Please help PinmemberLeon v Wyk1:13 10 Apr '03  
    GeneralThis code overwrites original PhoneBook PinmemberTili15:57 18 Jul '02  
    QuestionWhat if i dial ¶ÌÈ©¥ PinmemberAnonymous18:56 21 Feb '02  
    GeneralWindows 98 as dial-up server PinmemberFelvi16:01 20 Feb '02  
    GeneralRe: Windows 98 as dial-up server PinmemberLeon v Wyk1:17 10 Apr '03  
    GeneralRE: DialUp PinsussMartijn Hoogendoorn10:42 6 Mar '00  
    GeneralMake link dynamic PinsussBrad Bruce5:25 15 Jan '00  

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

    Permalink | Advertise | Privacy | Mobile
    Web01 | 2.5.120517.1 | Last Updated 14 Jan 2000
    Article Copyright 2000 by Mileta Radenovic
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid