home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / zkuste / delphi / komprese / zip / DELZIP12.ZIP / DEMO3.ZIP / UNIT1.DFM / UNIT1.txt
Text File  |  1997-09-28  |  6KB  |  277 lines

  1. object Form1: TForm1
  2.   Left = 236
  3.   Top = 128
  4.   Width = 621
  5.   Height = 464
  6.   Caption = 'ZIP Demo 3'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -14
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   Visible = True
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 120
  17.   TextHeight = 16
  18.   object Panel1: TPanel
  19.     Left = 0
  20.     Top = 0
  21.     Width = 613
  22.     Height = 222
  23.     Align = alTop
  24.     BevelInner = bvRaised
  25.     TabOrder = 0
  26.     object Label1: TLabel
  27.       Left = 128
  28.       Top = 50
  29.       Width = 88
  30.       Height = 16
  31.       Caption = 'ZIP File Name:'
  32.     end
  33.     object Label2: TLabel
  34.       Left = 130
  35.       Top = 85
  36.       Width = 70
  37.       Height = 16
  38.       Caption = 'File Spec 1:'
  39.     end
  40.     object Label3: TLabel
  41.       Left = 130
  42.       Top = 119
  43.       Width = 70
  44.       Height = 16
  45.       Caption = 'File Spec 2:'
  46.     end
  47.     object ZipFName: TLabel
  48.       Left = 233
  49.       Top = 49
  50.       Width = 76
  51.       Height = 21
  52.       Caption = '< none >'
  53.       Font.Charset = DEFAULT_CHARSET
  54.       Font.Color = clBlack
  55.       Font.Height = -18
  56.       Font.Name = 'Arial'
  57.       Font.Style = [fsBold]
  58.       ParentFont = False
  59.     end
  60.     object RadioTraceOpt: TRadioGroup
  61.       Left = 255
  62.       Top = 150
  63.       Width = 98
  64.       Height = 60
  65.       Caption = 'Trace DLL'
  66.       Columns = 2
  67.       Items.Strings = (
  68.         'No'
  69.         'Yes')
  70.       TabOrder = 0
  71.     end
  72.     object RadioVerboseOpt: TRadioGroup
  73.       Left = 43
  74.       Top = 150
  75.       Width = 102
  76.       Height = 60
  77.       Caption = 'Verbose Status'
  78.       Columns = 2
  79.       Items.Strings = (
  80.         'No'
  81.         'Yes')
  82.       TabOrder = 1
  83.     end
  84.     object Edit1: TEdit
  85.       Left = 208
  86.       Top = 79
  87.       Width = 385
  88.       Height = 25
  89.       Font.Charset = DEFAULT_CHARSET
  90.       Font.Color = clBlack
  91.       Font.Height = -15
  92.       Font.Name = 'Arial'
  93.       Font.Style = []
  94.       ParentFont = False
  95.       TabOrder = 2
  96.     end
  97.     object Edit2: TEdit
  98.       Left = 208
  99.       Top = 116
  100.       Width = 385
  101.       Height = 25
  102.       Font.Charset = DEFAULT_CHARSET
  103.       Font.Color = clBlack
  104.       Font.Height = -15
  105.       Font.Name = 'Arial'
  106.       Font.Style = []
  107.       ParentFont = False
  108.       TabOrder = 3
  109.     end
  110.     object RadioRecurse: TRadioGroup
  111.       Left = 442
  112.       Top = 150
  113.       Width = 132
  114.       Height = 60
  115.       Caption = 'Recurse Directories'
  116.       Columns = 2
  117.       Items.Strings = (
  118.         'No'
  119.         'Yes')
  120.       TabOrder = 4
  121.     end
  122.     object NewBut: TButton
  123.       Left = 17
  124.       Top = 55
  125.       Width = 81
  126.       Height = 25
  127.       Caption = '&New ZIP'
  128.       Font.Charset = DEFAULT_CHARSET
  129.       Font.Color = clBlack
  130.       Font.Height = -15
  131.       Font.Name = 'Arial'
  132.       Font.Style = [fsBold]
  133.       ParentFont = False
  134.       TabOrder = 5
  135.       OnClick = NewButClick
  136.     end
  137.     object OpenBut: TButton
  138.       Left = 18
  139.       Top = 12
  140.       Width = 80
  141.       Height = 25
  142.       Caption = '&Open ZIP'
  143.       Font.Charset = DEFAULT_CHARSET
  144.       Font.Color = clBlack
  145.       Font.Height = -15
  146.       Font.Name = 'Arial'
  147.       Font.Style = [fsBold]
  148.       ParentFont = False
  149.       TabOrder = 6
  150.       OnClick = OpenButClick
  151.     end
  152.     object VersionBut: TButton
  153.       Left = 16
  154.       Top = 100
  155.       Width = 81
  156.       Height = 26
  157.       Caption = 'DLL &Version'
  158.       TabOrder = 7
  159.       OnClick = VersionButClick
  160.     end
  161.     object ListBut: TButton
  162.       Left = 128
  163.       Top = 12
  164.       Width = 62
  165.       Height = 25
  166.       Caption = '&List'
  167.       TabOrder = 8
  168.       OnClick = ListButClick
  169.     end
  170.     object AddBut: TButton
  171.       Left = 208
  172.       Top = 12
  173.       Width = 62
  174.       Height = 25
  175.       Caption = '&Add'
  176.       TabOrder = 9
  177.       OnClick = AddButClick
  178.     end
  179.     object DeleteBut: TButton
  180.       Left = 288
  181.       Top = 12
  182.       Width = 62
  183.       Height = 25
  184.       Caption = '&Delete'
  185.       TabOrder = 10
  186.       OnClick = DeleteButClick
  187.     end
  188.     object ExtractBut: TButton
  189.       Left = 368
  190.       Top = 12
  191.       Width = 62
  192.       Height = 25
  193.       Caption = '&Extract'
  194.       TabOrder = 11
  195.       OnClick = ExtractButClick
  196.     end
  197.     object AbortBut: TButton
  198.       Left = 484
  199.       Top = 12
  200.       Width = 53
  201.       Height = 25
  202.       Caption = 'A&bort'
  203.       TabOrder = 12
  204.       OnClick = AbortButClick
  205.     end
  206.     object ExitBut: TButton
  207.       Left = 553
  208.       Top = 12
  209.       Width = 53
  210.       Height = 25
  211.       Caption = 'E&xit'
  212.       TabOrder = 13
  213.       OnClick = ExitButClick
  214.     end
  215.   end
  216.   object Panel2: TPanel
  217.     Left = 0
  218.     Top = 222
  219.     Width = 613
  220.     Height = 215
  221.     Align = alClient
  222.     BevelInner = bvRaised
  223.     TabOrder = 1
  224.     object Panel3: TPanel
  225.       Left = 2
  226.       Top = 46
  227.       Width = 609
  228.       Height = 167
  229.       Align = alClient
  230.       TabOrder = 0
  231.       object Memo1: TMemo
  232.         Left = 1
  233.         Top = 1
  234.         Width = 607
  235.         Height = 165
  236.         Align = alClient
  237.         Lines.Strings = (
  238.           '')
  239.         ScrollBars = ssVertical
  240.         TabOrder = 0
  241.       end
  242.     end
  243.     object Panel4: TPanel
  244.       Left = 2
  245.       Top = 2
  246.       Width = 609
  247.       Height = 44
  248.       Align = alTop
  249.       BevelInner = bvLowered
  250.       BevelOuter = bvLowered
  251.       TabOrder = 1
  252.       object FileBeingZipped: TLabel
  253.         Left = 246
  254.         Top = 12
  255.         Width = 106
  256.         Height = 16
  257.         Alignment = taRightJustify
  258.         Caption = 'File Being Zipped'
  259.       end
  260.       object ProgressBar1: TProgressBar
  261.         Left = 361
  262.         Top = 12
  263.         Width = 232
  264.         Height = 16
  265.         Min = 0
  266.         Max = 100
  267.         TabOrder = 0
  268.       end
  269.     end
  270.   end
  271.   object OpenDialog: TOpenDialog
  272.     Title = 'Open Existing ZIP file'
  273.     Left = 554
  274.     Top = 345
  275.   end
  276. end
  277.