| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | object CleanupDialog: TCleanupDialog  Left = 356  Top = 218  HelpType = htKeyword  HelpKeyword = 'ui_cleanup'  BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]  BorderStyle = bsDialog  Caption = 'Cleanup application data'  ClientHeight = 299  ClientWidth = 489  Color = clBtnFace  ParentFont = True  OldCreateOrder = True  Position = poOwnerFormCenter  OnShow = FormShow  DesignSize = (    489    299)  PixelsPerInch = 96  TextHeight = 13  object Label1: TLabel    Left = 8    Top = 8    Width = 475    Height = 97    Anchors = [akLeft, akTop, akRight]    AutoSize = False    Caption =       'Following list contains all application data possibly stored on ' +      'this computer. Check those you want to remove.'#13#10#13#10'If another ins' +      'tance of application is running, please close it before cleaning' +      ' data.'#13#10#13#10'Notice: Opening session and/or next execution of appli' +      'cation will recreate some of data.'    ShowAccelChar = False    WordWrap = True  end  object OKButton: TButton    Left = 249    Top = 268    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Caption = 'OK'    Default = True    ModalResult = 1    TabOrder = 2  end  object CancelButton: TButton    Left = 329    Top = 268    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Cancel = True    Caption = 'Close'    ModalResult = 2    TabOrder = 3  end  object DataListView: TListView    Left = 8    Top = 104    Width = 475    Height = 156    Anchors = [akLeft, akTop, akRight, akBottom]    Checkboxes = True    Columns = <      item        Caption = 'Data'        Width = 160      end      item        Caption = 'Location'        Width = 500      end>    ColumnClick = False    DoubleBuffered = True    HideSelection = False    ReadOnly = True    RowSelect = True    ParentDoubleBuffered = False    ParentShowHint = False    ShowHint = True    TabOrder = 0    ViewStyle = vsReport    OnInfoTip = DataListViewInfoTip    OnKeyUp = DataListViewKeyUp    OnMouseDown = DataListViewMouseDown  end  object CheckAllButton: TButton    Left = 8    Top = 266    Width = 108    Height = 25    Anchors = [akLeft, akBottom]    Caption = 'Un/check &all'    TabOrder = 1    OnClick = CheckAllButtonClick  end  object HelpButton: TButton    Left = 409    Top = 268    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Caption = '&Help'    TabOrder = 4    OnClick = HelpButtonClick  endend
 |