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

  1. object OleCtrlInstForm: TOleCtrlInstForm
  2.   Left = 200
  3.   Top = 108
  4.   BorderStyle = bsDialog
  5.   Caption = 'Import OLE Control'
  6.   ClientHeight = 331
  7.   ClientWidth = 419
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   TextHeight = 13
  17.   object Bevel1: TBevel
  18.     Left = 4
  19.     Top = 8
  20.     Width = 409
  21.     Height = 285
  22.     Shape = bsFrame
  23.   end
  24.   object Label1: TLabel
  25.     Left = 16
  26.     Top = 15
  27.     Width = 94
  28.     Height = 13
  29.     Caption = 'Registered co&ntrols:'
  30.     FocusControl = ControlList
  31.   end
  32.   object Label2: TLabel
  33.     Left = 16
  34.     Top = 163
  35.     Width = 67
  36.     Height = 13
  37.     Caption = 'Unit &file name:'
  38.     FocusControl = UnitFileName
  39.   end
  40.   object Label3: TLabel
  41.     Left = 16
  42.     Top = 215
  43.     Width = 62
  44.     Height = 13
  45.     Caption = '&Class names:'
  46.   end
  47.   object Label4: TLabel
  48.     Left = 16
  49.     Top = 189
  50.     Width = 63
  51.     Height = 13
  52.     Caption = '&Palette page:'
  53.     FocusControl = PageName
  54.   end
  55.   object Bevel2: TBevel
  56.     Left = 16
  57.     Top = 130
  58.     Width = 305
  59.     Height = 17
  60.   end
  61.   object Location: TLabel
  62.     Left = 20
  63.     Top = 132
  64.     Width = 297
  65.     Height = 13
  66.     AutoSize = False
  67.   end
  68.   object ControlList: TListBox
  69.     Left = 16
  70.     Top = 32
  71.     Width = 305
  72.     Height = 95
  73.     ItemHeight = 13
  74.     Sorted = True
  75.     TabOrder = 0
  76.     TabWidth = 100
  77.     OnClick = ControlListClick
  78.   end
  79.   object RegisterButton: TButton
  80.     Left = 328
  81.     Top = 32
  82.     Width = 75
  83.     Height = 23
  84.     Caption = '&Register...'
  85.     TabOrder = 1
  86.     OnClick = RegisterButtonClick
  87.   end
  88.   object UnregisterButton: TButton
  89.     Left = 328
  90.     Top = 60
  91.     Width = 75
  92.     Height = 23
  93.     Caption = '&Unregister'
  94.     TabOrder = 2
  95.     OnClick = UnregisterButtonClick
  96.   end
  97.   object UnitFileName: TEdit
  98.     Left = 96
  99.     Top = 160
  100.     Width = 225
  101.     Height = 21
  102.     TabOrder = 3
  103.   end
  104.   object PageName: TEdit
  105.     Left = 96
  106.     Top = 186
  107.     Width = 225
  108.     Height = 21
  109.     TabOrder = 5
  110.     Text = 'OCX'
  111.   end
  112.   object BrowseButton: TButton
  113.     Left = 328
  114.     Top = 159
  115.     Width = 75
  116.     Height = 23
  117.     Caption = '&Browse...'
  118.     TabOrder = 4
  119.     OnClick = BrowseButtonClick
  120.   end
  121.   object OKButton: TButton
  122.     Left = 176
  123.     Top = 301
  124.     Width = 75
  125.     Height = 23
  126.     Caption = 'OK'
  127.     Default = True
  128.     TabOrder = 7
  129.     OnClick = OKButtonClick
  130.   end
  131.   object CancelButton: TButton
  132.     Left = 257
  133.     Top = 301
  134.     Width = 75
  135.     Height = 23
  136.     Cancel = True
  137.     Caption = 'Cancel'
  138.     ModalResult = 2
  139.     TabOrder = 8
  140.   end
  141.   object HelpButton: TButton
  142.     Left = 338
  143.     Top = 301
  144.     Width = 75
  145.     Height = 23
  146.     Caption = '&Help'
  147.     TabOrder = 9
  148.     OnClick = HelpButtonClick
  149.   end
  150.   object ClassNames: TMemo
  151.     Left = 96
  152.     Top = 212
  153.     Width = 225
  154.     Height = 71
  155.     ScrollBars = ssVertical
  156.     TabOrder = 6
  157.     WordWrap = False
  158.   end
  159.   object UnitNameDialog: TSaveDialog
  160.     DefaultExt = 'pas'
  161.     FileEditStyle = fsEdit
  162.     Filter = 'Source file (*.pas)|*.pas|Any file (*.*)|*.*'
  163.     Options = [ofHideReadOnly]
  164.     Title = 'Unit file name'
  165.     Left = 40
  166.     Top = 296
  167.   end
  168.   object ControlNameDialog: TOpenDialog
  169.     DefaultExt = 'ocx'
  170.     FileEditStyle = fsEdit
  171.     Filter = 'OLE control (*.ocx)|*.ocx|Any file (*.*)|*.*'
  172.     Options = [ofHideReadOnly]
  173.     Title = 'Register OLE Control'
  174.     Left = 8
  175.     Top = 296
  176.   end
  177. end
  178.