The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: UtillMasm on April 14, 2009, 09:53:05 AM

Title: how to dialup to internet use my adsl acount?
Post by: UtillMasm on April 14, 2009, 09:53:05 AM
how to dialup to internet use my adsl acount?
Title: Re: how to dialup to internet use my adsl acount?
Post by: PBrennick on April 14, 2009, 03:20:06 PM
Why do you need to dial up. An ADSL connection is always hot.

Paul
Title: Re: how to dialup to internet use my adsl acount?
Post by: Vortex on April 14, 2009, 05:14:10 PM
Hi UtillMasm,

Are you using a USB ADSL router?
Title: Re: how to dialup to internet use my adsl acount?
Post by: Shantanu Gadgil on April 14, 2009, 06:28:20 PM
Quote from: PBrennick on April 14, 2009, 03:20:06 PM
Why do you need to dial up. An ADSL connection is always hot.

There are types of ADSL ... PPPoE with authentication and without authentication.

Also, in the second type, its "always hot" only if one configures to "dial" from the ADSL modem itself (enter the username/password on the modem) and it authenticates when switched ON.

If not a standard Windows dialer needs to be setup!  :bg

Regards,
Shantanu
Title: Re: how to dialup to internet use my adsl acount?
Post by: TASMUser on April 14, 2009, 08:13:05 PM
This question sounds more stupid than it is!
A DSL-dial up using standard phone-dial-up-drivers is safer than the WINXP-standard-solution!
Look here for the ultimate universal RASPPPOE-driver:
http://www.raspppoe.com/
Title: Re: how to dialup to internet use my adsl acount?
Post by: UtillMasm on April 15, 2009, 03:53:15 AM
just make a little program that bring up adsl connection dial dialogbox.
Title: Re: how to dialup to internet use my adsl acount?
Post by: Vortex on April 15, 2009, 05:33:47 PM
Maybe, this one can give you an idea :

Showing Dial-up Connection Status Window (http://www.codeproject.com/KB/IP/connectionstatus.aspx)
Title: Re: how to dialup to internet use my adsl acount?
Post by: UtillMasm on April 16, 2009, 05:10:59 AM
 :(

That's a VC++ 6.0 MFC sources.

Someone convert it to masm32. :red
Title: Re: how to dialup to internet use my adsl acount?
Post by: Vortex on April 16, 2009, 05:38:51 PM
Hi UtillMasm,

The CodeProject forum's main audience is C/C++ coders so it's not a suprise that you will find a lot of VC++ 6.0 MFC there.
Title: Re: how to dialup to internet use my adsl acount?
Post by: UtillMasm on April 17, 2009, 06:48:10 AM
.386
.model flat,stdcall
include kernel32.inc
include rasdlg.inc
includelib kernel32.lib
includelib rasdlg.lib
.code
start:
push 28h
push 8h
call GetProcessHeap
push eax
call HeapAlloc
mov dword ptr ds:[eax],28h
push eax
push 0
push 0
call RasPhonebookDlgA
push 0
call ExitProcess
end start

I done this. :bg