1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- object Form1: TForm1
- Left = 0
- Top = 0
- Caption = 'Formulario'
- ClientHeight = 269
- ClientWidth = 317
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- OldCreateOrder = False
- PixelsPerInch = 96
- TextHeight = 13
- object lst1: TListBox
- Left = 24
- Top = 48
- Width = 121
- Height = 97
- ItemHeight = 13
- Items.Strings = (
- 'Papas'
- 'Manzanas'
- 'Mandarinas'
- 'Uvas'
- 'Cebollas'
- 'Mel'#243'n'
- 'Sandia'
- 'Pi'#241'a'
- 'Pepino'
- 'Mango')
- TabOrder = 0
- end
- object btn1: TButton
- Left = 24
- Top = 168
- Width = 121
- Height = 25
- Caption = 'Copiar'
- TabOrder = 1
- OnClick = btn1Click
- end
- object lst2: TListBox
- Left = 168
- Top = 48
- Width = 121
- Height = 97
- ItemHeight = 13
- TabOrder = 2
- end
- end
|