1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- object Form3: TForm3
- Left = 222
- Top = 237
- Caption = 'Form3'
- ClientHeight = 230
- ClientWidth = 432
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OldCreateOrder = False
- OnCreate = FormCreate
- OnDestroy = FormDestroy
- PixelsPerInch = 96
- TextHeight = 13
- object Timer3: TTimer
- Interval = 100
- OnTimer = Timer3Timer
- Left = 64
- Top = 104
- end
- object ClientSocket: TClientSocket
- Active = False
- ClientType = ctNonBlocking
- Port = 0
- OnConnect = ClientSocketConnect
- OnDisconnect = ClientSocketDisconnect
- OnRead = SocketRead
- OnError = ClientSocketError
- Left = 152
- Top = 56
- end
- object ServerSocket: TServerSocket
- Active = False
- Port = 0
- ServerType = stNonBlocking
- OnClientConnect = ServerSocketClientConnect
- OnClientRead = SocketRead
- Left = 160
- Top = 152
- end
- end
|