home *** CD-ROM | disk | FTP | other *** search
- object Form1: TForm1
- Left = 201
- Top = 99
- ActiveControl = Edit1
- AutoScroll = False
- Caption = 'Drag and Drop Example'
- ClientHeight = 186
- ClientWidth = 427
- Color = clNavy
- Font.Color = clWindowText
- Font.Height = -21
- Font.Name = 'System'
- Font.Style = []
- KeyPreview = True
- PixelsPerInch = 120
- OnKeyDown = FormKeyDown
- TextHeight = 20
- object Label1: TLabel
- Left = 72
- Top = 16
- Width = 316
- Height = 22
- Caption = 'Drag Text From ListBox to Edit Control'
- Color = clNavy
- Font.Color = clAqua
- Font.Height = -20
- Font.Name = 'Times New Roman'
- Font.Style = []
- ParentColor = False
- ParentFont = False
- end
- object Edit1: TEdit
- Left = 240
- Top = 96
- Width = 161
- Height = 31
- Color = clTeal
- DragMode = dmAutomatic
- Font.Color = clBlack
- Font.Height = -20
- Font.Name = 'Times New Roman'
- Font.Style = []
- ParentFont = False
- TabOrder = 0
- Text = 'Edit1'
- OnDragDrop = Edit1DragDrop
- OnDragOver = Edit1DragOver
- end
- object ListBox1: TListBox
- Left = 32
- Top = 56
- Width = 161
- Height = 113
- Color = clTeal
- DragMode = dmAutomatic
- Font.Color = clBlack
- Font.Height = -20
- Font.Name = 'Times New Roman'
- Font.Style = []
- ItemHeight = 22
- Items.Strings = (
- 'One'
- 'Two'
- 'Three'
- 'Four'
- 'Five')
- ParentFont = False
- TabOrder = 1
- end
- end
-