home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / DELPHI / LCSIPPT / SAMPLES / MAINFRM.DFM / MAINFRM.txt
Text File  |  1995-04-11  |  2KB  |  101 lines

  1. object MainForm: TMainForm
  2.   Left = 264
  3.   Top = 153
  4.   Width = 510
  5.   Height = 342
  6.   Caption = 'Sample TIPPort program'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = [fsBold]
  11.   FormStyle = fsMDIForm
  12.   Menu = MainMenu
  13.   PixelsPerInch = 96
  14.   OnCreate = FormCreate
  15.   TextHeight = 13
  16.   object StatusBar: TPanel
  17.     Left = 0
  18.     Top = 273
  19.     Width = 502
  20.     Height = 23
  21.     Align = alBottom
  22.     Alignment = taLeftJustify
  23.     BorderWidth = 2
  24.     Font.Color = clBlack
  25.     Font.Height = -11
  26.     Font.Name = 'MS Sans Serif'
  27.     Font.Style = []
  28.     ParentFont = False
  29.     TabOrder = 0
  30.   end
  31.   object Memo1: TMemo
  32.     Left = 0
  33.     Top = 36
  34.     Width = 502
  35.     Height = 237
  36.     Align = alClient
  37.     Font.Color = clBlack
  38.     Font.Height = -13
  39.     Font.Name = 'Courier New'
  40.     Font.Style = []
  41.     ParentFont = False
  42.     ScrollBars = ssVertical
  43.     TabOrder = 1
  44.   end
  45.   object Panel1: TPanel
  46.     Left = 0
  47.     Top = 0
  48.     Width = 502
  49.     Height = 36
  50.     Align = alTop
  51.     TabOrder = 2
  52.     object FName: TEdit
  53.       Left = 18
  54.       Top = 9
  55.       Width = 274
  56.       Height = 20
  57.       TabOrder = 0
  58.     end
  59.     object Btn1: TButton
  60.       Left = 299
  61.       Top = 5
  62.       Width = 89
  63.       Height = 24
  64.       Caption = 'Finger'
  65.       TabOrder = 1
  66.       OnClick = Btn1Click
  67.     end
  68.     object Btn2: TButton
  69.       Left = 394
  70.       Top = 5
  71.       Width = 89
  72.       Height = 24
  73.       Caption = 'Get Time'
  74.       TabOrder = 2
  75.       OnClick = Btn2Click
  76.     end
  77.   end
  78.   object MainMenu: TMainMenu
  79.     Left = 331
  80.     Top = 169
  81.     object FileMenu: TMenuItem
  82.       Caption = '&File'
  83.       object FileExitItem: TMenuItem
  84.         Caption = 'E&xit'
  85.         Hint = 'Exit this application'
  86.         OnClick = FileExit
  87.       end
  88.     end
  89.   end
  90.   object IPPort1: TIPPort
  91.     OnDataAvailable = IPPort1DataAvailable
  92.     OnSocketClose = IPPort1SocketClose
  93.     OnSocketConnect = IPPort1SocketConnect
  94.     OnDataReady = IPPort1DataReady
  95.     OnTimeOut = IPPort1TimeOut
  96.     LocalPort = '0'
  97.     Left = 368
  98.     Top = 169
  99.   end
  100. end
  101.