Cleanup.dfm 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 ins' +
  31. 'tance of application is running, please close it before cleaning' +
  32. ' data.'#13#10#13#10'Notice: Opening session and/or next execution of appli' +
  33. 'cation will recreate some of data.'
  34. ShowAccelChar = False
  35. WordWrap = True
  36. end
  37. object OKButton: TButton
  38. Left = 249
  39. Top = 268
  40. Width = 75
  41. Height = 25
  42. Anchors = [akRight, akBottom]
  43. Caption = 'OK'
  44. Default = True
  45. ModalResult = 1
  46. TabOrder = 2
  47. end
  48. object CancelButton: TButton
  49. Left = 329
  50. Top = 268
  51. Width = 75
  52. Height = 25
  53. Anchors = [akRight, akBottom]
  54. Cancel = True
  55. Caption = 'Close'
  56. ModalResult = 2
  57. TabOrder = 3
  58. end
  59. object DataListView: TListView
  60. Left = 8
  61. Top = 104
  62. Width = 475
  63. Height = 156
  64. Anchors = [akLeft, akTop, akRight, akBottom]
  65. Checkboxes = True
  66. Columns = <
  67. item
  68. Caption = 'Data'
  69. Width = 160
  70. end
  71. item
  72. Caption = 'Location'
  73. Width = 500
  74. end>
  75. ColumnClick = False
  76. DoubleBuffered = True
  77. HideSelection = False
  78. ReadOnly = True
  79. RowSelect = True
  80. ParentDoubleBuffered = False
  81. ParentShowHint = False
  82. ShowHint = True
  83. TabOrder = 0
  84. ViewStyle = vsReport
  85. OnInfoTip = DataListViewInfoTip
  86. OnKeyUp = DataListViewKeyUp
  87. OnMouseDown = DataListViewMouseDown
  88. end
  89. object CheckAllButton: TButton
  90. Left = 8
  91. Top = 266
  92. Width = 108
  93. Height = 25
  94. Anchors = [akLeft, akBottom]
  95. Caption = 'Un/check &all'
  96. TabOrder = 1
  97. OnClick = CheckAllButtonClick
  98. end
  99. object HelpButton: TButton
  100. Left = 409
  101. Top = 268
  102. Width = 75
  103. Height = 25
  104. Anchors = [akRight, akBottom]
  105. Caption = '&Help'
  106. TabOrder = 4
  107. OnClick = HelpButtonClick
  108. end
  109. end