Cleanup.dfm 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. 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. Width = 160
  69. end
  70. item
  71. Caption = 'Location'
  72. Width = 500
  73. end>
  74. ColumnClick = False
  75. DoubleBuffered = True
  76. HideSelection = False
  77. ReadOnly = True
  78. RowSelect = True
  79. ParentDoubleBuffered = False
  80. ParentShowHint = False
  81. ShowHint = True
  82. TabOrder = 0
  83. ViewStyle = vsReport
  84. OnInfoTip = DataListViewInfoTip
  85. OnKeyUp = DataListViewKeyUp
  86. OnMouseDown = DataListViewMouseDown
  87. end
  88. object CheckAllButton: TButton
  89. Left = 8
  90. Top = 266
  91. Width = 108
  92. Height = 25
  93. Anchors = [akLeft, akBottom]
  94. Caption = 'Un/check &all'
  95. TabOrder = 1
  96. OnClick = CheckAllButtonClick
  97. end
  98. object HelpButton: TButton
  99. Left = 409
  100. Top = 268
  101. Width = 75
  102. Height = 25
  103. Anchors = [akRight, akBottom]
  104. Caption = '&Help'
  105. TabOrder = 4
  106. OnClick = HelpButtonClick
  107. end
  108. end