Ciao a tutti, su internet ho trovato questo, della winInet API:
InternetGetConnectedState
Retrieves the connection state of the local system.
function InternetGetConnectedState(
var lpdwFlags: DWORD;
dwReserved: DWORD): BOOL;
Parameters:
lpdwFlags
On exit holds a combination of flags (or-ed together) giving the connection status of the locate system:
INTERNET_CONNECTION_CONFIGURED
Local system has a valid connection to the Internet, but it might or might not be currently connected.
INTERNET_CONNECTION_LAN
Local system uses a local area network to connect to the Internet.
INTERNET_CONNECTION_MODEM
Local system uses a modem to connect to the Internet.
INTERNET_CONNECTION_OFFLINE
Local system is in offline mode.
INTERNET_CONNECTION_PROXY
Local system uses a proxy server to connect to the Internet.
INTERNET_RAS_INSTALLED
Local system has RAS installed.
dwReserved
Not currently used. Must be set to 0.
Returns: True if there is an Internet connection, False otherwise.
Io vorrei fare un controllo per vedere se il pc è connesso o no... Dato che solo ieri ho iniziato a leggere qlk guida sul delphi, nn so fare quesi niente. chi mi aiuta x utilizzare questa funzione?
vorrei fare una cosa di questo tipo:
if(InternetGetConnectedState=True) then showmessage('Pc connesso')
else ('Pc non connesso');
p.s. la function dove devo metterla??(in che punto del codice???)