?? tcpstreamserver.dpr
字號:
// NOTE: This demo ONLY runs under Windows.
program TCPStreamServer;
uses
Forms,
ServerMain in 'ServerMain.pas' {Form1};
{$R *.RES}
{
Indy TCP Stream Server Demo
Don Siders <sidersd@att.net>
October 6, 2000
Demonstrates use of the following:
TIdTCPServer.Execute to service threaded connection requests.
TIdTCPServer.WriteStream to send data to the client.
TIdTCPServer.OpenWriteBuffer, TIdTCPServer.CloseWriteBuffer to manage
Indy data buffering prior to transmission.
Run TCPStreamServer.EXE prior to using TCPStreamClient.
}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -