home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 37 / hot37.iso / FICHEROS / 9TOOL / ADDZIP.ZIP / DELPHI / ZWIZ.dfm / ZWIZ.txt < prev   
Text File  |  1998-02-01  |  9KB  |  440 lines

  1. object frmWizard: TfrmWizard
  2.   Left = 236
  3.   Top = 125
  4.   Width = 504
  5.   Height = 437
  6.   HorzScrollBar.Visible = False
  7.   VertScrollBar.Visible = False
  8.   BorderIcons = [biSystemMenu]
  9.   Caption = 'ZIP Wizard'
  10.   Font.Color = clWindowText
  11.   Font.Height = -13
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Icon.Data = {<image000.ico>}
  15.   PixelsPerInch = 96
  16.   Position = poScreenCenter
  17.   OnClose = FormClose
  18.   OnShow = FormShow
  19.   TextHeight = 16
  20.   object shpLine: TShape
  21.     Left = 0
  22.     Top = 345
  23.     Width = 496
  24.     Height = 1
  25.     Pen.Color = clWhite
  26.   end
  27.   object btnCancel: TSpeedButton
  28.     Left = 20
  29.     Top = 355
  30.     Width = 96
  31.     Height = 25
  32.     Caption = '&Cancel'
  33.     OnClick = btnCancelClick
  34.   end
  35.   object btnNext: TSpeedButton
  36.     Left = 285
  37.     Top = 355
  38.     Width = 96
  39.     Height = 25
  40.     Caption = '&Next >'
  41.     Enabled = False
  42.     OnClick = btnNextClick
  43.   end
  44.   object btnFinish: TSpeedButton
  45.     Left = 390
  46.     Top = 355
  47.     Width = 96
  48.     Height = 25
  49.     Caption = '&Finish'
  50.     Enabled = False
  51.     OnClick = btnFinishClick
  52.   end
  53.   object lblInfo: TLabel
  54.     Left = 3
  55.     Top = 387
  56.     Width = 488
  57.     Height = 19
  58.     AutoSize = False
  59.     WordWrap = True
  60.   end
  61.   object imgWizard: TImage
  62.     Left = 15
  63.     Top = 20
  64.     Width = 151
  65.     Height = 311
  66.     Picture.Data = {<image001.TMetafile>}
  67.     Stretch = True
  68.   end
  69.   object btnBack: TSpeedButton
  70.     Left = 180
  71.     Top = 355
  72.     Width = 96
  73.     Height = 25
  74.     Caption = '< &Back'
  75.     Enabled = False
  76.     OnClick = btnBackClick
  77.   end
  78.   object grpStep1: TGroupBox
  79.     Left = 180
  80.     Top = 12
  81.     Width = 306
  82.     Height = 319
  83.     Caption = 'Archive Name'
  84.     TabOrder = 0
  85.     object lblArchiveName: TLabel
  86.       Left = 10
  87.       Top = 20
  88.       Width = 276
  89.       Height = 31
  90.       AutoSize = False
  91.       Caption = 'Please enter the name of an archive or press Browse...'
  92.       WordWrap = True
  93.     end
  94.     object btnBrowse: TSpeedButton
  95.       Left = 195
  96.       Top = 84
  97.       Width = 96
  98.       Height = 25
  99.       Caption = '&Browse'
  100.       OnClick = btnBrowseClick
  101.     end
  102.     object edtArchive: TEdit
  103.       Left = 10
  104.       Top = 55
  105.       Width = 281
  106.       Height = 24
  107.       TabOrder = 0
  108.       OnChange = edtArchiveChange
  109.     end
  110.     object chkSFX: TCheckBox
  111.       Left = 10
  112.       Top = 115
  113.       Width = 206
  114.       Height = 17
  115.       Caption = 'Make Self-Extracting Archive'
  116.       TabOrder = 1
  117.     end
  118.   end
  119.   object grpStep3: TGroupBox
  120.     Left = 180
  121.     Top = 17
  122.     Width = 306
  123.     Height = 319
  124.     Caption = 'Files to compress'
  125.     TabOrder = 2
  126.     object lblFiles: TLabel
  127.       Left = 15
  128.       Top = 25
  129.       Width = 271
  130.       Height = 36
  131.       AutoSize = False
  132.       Caption = 
  133.         'Browse for the files to be compressed to the archive, and add th' +
  134.         'em to the list box'
  135.       WordWrap = True
  136.     end
  137.     object btnAdd: TSpeedButton
  138.       Left = 11
  139.       Top = 174
  140.       Width = 96
  141.       Height = 25
  142.       Caption = '&Add'
  143.       Enabled = False
  144.       OnClick = btnAddClick
  145.     end
  146.     object btnRemove: TSpeedButton
  147.       Left = 115
  148.       Top = 174
  149.       Width = 96
  150.       Height = 25
  151.       Caption = '&Remove'
  152.       Enabled = False
  153.       OnClick = btnRemoveClick
  154.     end
  155.     object lstFiles: TFileListBox
  156.       Left = 11
  157.       Top = 66
  158.       Width = 130
  159.       Height = 97
  160.       ItemHeight = 16
  161.       TabOrder = 0
  162.       OnClick = lstFilesClick
  163.       OnDblClick = btnAddClick
  164.     end
  165.     object dirFiles: TDirectoryListBox
  166.       Left = 151
  167.       Top = 66
  168.       Width = 145
  169.       Height = 70
  170.       FileList = lstFiles
  171.       ItemHeight = 16
  172.       TabOrder = 1
  173.       OnChange = dirFilesChange
  174.     end
  175.     object drvFiles: TDriveComboBox
  176.       Left = 151
  177.       Top = 142
  178.       Width = 145
  179.       Height = 22
  180.       DirList = dirFiles
  181.       TabOrder = 2
  182.     end
  183.     object lstSelected: TListBox
  184.       Left = 11
  185.       Top = 206
  186.       Width = 285
  187.       Height = 97
  188.       ItemHeight = 16
  189.       TabOrder = 3
  190.       OnDblClick = btnRemoveClick
  191.     end
  192.   end
  193.   object grpStep5: TGroupBox
  194.     Left = 190
  195.     Top = 27
  196.     Width = 306
  197.     Height = 319
  198.     Caption = 'Summary'
  199.     TabOrder = 4
  200.     object mmoSummary: TMemo
  201.       Left = 16
  202.       Top = 25
  203.       Width = 275
  204.       Height = 276
  205.       TabStop = False
  206.       Color = clBtnFace
  207.       Ctl3D = False
  208.       ParentCtl3D = False
  209.       ReadOnly = True
  210.       ScrollBars = ssVertical
  211.       TabOrder = 0
  212.       WantTabs = True
  213.     end
  214.   end
  215.   object grpStep4: TGroupBox
  216.     Left = 185
  217.     Top = 22
  218.     Width = 306
  219.     Height = 319
  220.     Caption = 'Archive Name'
  221.     TabOrder = 3
  222.     object grpMultiDisk: TGroupBox
  223.       Left = 15
  224.       Top = 20
  225.       Width = 276
  226.       Height = 61
  227.       Caption = 'Create a multi-disk archive?'
  228.       TabOrder = 0
  229.       object radMultiNo: TRadioButton
  230.         Left = 25
  231.         Top = 20
  232.         Width = 113
  233.         Height = 17
  234.         Caption = 'No'
  235.         Checked = True
  236.         TabOrder = 0
  237.         TabStop = True
  238.       end
  239.       object radMultiYes: TRadioButton
  240.         Left = 25
  241.         Top = 37
  242.         Width = 113
  243.         Height = 17
  244.         Caption = 'Yes'
  245.         TabOrder = 1
  246.       end
  247.     end
  248.     object grpLFN: TGroupBox
  249.       Left = 15
  250.       Top = 95
  251.       Width = 276
  252.       Height = 61
  253.       Caption = 'Do you want to use long filenames?'
  254.       TabOrder = 1
  255.       object radLFNYes: TRadioButton
  256.         Left = 25
  257.         Top = 37
  258.         Width = 113
  259.         Height = 17
  260.         Caption = 'Yes'
  261.         TabOrder = 0
  262.       end
  263.       object radLFNNo: TRadioButton
  264.         Left = 25
  265.         Top = 20
  266.         Width = 113
  267.         Height = 17
  268.         Caption = 'No'
  269.         Checked = True
  270.         TabOrder = 1
  271.         TabStop = True
  272.       end
  273.     end
  274.     object grpComment: TGroupBox
  275.       Left = 15
  276.       Top = 170
  277.       Width = 276
  278.       Height = 131
  279.       Caption = 'Add a comment to the archive?'
  280.       TabOrder = 2
  281.       object radCommentNo: TRadioButton
  282.         Left = 25
  283.         Top = 20
  284.         Width = 51
  285.         Height = 17
  286.         Caption = 'No'
  287.         Checked = True
  288.         TabOrder = 0
  289.         TabStop = True
  290.         OnClick = radCommentNoClick
  291.       end
  292.       object radCommentYes: TRadioButton
  293.         Left = 25
  294.         Top = 37
  295.         Width = 113
  296.         Height = 17
  297.         Caption = 'Yes'
  298.         TabOrder = 1
  299.         OnClick = radCommentYesClick
  300.       end
  301.       object mmoComment: TMemo
  302.         Left = 9
  303.         Top = 57
  304.         Width = 257
  305.         Height = 67
  306.         ScrollBars = ssVertical
  307.         TabOrder = 2
  308.       end
  309.     end
  310.   end
  311.   object grpStep2: TGroupBox
  312.     Left = 175
  313.     Top = 12
  314.     Width = 306
  315.     Height = 319
  316.     Caption = 'Options'
  317.     TabOrder = 1
  318.     object GroupBox1: TGroupBox
  319.       Left = 15
  320.       Top = 20
  321.       Width = 276
  322.       Height = 61
  323.       Caption = 'Store the full path information?'
  324.       TabOrder = 0
  325.       object radPathNo: TRadioButton
  326.         Left = 25
  327.         Top = 20
  328.         Width = 113
  329.         Height = 17
  330.         Caption = 'No'
  331.         TabOrder = 0
  332.       end
  333.       object radPathYes: TRadioButton
  334.         Left = 25
  335.         Top = 37
  336.         Width = 113
  337.         Height = 17
  338.         Caption = 'Yes'
  339.         Checked = True
  340.         TabOrder = 1
  341.         TabStop = True
  342.       end
  343.     end
  344.     object grpPassword: TGroupBox
  345.       Left = 15
  346.       Top = 95
  347.       Width = 276
  348.       Height = 91
  349.       Caption = 'Password protect files in this archive?'
  350.       TabOrder = 1
  351.       object lblPassword: TLabel
  352.         Left = 10
  353.         Top = 60
  354.         Width = 63
  355.         Height = 16
  356.         Caption = 'Password:'
  357.       end
  358.       object radPasswordYes: TRadioButton
  359.         Left = 25
  360.         Top = 37
  361.         Width = 113
  362.         Height = 17
  363.         Caption = 'Yes'
  364.         TabOrder = 0
  365.         OnClick = radPasswordYesClick
  366.       end
  367.       object radPasswordNo: TRadioButton
  368.         Left = 25
  369.         Top = 20
  370.         Width = 113
  371.         Height = 17
  372.         Caption = 'No'
  373.         Checked = True
  374.         TabOrder = 1
  375.         TabStop = True
  376.         OnClick = radPasswordNoClick
  377.       end
  378.       object edtPassword: TEdit
  379.         Left = 80
  380.         Top = 57
  381.         Width = 186
  382.         Height = 24
  383.         TabOrder = 2
  384.       end
  385.     end
  386.     object grpCompression: TGroupBox
  387.       Left = 15
  388.       Top = 195
  389.       Width = 276
  390.       Height = 101
  391.       Caption = 'Set the compression level'
  392.       TabOrder = 2
  393.       object radCompressNone: TRadioButton
  394.         Left = 25
  395.         Top = 20
  396.         Width = 141
  397.         Height = 17
  398.         Caption = 'None - fastest'
  399.         TabOrder = 0
  400.       end
  401.       object radCompressMinimum: TRadioButton
  402.         Left = 25
  403.         Top = 38
  404.         Width = 113
  405.         Height = 17
  406.         Caption = 'Minimum'
  407.         TabOrder = 1
  408.       end
  409.       object radCompressNormal: TRadioButton
  410.         Left = 25
  411.         Top = 55
  412.         Width = 113
  413.         Height = 17
  414.         Caption = 'Normal'
  415.         Checked = True
  416.         TabOrder = 2
  417.         TabStop = True
  418.       end
  419.       object radCompressMaximum: TRadioButton
  420.         Left = 25
  421.         Top = 72
  422.         Width = 166
  423.         Height = 17
  424.         Caption = 'Maximum - slowest'
  425.         TabOrder = 3
  426.       end
  427.     end
  428.   end
  429.   object edtHidden: TEdit
  430.     Left = 400
  431.     Top = 314
  432.     Width = 76
  433.     Height = 24
  434.     TabOrder = 5
  435.     Text = 'edtHidden'
  436.     Visible = False
  437.     OnChange = edtHiddenChange
  438.   end
  439. end
  440.