how to dialup to internet use my adsl acount?
Why do you need to dial up. An ADSL connection is always hot.
Paul
Hi UtillMasm,
Are you using a USB ADSL router?
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
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/
just make a little program that bring up adsl connection dial dialogbox.
Maybe, this one can give you an idea :
Showing Dial-up Connection Status Window (http://www.codeproject.com/KB/IP/connectionstatus.aspx)
:(
That's a VC++ 6.0 MFC sources.
Someone convert it to masm32. :red
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.
.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