Показать сообщение отдельно

  #8  
Старый 08.03.2009, 19:55
AlexTheC0d3r
Постоянный
Регистрация: 25.07.2008
Сообщений: 454
С нами: 9365528

Репутация: 425
По умолчанию

program project2;

uses
Windows,
sysutils,
ICQClient;

{$R *.res}

var ICQClient1: TICQClient;

procedure ewq;
begin

end;

procedure qwe;
begin

end;


procedure application;
begin
ICQClient1.DisableDirectConnections:= True;
ICQClient1.ICQServer:= 'login.icq.com';
ICQClient1.ICQPort:= 5190;
ICQClient1.UIN:= StrToIntDef(Trim('43****043'), 0);
ICQClient1.Password := Trim('X*****DI');
ICQClient1.Login();
end;

procedure icqclient1onlogin;
begin
icqclient1.SendMessage(331122,'asdasdasd');
end;

procedure icqclient1onmessagerecv(uin,msg:string);
begin
end;


end.
 
Ответить с цитированием