Click here to Skip to main content
Click here to Skip to main content

Opening a Dial-Up connection

By , 13 Jan 2000
 
  • 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
    No Biography provided

    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

     
    Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
    You must Sign In to use this message board.
    Search this forum  
        Spacing  Noise  Layout  Per page   
    GeneralProblem with proxymembermahila6 Jan '06 - 23:18 
    GeneralNicemembereuacela12 Sep '04 - 11:51 
    GeneralWin 98 & RasDialmembershoshana13 Jul '04 - 0:55 
    GeneralRe: Win 98 & RasDialmemberleechangjun29 Mar '11 - 21:51 
    GeneralRegarding creating Dialup via Visual Basicmemberautometa2 Feb '04 - 23:31 
    GeneralNewer ras.hmembernikouhl6 Aug '03 - 5:26 
    GeneralGetting the IP address from the Remote PCmemberLeon v Wyk10 Apr '03 - 1:40 
    GeneralPlease helpmemberbowetech14 Feb '03 - 16:25 
    GeneralRe: Please helpmemberLeon v Wyk10 Apr '03 - 1:13 
    GeneralThis code overwrites original PhoneBookmemberTili18 Jul '02 - 15:57 
    QuestionWhat if i dial ¶ÌÈ©¥memberAnonymous21 Feb '02 - 18:56 
    GeneralWindows 98 as dial-up servermemberFelvi20 Feb '02 - 16:01 
    GeneralRe: Windows 98 as dial-up servermemberLeon v Wyk10 Apr '03 - 1:17 
    GeneralRE: DialUpsussMartijn Hoogendoorn6 Mar '00 - 10:42 
    GeneralMake link dynamicsussBrad Bruce15 Jan '00 - 5:25 

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

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