Cleanup.dfm 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. object CleanupDialog: TCleanupDialog
  2. Left = 356
  3. Top = 218
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_cleanup'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Cleanup application data'
  9. ClientHeight = 299
  10. ClientWidth = 489
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poOwnerFormCenter
  15. OnShow = FormShow
  16. DesignSize = (
  17. 489
  18. 299)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Label1: TLabel
  22. Left = 8
  23. Top = 8
  24. Width = 475
  25. Height = 97
  26. Anchors = [akLeft, akTop, akRight]
  27. AutoSize = False
  28. Caption =
  29. 'Following list contains all application data possibly stored on ' +
  30. 'this computer. Check those you want to remove.'#13#10#13#10'If another int' +
  31. 'ance of application is running, please close it before cleaning ' +
  32. 'data.'#13#10#13#10'Notice: Opening session and/or next execution of applic' +
  33. 'ation will recreate some of data.'
  34. WordWrap = True
  35. end
  36. object OKButton: TButton
  37. Left = 249
  38. Top = 268
  39. Width = 75
  40. Height = 25
  41. Anchors = [akRight, akBottom]
  42. Caption = 'OK'
  43. Default = True
  44. ModalResult = 1
  45. TabOrder = 2
  46. end
  47. object CancelButton: TButton
  48. Left = 329
  49. Top = 268
  50. Width = 75
  51. Height = 25
  52. Anchors = [akRight, akBottom]
  53. Cancel = True
  54. Caption = 'Close'
  55. ModalResult = 2
  56. TabOrder = 3
  57. end
  58. object DataListView: TListView
  59. Left = 8
  60. Top = 104
  61. Width = 475
  62. Height = 156
  63. Anchors = [akLeft, akTop, akRight, akBottom]
  64. Checkboxes = True
  65. Columns = <
  66. item
  67. Caption = 'Data'
  68. Tag = 1
  69. Width = 160
  70. end
  71. item
  72. Caption = 'Location'
  73. Width = 500
  74. end>
  75. ColumnClick = False
  76. HideSelection = False
  77. Items.Data = {
  78. F70000000600000001000000FFFFFFFFFFFFFFFF00000000000000001647656E
  79. 6572616C20636F6E66696775726174696F6E5802000000FFFFFFFFFFFFFFFF00
  80. 000000000000001053746F7265642073657373696F6E735803000000FFFFFFFF
  81. FFFFFFFF00000000000000001143616368656420686F7374206B657973580400
  82. 0000FFFFFFFFFFFFFFFF000000000000000017436F6E66696775726174696F6E
  83. 20494E492066696C655805000000FFFFFFFFFFFFFFFF00000000000000001152
  84. 616E646F6D20736565642066696C655806000000FFFFFFFFFFFFFFFF00000000
  85. 000000001254656D706F7261727920666F6C6465727358}
  86. ReadOnly = True
  87. RowSelect = True
  88. ParentShowHint = False
  89. ShowHint = True
  90. TabOrder = 0
  91. ViewStyle = vsReport
  92. OnInfoTip = DataListViewInfoTip
  93. OnKeyUp = DataListViewKeyUp
  94. OnMouseDown = DataListViewMouseDown
  95. end
  96. object CheckAllButton: TButton
  97. Left = 8
  98. Top = 266
  99. Width = 89
  100. Height = 25
  101. Anchors = [akLeft, akBottom]
  102. Caption = 'Un/check &all'
  103. TabOrder = 1
  104. OnClick = CheckAllButtonClick
  105. end
  106. object HelpButton: TButton
  107. Left = 409
  108. Top = 268
  109. Width = 75
  110. Height = 25
  111. Anchors = [akRight, akBottom]
  112. Caption = '&Help'
  113. TabOrder = 4
  114. OnClick = HelpButtonClick
  115. end
  116. end