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 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. 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