Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/Super TCP Channel Chat/SuperTCPChannelChat_Client.dpr
2010-01-29 16:17:43 +00:00

15 lines
358 B
ObjectPascal

program SuperTCPChannelChat_Client;
uses
uROComInit,
Forms,
SuperTCPChannelChat_ClientMain in 'SuperTCPChannelChat_ClientMain.pas' {SuperTCPChannelChat_ClientMainForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TSuperTCPChannelChat_ClientMainForm, SuperTCPChannelChat_ClientMainForm);
Application.Run;
end.