home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2009 / 150Juegos_15.iso / Shareware / NETPong / Netpong.exe / 0 / RCDATA / TFORM1 / TFORM1.txt
Encoding:
Text File  |  1999-09-16  |  3.7 KB  |  179 lines

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 107
  4.   HorzScrollBar.Visible = False
  5.   VertScrollBar.Visible = False
  6.   BorderIcons = [biSystemMenu]
  7.   BorderStyle = bsSingle
  8.   Caption = 'NETPong! v0.2∩┐╜'
  9.   ClientHeight = 329
  10.   ClientWidth = 505
  11.   Color = clBlack
  12.   Font.Charset = DEFAULT_CHARSET
  13.   Font.Color = clWindowText
  14.   Font.Height = -11
  15.   Font.Name = 'MS Sans Serif'
  16.   Font.Style = []
  17.   Menu = MainMenu1
  18.   OldCreateOrder = False
  19.   Position = poScreenCenter
  20.   OnClick = FormClick
  21.   OnClose = FormClose
  22.   OnMouseMove = FormMouseMove
  23.   OnShow = FormShow
  24.   PixelsPerInch = 96
  25.   TextHeight = 13
  26.   object Score2: TLabel
  27.     Left = 400
  28.     Top = 16
  29.     Width = 32
  30.     Height = 48
  31.     Caption = '0'
  32.     Font.Charset = OEM_CHARSET
  33.     Font.Color = clWhite
  34.     Font.Height = -47
  35.     Font.Name = 'Terminal'
  36.     Font.Style = []
  37.     ParentFont = False
  38.     OnClick = FormClick
  39.     OnMouseMove = Score2MouseMove
  40.   end
  41.   object Score1: TLabel
  42.     Left = 72
  43.     Top = 16
  44.     Width = 32
  45.     Height = 48
  46.     Caption = '0'
  47.     Font.Charset = OEM_CHARSET
  48.     Font.Color = clWhite
  49.     Font.Height = -47
  50.     Font.Name = 'Terminal'
  51.     Font.Style = []
  52.     ParentFont = False
  53.     OnClick = FormClick
  54.     OnMouseMove = Score1MouseMove
  55.   end
  56.   object Net: TShape
  57.     Left = 248
  58.     Top = 8
  59.     Width = 9
  60.     Height = 297
  61.     OnMouseMove = NetMouseMove
  62.   end
  63.   object Paddle2: TShape
  64.     Left = 480
  65.     Top = 8
  66.     Width = 17
  67.     Height = 57
  68.     OnMouseMove = Paddle2MouseMove
  69.   end
  70.   object Paddle1: TShape
  71.     Left = 7
  72.     Top = 8
  73.     Width = 17
  74.     Height = 57
  75.     OnMouseMove = Paddle1MouseMove
  76.   end
  77.   object Ball: TShape
  78.     Left = 288
  79.     Top = 96
  80.     Width = 17
  81.     Height = 17
  82.     Shape = stSquare
  83.   end
  84.   object Memo1: TMemo
  85.     Left = 288
  86.     Top = 192
  87.     Width = 185
  88.     Height = 89
  89.     Lines.Strings = (
  90.       'Memo1')
  91.     TabOrder = 0
  92.     Visible = False
  93.     OnKeyDown = Memo1KeyDown
  94.   end
  95.   object StatusBar1: TStatusBar
  96.     Left = 0
  97.     Top = 310
  98.     Width = 505
  99.     Height = 19
  100.     Panels = <
  101.       item
  102.         Width = 50
  103.       end>
  104.     SimplePanel = False
  105.   end
  106.   object ClientSocket1: TClientSocket
  107.     Active = False
  108.     ClientType = ctNonBlocking
  109.     Port = 4000
  110.     OnConnect = ClientSocket1Connect
  111.     OnDisconnect = ClientSocket1Disconnect
  112.     OnRead = ClientSocket1Read
  113.     Left = 128
  114.     Top = 32
  115.   end
  116.   object ServerSocket1: TServerSocket
  117.     Active = False
  118.     Port = 4000
  119.     ServerType = stNonBlocking
  120.     OnClientConnect = ServerSocket1ClientConnect
  121.     OnClientDisconnect = ServerSocket1ClientDisconnect
  122.     OnClientRead = ServerSocket1ClientRead
  123.     Left = 160
  124.     Top = 32
  125.   end
  126.   object MainMenu1: TMainMenu
  127.     Left = 64
  128.     Top = 32
  129.     object Pong1: TMenuItem
  130.       Caption = 'NETPong!'
  131.       object Connect: TMenuItem
  132.         Caption = 'Connect'
  133.         ShortCut = 16451
  134.         OnClick = ConnectClick
  135.       end
  136.       object Listen: TMenuItem
  137.         Caption = 'Listen'
  138.         ShortCut = 16460
  139.         OnClick = ListenClick
  140.       end
  141.       object Disconnect: TMenuItem
  142.         Caption = 'Disconnect'
  143.         ShortCut = 16452
  144.         OnClick = DisconnectClick
  145.       end
  146.       object Options: TMenuItem
  147.         Caption = 'Options'
  148.         ShortCut = 16463
  149.         OnClick = OptionsClick
  150.       end
  151.       object Exit1: TMenuItem
  152.         Caption = 'Exit'
  153.         OnClick = Exit1Click
  154.       end
  155.     end
  156.     object Help1: TMenuItem
  157.       Caption = 'Help'
  158.       object AboutNETPong1: TMenuItem
  159.         Caption = 'About NETPong!'
  160.         OnClick = AboutNETPong1Click
  161.       end
  162.     end
  163.   end
  164.   object Timer1: TTimer
  165.     Interval = 1
  166.     OnTimer = Timer1Timer
  167.     Left = 32
  168.     Top = 32
  169.   end
  170.   object NMUDP1: TNMUDP
  171.     RemotePort = 4001
  172.     LocalPort = 4001
  173.     ReportLevel = 1
  174.     OnDataReceived = NMUDP1DataReceived
  175.     Left = 96
  176.     Top = 32
  177.   end
  178. end
  179.