home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Bin / CRBIDE50.BPL / 0 / RCDATA / TCORBAOBJECTEXPERT / TCORBAOBJECTEXPERT.txt
Encoding:
Text File  |  1999-08-11  |  2.0 KB  |  109 lines

  1. object CorbaObjectExpert: TCorbaObjectExpert
  2.   Left = 385
  3.   Top = 247
  4.   ActiveControl = NewClassName
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Corba Object Wizard'
  8.   ClientHeight = 159
  9.   ClientWidth = 366
  10.   Color = clBtnFace
  11.   ParentFont = True
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Bevel1: TBevel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 353
  20.     Height = 113
  21.     Shape = bsFrame
  22.   end
  23.   object LblClassName: TLabel
  24.     Left = 18
  25.     Top = 22
  26.     Width = 59
  27.     Height = 13
  28.     Caption = '&Class Name:'
  29.     FocusControl = NewClassName
  30.   end
  31.   object Lblinstancing: TLabel
  32.     Left = 18
  33.     Top = 55
  34.     Width = 52
  35.     Height = 13
  36.     Caption = '&Instancing:'
  37.     FocusControl = Instancing
  38.   end
  39.   object LblThread: TLabel
  40.     Left = 18
  41.     Top = 87
  42.     Width = 83
  43.     Height = 13
  44.     Caption = '&Threading Model:'
  45.     FocusControl = ThreadModel
  46.   end
  47.   object NewClassName: TEdit
  48.     Left = 112
  49.     Top = 18
  50.     Width = 241
  51.     Height = 21
  52.     TabOrder = 0
  53.   end
  54.   object OKButton: TButton
  55.     Left = 128
  56.     Top = 128
  57.     Width = 75
  58.     Height = 25
  59.     Caption = 'OK'
  60.     Default = True
  61.     ModalResult = 1
  62.     TabOrder = 3
  63.     OnClick = OKButtonClick
  64.   end
  65.   object CancelButton: TButton
  66.     Left = 207
  67.     Top = 128
  68.     Width = 75
  69.     Height = 25
  70.     Cancel = True
  71.     Caption = 'Cancel'
  72.     ModalResult = 2
  73.     TabOrder = 4
  74.   end
  75.   object HelpButton: TButton
  76.     Left = 287
  77.     Top = 128
  78.     Width = 75
  79.     Height = 25
  80.     Caption = '&Help'
  81.     TabOrder = 5
  82.     OnClick = HelpButtonClick
  83.   end
  84.   object Instancing: TComboBox
  85.     Left = 112
  86.     Top = 51
  87.     Width = 241
  88.     Height = 21
  89.     Style = csDropDownList
  90.     ItemHeight = 13
  91.     Items.Strings = (
  92.       'Shared instance'
  93.       'Instance-per-client')
  94.     TabOrder = 1
  95.   end
  96.   object ThreadModel: TComboBox
  97.     Left = 112
  98.     Top = 83
  99.     Width = 241
  100.     Height = 21
  101.     Style = csDropDownList
  102.     ItemHeight = 13
  103.     Items.Strings = (
  104.       'Multithreaded'
  105.       'Single-threaded')
  106.     TabOrder = 2
  107.   end
  108. end
  109.