home *** CD-ROM | disk | FTP | other *** search
/ com!online 2005 May / com_0505_1.iso / CDStart.exe / 0 / RCDATA / TUNZIPDIALOG / TUNZIPDIALOG.txt < prev   
Encoding:
Text File  |  2003-08-30  |  3.2 KB  |  168 lines

  1. object UnzipDialog: TUnzipDialog
  2.   Left = 279
  3.   Top = 145
  4.   ActiveControl = ZIPView
  5.   BorderStyle = bsDialog
  6.   Caption = 'UnzipDialog'
  7.   ClientHeight = 322
  8.   ClientWidth = 632
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clBlack
  12.   Font.Height = -11
  13.   Font.Name = 'Tahoma'
  14.   Font.Style = []
  15.   Icon.Data = {<image000.ico>}
  16.   OldCreateOrder = True
  17.   Position = poScreenCenter
  18.   OnCreate = FormCreate
  19.   OnShow = FormShow
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object ProgressBar: TGauge
  23.     Left = 0
  24.     Top = 233
  25.     Width = 304
  26.     Height = 20
  27.     Progress = 0
  28.   end
  29.   object Src: TLabel
  30.     Left = 1
  31.     Top = 258
  32.     Width = 303
  33.     Height = 13
  34.     AutoSize = False
  35.     ShowAccelChar = False
  36.   end
  37.   object Dest: TLabel
  38.     Left = 315
  39.     Top = 259
  40.     Width = 316
  41.     Height = 13
  42.     AutoSize = False
  43.     ShowAccelChar = False
  44.   end
  45.   object FileText: TPanel
  46.     Left = 317
  47.     Top = 232
  48.     Width = 314
  49.     Height = 21
  50.     BevelOuter = bvLowered
  51.     TabOrder = 3
  52.   end
  53.   object UnzipBtn: TButton
  54.     Left = 9
  55.     Top = 291
  56.     Width = 89
  57.     Height = 27
  58.     Caption = 'Entpacken'
  59.     TabOrder = 0
  60.     OnClick = UnzipBtnClick
  61.   end
  62.   object CloseBtn: TButton
  63.     Left = 197
  64.     Top = 291
  65.     Width = 89
  66.     Height = 27
  67.     Caption = 'Schlie'#223'en'
  68.     TabOrder = 1
  69.     OnClick = CloseBtnClick
  70.   end
  71.   object MarkAllBtn: TButton
  72.     Left = 103
  73.     Top = 291
  74.     Width = 89
  75.     Height = 27
  76.     Caption = 'Alle markieren'
  77.     TabOrder = 2
  78.     OnClick = MarkAllBtnClick
  79.   end
  80.   object ZIPView: TListView
  81.     Left = -3
  82.     Top = -3
  83.     Width = 639
  84.     Height = 283
  85.     AllocBy = 32
  86.     Columns = <
  87.       item
  88.         Caption = 'Name'
  89.         Width = 120
  90.       end
  91.       item
  92.         Caption = 'Datum / Zeit'
  93.         Width = 100
  94.       end
  95.       item
  96.         Alignment = taRightJustify
  97.         Caption = 'gepackt'
  98.         Width = 75
  99.       end
  100.       item
  101.         Alignment = taRightJustify
  102.         Caption = 'entpackt'
  103.         Width = 75
  104.       end
  105.       item
  106.         Caption = 'Methode'
  107.         Width = 90
  108.       end
  109.       item
  110.         Caption = 'Ordner'
  111.         Width = 480
  112.       end>
  113.     DragCursor = crMultiDrag
  114.     DragMode = dmAutomatic
  115.     GridLines = True
  116.     HideSelection = False
  117.     MultiSelect = True
  118.     RowSelect = True
  119.     ParentShowHint = False
  120.     ShowHint = False
  121.     TabOrder = 4
  122.     ViewStyle = vsReport
  123.     OnDblClick = ZIPViewDblClick
  124.   end
  125.   object FileSelectDlg: TOpenDialog
  126.     Left = 570
  127.     Top = 290
  128.   end
  129.   object RenameDlg: TSaveDialog
  130.     Left = 540
  131.     Top = 291
  132.   end
  133.   object Zip: TVCLUnZip
  134.     RecreateDirs = True
  135.     OverwriteMode = Always
  136.     OnTotalPercentDone = ZIPTotalPercentDone
  137.     OnStartUnZip = ZIPStartUnZip
  138.     OnBadPassword = ZIPBadPassword
  139.     OnBadCRC = ZIPBadCRC
  140.     Left = 510
  141.     Top = 291
  142.   end
  143.   object ListPopup: TPopupMenu
  144.     Left = 332
  145.     Top = 286
  146.     object mnuIcon: TMenuItem
  147.       Caption = 'Gro'#223'e Symbole'
  148.       OnClick = mnuClick
  149.     end
  150.     object mnuSmallIcon: TMenuItem
  151.       Tag = 1
  152.       Caption = 'Kleine Symbole'
  153.       OnClick = mnuClick
  154.     end
  155.     object mnuList: TMenuItem
  156.       Tag = 2
  157.       Caption = 'Liste'
  158.       OnClick = mnuClick
  159.     end
  160.     object mnuReport: TMenuItem
  161.       Tag = 3
  162.       Caption = 'Details'
  163.       Checked = True
  164.       OnClick = mnuClick
  165.     end
  166.   end
  167. end
  168.