I am using Indy 10(TIdTcpServer) and I get the following error:
[DCC Error] MainForm.pas(88): E2066 Missing operator or semicolon
When trying to run this code:
procedure TForm1.SendMessage(Data: String; Client: Integer);
var
List: TList;
AContext: TIdContext;
begin
List := idTcpServer1.Contexts.LockList;
AContext(List[0]).Connection.IOHandler.WriteLn(Data); // Line 88
end;
I cannot figure out what I am missing; any help?