Autor Beitrag
Pyr0cracker
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 164

Win XP, Ubuntu 8.04, openSUSE 11.0
Delphi 7 Personal
BeitragVerfasst: Mi 12.03.03 22:50 
hi, weiss jemand wie ich eine dfüverbinfung herstellen und trennen kann?
danke schon mal,
DeCodeGuru
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Beiträge: 1333
Erhaltene Danke: 1

Arch Linux
Eclipse
BeitragVerfasst: Mi 12.03.03 23:00 
da gibts ne Kompo für. TDialUp. Such mal bei torry; da habe ich die auch her.

_________________
Viele Grüße
Jakob
Pyr0cracker Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 164

Win XP, Ubuntu 8.04, openSUSE 11.0
Delphi 7 Personal
BeitragVerfasst: Mi 12.03.03 23:57 
tut mir leid, hab die komponente nicht gefunden, hast du vielleicht noch irgendwo den link?
hitstec
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 295



BeitragVerfasst: Do 13.03.03 00:52 
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
function IsOnline: boolean;
begin
  result:=InternetGetConnectedState(nil, 0);
end;

function Connect: Boolean;
begin
  Result:=false;
  if not IsOnline then Result:=InternetAutodial(internet_autodial_force_unattended,Application.Handle);
end;

function Disconnect: Boolean;
begin
  Result:=false;
  if IsOnline then result:=InternetAutodialHangup(0);
end;


Und WinSock oder WinInet (oder beide) unter uses einbinden