| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- object Form1: TForm1
- Left = 200
- Height = 240
- Top = 100
- Width = 320
- Caption = 'Form1'
- ClientHeight = 240
- ClientWidth = 320
- OnCreate = FormCreate
- OnDestroy = FormDestroy
- LCLVersion = '2.2.6.0'
- object Button1: TButton
- Left = 24
- Height = 25
- Top = 24
- Width = 75
- Caption = 'Button1'
- OnClick = Button1Click
- TabOrder = 0
- end
- object Button2: TButton
- Left = 24
- Height = 25
- Top = 72
- Width = 75
- Caption = 'Button2'
- OnClick = Button2Click
- TabOrder = 1
- end
- object Button3: TButton
- Left = 144
- Height = 25
- Top = 24
- Width = 75
- Caption = 'Button3'
- OnClick = Button3Click
- TabOrder = 2
- end
- object Button4: TButton
- Left = 144
- Height = 25
- Top = 72
- Width = 75
- Caption = 'Button4'
- OnClick = Button4Click
- TabOrder = 3
- end
- object Memo1: TMemo
- Left = 0
- Height = 114
- Top = 126
- Width = 320
- Align = alBottom
- Anchors = [akTop, akLeft, akRight, akBottom]
- Lines.Strings = (
- 'Memo1'
- )
- OnChange = Memo1Change
- OnDblClick = Memo1DblClick
- ScrollBars = ssBoth
- TabOrder = 4
- WordWrap = False
- end
- object Label1: TLabel
- Left = 260
- Height = 15
- Top = 49
- Width = 34
- Caption = 'Label1'
- ParentColor = False
- end
- end
|