home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Objrepos / DUALLIST.DFM / DUALLIST.txt
Text File  |  1999-08-11  |  2KB  |  116 lines

  1. object DualListDlg: TDualListDlg
  2.   Left = 250
  3.   Top = 108
  4.   BorderStyle = bsDialog
  5.   Caption = 'Choices Dialog'
  6.   ClientHeight = 255
  7.   ClientWidth = 345
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   PixelsPerInch = 96
  11.   TextHeight = 13
  12.   object SrcLabel: TLabel
  13.     Left = 8
  14.     Top = 8
  15.     Width = 145
  16.     Height = 16
  17.     AutoSize = False
  18.     Caption = 'Source List:'
  19.   end
  20.   object DstLabel: TLabel
  21.     Left = 192
  22.     Top = 8
  23.     Width = 145
  24.     Height = 16
  25.     AutoSize = False
  26.     Caption = 'Destination List:'
  27.   end
  28.   object IncludeBtn: TSpeedButton
  29.     Left = 160
  30.     Top = 32
  31.     Width = 24
  32.     Height = 24
  33.     Caption = '>'
  34.     OnClick = IncludeBtnClick
  35.   end
  36.   object IncAllBtn: TSpeedButton
  37.     Left = 160
  38.     Top = 64
  39.     Width = 24
  40.     Height = 24
  41.     Caption = '>>'
  42.     OnClick = IncAllBtnClick
  43.   end
  44.   object ExcludeBtn: TSpeedButton
  45.     Left = 160
  46.     Top = 96
  47.     Width = 24
  48.     Height = 24
  49.     Caption = '<'
  50.     Enabled = False
  51.     OnClick = ExcludeBtnClick
  52.   end
  53.   object ExAllBtn: TSpeedButton
  54.     Left = 160
  55.     Top = 128
  56.     Width = 24
  57.     Height = 24
  58.     Caption = '<<'
  59.     Enabled = False
  60.     OnClick = ExcAllBtnClick
  61.   end
  62.   object OKBtn: TButton
  63.     Left = 101
  64.     Top = 220
  65.     Width = 75
  66.     Height = 25
  67.     Caption = 'OK'
  68.     Default = True
  69.     ModalResult = 1
  70.     TabOrder = 2
  71.   end
  72.   object CancelBtn: TButton
  73.     Left = 181
  74.     Top = 220
  75.     Width = 75
  76.     Height = 25
  77.     Cancel = True
  78.     Caption = 'Cancel'
  79.     ModalResult = 2
  80.     TabOrder = 3
  81.   end
  82.   object HelpBtn: TButton
  83.     Left = 261
  84.     Top = 220
  85.     Width = 75
  86.     Height = 25
  87.     Caption = 'Help'
  88.     TabOrder = 4
  89.   end
  90.   object SrcList: TListBox
  91.     Left = 8
  92.     Top = 24
  93.     Width = 144
  94.     Height = 185
  95.     ItemHeight = 13
  96.     Items.Strings = (
  97.       'Item1'
  98.       'Item2'
  99.       'Item3'
  100.       'Item4'
  101.       'Item5')
  102.     MultiSelect = True
  103.     Sorted = True
  104.     TabOrder = 0
  105.   end
  106.   object DstList: TListBox
  107.     Left = 192
  108.     Top = 24
  109.     Width = 144
  110.     Height = 185
  111.     ItemHeight = 13
  112.     MultiSelect = True
  113.     TabOrder = 1
  114.   end
  115. end
  116.