Link to home
Start Free TrialLog in
Avatar of -Karamja-
-Karamja-

asked on

ServerSocket & Console App

Hello,

How can I use ServerSocket's in a console app, Or somethink like ServerSocket that can be used in console app.

Thx Karamja
Avatar of shaneholmes
shaneholmes


 AServerSocket:= TServerSocket.Create(nil);
 
 SHane
ASKER CERTIFIED SOLUTION
Avatar of shaneholmes
shaneholmes

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of -Karamja-

ASKER

Where do I put this code and how to I use it. Remember im making a console app.

program Project2;

{$APPTYPE CONSOLE}

uses
  SysUtils;

begin

end.
Dont matter got it now,

var
AServerSocket: TServerSocket;

Thx For your help.
OK, Let me know if you need anymore help!

Shane