Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.18 KB

File metadata and controls

42 lines (28 loc) · 1.18 KB

Home

Dial the Net Automatically

Code:

* Source: http://www.vb-world.net/tips/tip478.html
* Author: http://www.vb-world.net/php-bin/authorbio.php?
*         authorid=3&associd=478&assoctype=3

#DEFINE INTERNET_AUTODIAL_FORCE_ONLINE      1
#DEFINE INTERNET_AUTODIAL_FORCE_UNATTENDED  2

DECLARE INTEGER InternetAutodial IN wininet.dll;
	INTEGER dwFlags, INTEGER dwReserved

DECLARE INTEGER InternetAutodialHangup IN wininet.dll;
	INTEGER dwReserved

* To prompt the user to establish a Net connection
= InternetAutodial (INTERNET_AUTODIAL_FORCE_ONLINE, 0)

* To automatically start dialling
= InternetAutodial (INTERNET_AUTODIAL_FORCE_UNATTENDED, 0)

* To disconnect an automatically dialled connection
= InternetAutodialHangup(0)  

Listed functions:

InternetAutodial
InternetAutodialHangup

Comment:

With my cable connection to the Net I have no chance to test this code. Have no dial-up modem either.

*Whoever could test it, please let me know if any corrections needed to this code. *