home *** CD-ROM | disk | FTP | other *** search
/ Additional Levels for Warcraft 2 / WARII_LAOII.iso / tools / wardraft / wardraft.exe / 0 / RCDATA / TWCMEDITFORM / TWCMEDITFORM.txt
Text File  |  1997-01-17  |  3KB  |  143 lines

  1. object WCMEditForm: TWCMEditForm
  2.   Left = 339
  3.   Top = 134
  4.   Width = 365
  5.   Height = 187
  6.   HelpContext = 90
  7.   Caption = 'Add to campaign'
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 120
  14.   TextHeight = 16
  15.   object Label1: TLabel
  16.     Left = 15
  17.     Top = 12
  18.     Width = 82
  19.     Height = 16
  20.     Caption = 'Archive &name'
  21.     FocusControl = EdName
  22.   end
  23.   object Label2: TLabel
  24.     Left = 248
  25.     Top = 12
  26.     Width = 41
  27.     Height = 16
  28.     Caption = '&Entry #'
  29.     FocusControl = EdEntry
  30.   end
  31.   object Label4: TLabel
  32.     Left = 11
  33.     Top = 76
  34.     Width = 22
  35.     Height = 16
  36.     Caption = '&File'
  37.     FocusControl = EdFile
  38.   end
  39.   object EdEntry: TEdit
  40.     Left = 296
  41.     Top = 8
  42.     Width = 57
  43.     Height = 24
  44.     TabOrder = 0
  45.     Text = '0'
  46.   end
  47.   object EdName: TComboBox
  48.     Left = 104
  49.     Top = 8
  50.     Width = 121
  51.     Height = 24
  52.     ItemHeight = 16
  53.     Items.Strings = (
  54.       'MAINDAT.WAR'
  55.       'MUDDAT.CUD'
  56.       'REZDAT.WAR'
  57.       'SFXDAT.SUD'
  58.       'STRDAT.WAR')
  59.     TabOrder = 1
  60.   end
  61.   object EdFile: TEdit
  62.     Left = 40
  63.     Top = 72
  64.     Width = 233
  65.     Height = 24
  66.     TabOrder = 2
  67.   end
  68.   object BtBrowse: TButton
  69.     Left = 280
  70.     Top = 72
  71.     Width = 75
  72.     Height = 25
  73.     Caption = '&Browse...'
  74.     TabOrder = 3
  75.     OnClick = BtBrowseClick
  76.   end
  77.   object RbBefore: TRadioButton
  78.     Left = 24
  79.     Top = 44
  80.     Width = 105
  81.     Height = 17
  82.     Caption = 'Insert &before'
  83.     Enabled = False
  84.     TabOrder = 4
  85.   end
  86.   object RbReplace: TRadioButton
  87.     Left = 144
  88.     Top = 44
  89.     Width = 89
  90.     Height = 17
  91.     Caption = '&Replace'
  92.     Checked = True
  93.     TabOrder = 5
  94.     TabStop = True
  95.   end
  96.   object RbAfter: TRadioButton
  97.     Left = 248
  98.     Top = 44
  99.     Width = 105
  100.     Height = 17
  101.     Caption = 'Insert &after'
  102.     Enabled = False
  103.     TabOrder = 6
  104.   end
  105.   object BtOk: TButton
  106.     Left = 8
  107.     Top = 128
  108.     Width = 75
  109.     Height = 25
  110.     Caption = '&Ok'
  111.     Default = True
  112.     TabOrder = 7
  113.     OnClick = BtOkClick
  114.   end
  115.   object Button1: TButton
  116.     Left = 280
  117.     Top = 128
  118.     Width = 75
  119.     Height = 25
  120.     Cancel = True
  121.     Caption = '&Cancel'
  122.     ModalResult = 2
  123.     TabOrder = 8
  124.   end
  125.   object CbCompress: TCheckBox
  126.     Left = 128
  127.     Top = 104
  128.     Width = 97
  129.     Height = 17
  130.     Caption = '&Compress'
  131.     State = cbChecked
  132.     TabOrder = 9
  133.   end
  134.   object OpenDialog: TOpenDialog
  135.     FileEditStyle = fsEdit
  136.     Filter = 'All files (*.*)|*.*'
  137.     Options = [ofPathMustExist, ofFileMustExist]
  138.     Title = 'Select file to add'
  139.     Left = 232
  140.     Top = 120
  141.   end
  142. end
  143.