Advertisement
Guest User

Untitled

a guest
Feb 16th, 2013
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. object Form6: TForm6
  2. Left = 0
  3. Top = 0
  4. Caption = 'Form6'
  5. ClientHeight = 411
  6. ClientWidth = 698
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object Label1: TLabel
  18. Left = 114
  19. Top = 14
  20. Width = 18
  21. Height = 13
  22. Caption = 'VT1'
  23. end
  24. object Label2: TLabel
  25. Left = 425
  26. Top = 21
  27. Width = 18
  28. Height = 13
  29. Caption = 'VT2'
  30. end
  31. object VT1: TVirtualStringTree
  32. Left = 24
  33. Top = 39
  34. Width = 265
  35. Height = 265
  36. ClipboardFormats.Strings = (
  37. 'Virtual Tree Data')
  38. Header.AutoSizeIndex = 0
  39. Header.DefaultHeight = 17
  40. Header.Font.Charset = DEFAULT_CHARSET
  41. Header.Font.Color = clWindowText
  42. Header.Font.Height = -11
  43. Header.Font.Name = 'Tahoma'
  44. Header.Font.Style = []
  45. Header.MainColumn = -1
  46. TabOrder = 0
  47. OnGetText = VT2GetText
  48. OnLoadNode = VT1LoadNode
  49. OnSaveNode = VT1SaveNode
  50. Columns = <>
  51. end
  52. object VT2: TVirtualStringTree
  53. Left = 425
  54. Top = 40
  55. Width = 265
  56. Height = 265
  57. Header.AutoSizeIndex = 0
  58. Header.DefaultHeight = 17
  59. Header.Font.Charset = DEFAULT_CHARSET
  60. Header.Font.Color = clWindowText
  61. Header.Font.Height = -11
  62. Header.Font.Name = 'Tahoma'
  63. Header.Font.Style = []
  64. Header.MainColumn = -1
  65. TabOrder = 1
  66. OnGetText = VT2GetText
  67. OnLoadNode = VT1LoadNode
  68. OnSaveNode = VT1SaveNode
  69. Columns = <>
  70. end
  71. object btCopyTo: TButton
  72. Left = 24
  73. Top = 352
  74. Width = 169
  75. Height = 25
  76. Caption = 'CopyTo (from VT1 to VT2)'
  77. TabOrder = 2
  78. OnClick = btCopyToClick
  79. end
  80. object btCopyPaste: TButton
  81. Left = 24
  82. Top = 8
  83. Width = 80
  84. Height = 25
  85. Caption = 'Copy'
  86. TabOrder = 3
  87. OnClick = btCopyPasteClick
  88. end
  89. object btSaveToFileAndReload: TButton
  90. Left = 199
  91. Top = 352
  92. Width = 122
  93. Height = 25
  94. Caption = 'Save VT1 to Disk'
  95. TabOrder = 4
  96. OnClick = btSaveToFileAndReloadClick
  97. end
  98. object Button1: TButton
  99. Left = 610
  100. Top = 8
  101. Width = 80
  102. Height = 25
  103. Caption = 'Paste'
  104. TabOrder = 5
  105. OnClick = Button1Click
  106. end
  107. object Button2: TButton
  108. Left = 327
  109. Top = 352
  110. Width = 122
  111. Height = 25
  112. Caption = 'Load from disk to VT2'
  113. TabOrder = 6
  114. OnClick = Button2Click
  115. end
  116. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement