| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- object Form1: TForm1
- Left = 200
- Height = 240
- Top = 100
- Width = 320
- Caption = 'Form1'
- ClientHeight = 240
- ClientWidth = 320
- OnCreate = FormCreate
- OnDestroy = FormDestroy
- object Button1: TButton
- Left = 24
- Height = 25
- Top = 24
- Width = 75
- Caption = 'Button1'
- TabOrder = 0
- OnClick = Button1Click
- end
- object Button2: TButton
- Left = 24
- Height = 25
- Top = 72
- Width = 75
- Caption = 'Button2'
- TabOrder = 1
- OnClick = Button2Click
- end
- object Button3: TButton
- Left = 144
- Height = 25
- Top = 24
- Width = 75
- Caption = 'Button3'
- TabOrder = 2
- OnClick = Button3Click
- end
- object Button4: TButton
- Left = 144
- Height = 25
- Top = 72
- Width = 75
- Caption = 'Button4'
- TabOrder = 3
- OnClick = Button4Click
- end
- end
|