home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / BCB.EXE / RCDATA / TREMOVEMODULESDLG / TREMOVEMODULESDLG.txt
Text File  |  1997-01-16  |  2KB  |  92 lines

  1. object RemoveModulesDlg: TRemoveModulesDlg
  2.   Left = 378
  3.   Top = 150
  4.   ActiveControl = ModuleListBox
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Remove From Project'
  8.   ClientHeight = 213
  9.   ClientWidth = 272
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object OkBtn: TButton
  19.     Left = 30
  20.     Top = 181
  21.     Width = 75
  22.     Height = 25
  23.     Caption = 'OK'
  24.     Default = True
  25.     ModalResult = 1
  26.     TabOrder = 1
  27.   end
  28.   object CancelBtn: TButton
  29.     Left = 110
  30.     Top = 181
  31.     Width = 75
  32.     Height = 25
  33.     Cancel = True
  34.     Caption = 'Cancel'
  35.     ModalResult = 2
  36.     TabOrder = 2
  37.   end
  38.   object HelpBtn: TButton
  39.     Left = 190
  40.     Top = 181
  41.     Width = 75
  42.     Height = 25
  43.     Caption = '&Help'
  44.     TabOrder = 3
  45.     OnClick = HelpBtnClick
  46.   end
  47.   object Panel1: TPanel
  48.     Left = 8
  49.     Top = 8
  50.     Width = 257
  51.     Height = 164
  52.     BevelOuter = bvNone
  53.     BorderStyle = bsSingle
  54.     Caption = 'Panel1'
  55.     ParentColor = True
  56.     TabOrder = 0
  57.     object ModuleListBox: TListBox
  58.       Left = 0
  59.       Top = 17
  60.       Width = 253
  61.       Height = 143
  62.       Align = alClient
  63.       BorderStyle = bsNone
  64.       ItemHeight = 13
  65.       MultiSelect = True
  66.       Sorted = True
  67.       Style = lbOwnerDrawFixed
  68.       TabOrder = 0
  69.       OnClick = ModuleListBoxClick
  70.       OnDblClick = ModuleListBoxDblClick
  71.       OnDrawItem = ModuleListBoxDrawItem
  72.     end
  73.     object ListHeader: THeaderControl
  74.       Left = 0
  75.       Top = 0
  76.       Width = 253
  77.       Height = 17
  78.       Sections = <
  79.         item
  80.           AllowClick = False
  81.           Text = 'File'
  82.           Width = 70
  83.         end
  84.         item
  85.           AllowClick = False
  86.           Text = 'Form'
  87.           Width = 50
  88.         end>
  89.     end
  90.   end
  91. end
  92.