| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- object FormMain: TFormMain
- Left = 269
- Top = 103
- BorderIcons = [biSystemMenu, biMinimize]
- BorderStyle = bsDialog
- Caption = 'Virtual File Stream (File Contents) Demo'
- ClientHeight = 230
- ClientWidth = 373
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Style = []
- OldCreateOrder = False
- Position = poDefaultPosOnly
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 14
- object Panel1: TPanel
- Left = 0
- Top = 0
- Width = 373
- Height = 171
- Align = alClient
- BevelOuter = bvNone
- BorderWidth = 4
- Caption = ' '
- TabOrder = 0
- object ListView1: TListView
- Left = 4
- Top = 4
- Width = 365
- Height = 163
- Cursor = crHandPoint
- Align = alClient
- Columns = <
- item
- Caption = 'File name'
- Width = 100
- end
- item
- AutoSize = True
- Caption = 'Contents'
- end>
- Items.Data = {
- A90000000200000000000000FFFFFFFFFFFFFFFF01000000000000000D466972
- 737446696C652E74787428546869732069732074686520636F6E74656E74206F
- 66207468652066697273742066696C652E2E2E00000000FFFFFFFFFFFFFFFF01
- 000000000000000E5365636F6E6446696C652E7478742E2E2E2E616E64207468
- 69732069732074686520636F6E74656E74206F6620746865207365636F6E6420
- 66696C652EFFFFFFFF}
- ReadOnly = True
- TabOrder = 0
- ViewStyle = vsReport
- OnMouseDown = OnMouseDown
- end
- end
- object Panel2: TPanel
- Left = 0
- Top = 171
- Width = 373
- Height = 59
- Align = alBottom
- BevelOuter = bvNone
- BorderWidth = 4
- Caption = ' '
- TabOrder = 1
- object Memo1: TMemo
- Left = 4
- Top = 4
- Width = 365
- Height = 51
- TabStop = False
- Align = alClient
- BorderStyle = bsNone
- Lines.Strings = (
-
- 'Drag between the above list and any application which accepts th' +
- 'e '
-
- 'FileContents format (e.g. the VirtualFile demo application or Ex' +
- 'plorer and '
- 'Outlook).')
- ParentColor = True
- ReadOnly = True
- TabOrder = 0
- WantReturns = False
- end
- end
- object DropDummy1: TDropDummy
- Dragtypes = []
- GetDataOnEnter = False
- ShowImage = True
- Target = Owner
- AllowAsyncTransfer = False
- Left = 96
- Top = 120
- end
- object DropEmptySource1: TDropEmptySource
- DragTypes = [dtCopy, dtMove]
- OnAfterDrop = DropEmptySource1AfterDrop
- ImageIndex = 0
- ShowImage = False
- ImageHotSpotX = 16
- ImageHotSpotY = 16
- AllowAsyncTransfer = False
- Left = 16
- Top = 88
- end
- object DropEmptyTarget1: TDropEmptyTarget
- Dragtypes = [dtCopy, dtLink]
- GetDataOnEnter = False
- OnEnter = DropEmptyTarget1Enter
- OnDrop = DropEmptyTarget1Drop
- ShowImage = True
- Target = ListView1
- AllowAsyncTransfer = False
- Left = 56
- Top = 88
- end
- object DataFormatAdapterSource: TDataFormatAdapter
- DragDropComponent = DropEmptySource1
- DataFormatName = 'TVirtualFileStreamDataFormat'
- Enabled = True
- Left = 16
- Top = 120
- end
- object DataFormatAdapterTarget: TDataFormatAdapter
- DragDropComponent = DropEmptyTarget1
- DataFormatName = 'TVirtualFileStreamDataFormat'
- Enabled = True
- Left = 56
- Top = 120
- end
- end
|