home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 October A / Pcwk10a98.iso / Inprise / TRIAL / JBUILDER / JRUNTIME.Z / jbuilder.exe / 0 / RCDATA / TEDITPATHFORM / TEDITPATHFORM.txt
Text File  |  1998-05-08  |  2KB  |  113 lines

  1. object EditPathForm: TEditPathForm
  2.   Left = 310
  3.   Top = 98
  4.   Width = 500
  5.   Height = 291
  6.   HelpContext = 24968
  7.   Caption = 'Edit Search Path'
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   OnClose = FormClose
  11.   OnCreate = FormCreate
  12.   OnShow = FormShow
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Panel1: TPanel
  16.     Left = 0
  17.     Top = 0
  18.     Width = 492
  19.     Height = 227
  20.     Align = alClient
  21.     BevelOuter = bvNone
  22.     TabOrder = 0
  23.     object ListBox1: TListBox
  24.       Left = 0
  25.       Top = 0
  26.       Width = 492
  27.       Height = 227
  28.       Align = alClient
  29.       DragMode = dmAutomatic
  30.       ItemHeight = 13
  31.       TabOrder = 0
  32.       OnDragDrop = ListBox1DragDrop
  33.       OnDragOver = ListBox1DragOver
  34.     end
  35.   end
  36.   object Panel2: TPanel
  37.     Left = 0
  38.     Top = 227
  39.     Width = 492
  40.     Height = 37
  41.     Align = alBottom
  42.     BevelOuter = bvNone
  43.     TabOrder = 1
  44.     object BtnAdd: TButton
  45.       Left = 4
  46.       Top = 8
  47.       Width = 75
  48.       Height = 25
  49.       Caption = 'Add &Path'
  50.       TabOrder = 0
  51.       OnClick = BtnAddClick
  52.     end
  53.     object Button1: TButton
  54.       Left = 85
  55.       Top = 8
  56.       Width = 75
  57.       Height = 25
  58.       Caption = 'Add &Zip / JAR'
  59.       TabOrder = 1
  60.       OnClick = Button1Click
  61.     end
  62.     object btnRemove: TButton
  63.       Left = 166
  64.       Top = 8
  65.       Width = 75
  66.       Height = 25
  67.       Caption = '&Remove'
  68.       TabOrder = 2
  69.       OnClick = btnRemoveClick
  70.     end
  71.     object BtnOK: TButton
  72.       Left = 253
  73.       Top = 8
  74.       Width = 75
  75.       Height = 25
  76.       Caption = 'OK'
  77.       Default = True
  78.       ModalResult = 1
  79.       TabOrder = 3
  80.     end
  81.     object BtnCancel: TButton
  82.       Left = 334
  83.       Top = 8
  84.       Width = 75
  85.       Height = 25
  86.       Cancel = True
  87.       Caption = 'Cancel'
  88.       ModalResult = 2
  89.       TabOrder = 4
  90.     end
  91.     object ButtonHelp: TButton
  92.       Left = 415
  93.       Top = 8
  94.       Width = 75
  95.       Height = 25
  96.       Cancel = True
  97.       Caption = '&Help'
  98.       TabOrder = 5
  99.       OnClick = ButtonHelpClick
  100.     end
  101.   end
  102.   object OpenDialog1: TOpenDialog
  103.     DefaultExt = 'zip'
  104.     Filter = 
  105.       'Zip and Jar Files (*.zip;*.jar)|*.zip;*.jar|Zip Files (*.zip)|*.' +
  106.       'zip|Jar Files (*.jar)|*.jar'
  107.     Options = [ofHideReadOnly, ofAllowMultiSelect, ofPathMustExist, ofFileMustExist]
  108.     Title = 'Add Zip/Jar'
  109.     Left = 238
  110.     Top = 214
  111.   end
  112. end
  113.