home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / dynainst.pak / DYNAMAIN.DFM / DYNAMAIN.txt
Encoding:
Text File  |  1995-08-24  |  2.2 KB  |  114 lines

  1. object Form1: TForm1
  2.   Left = 215
  3.   Top = 105
  4.   AutoScroll = False
  5.   Width = 420
  6.   Height = 270
  7.   Caption = 'Dynamic Component Creation'
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = [fsBold]
  12.   PixelsPerInch = 96
  13.   OnCreate = FormCreate
  14.   TextHeight = 13
  15.   object CreationArea: TPanel
  16.     Left = 0
  17.     Top = 117
  18.     Width = 412
  19.     Height = 126
  20.     Align = alClient
  21.     TabOrder = 0
  22.   end
  23.   object Panel1: TPanel
  24.     Left = 0
  25.     Top = 0
  26.     Width = 412
  27.     Height = 117
  28.     Align = alTop
  29.     TabOrder = 1
  30.     object GroupBox1: TGroupBox
  31.       Left = 8
  32.       Top = 4
  33.       Width = 397
  34.       Height = 105
  35.       Caption = 'Component Info'
  36.       TabOrder = 0
  37.       object Label1: TLabel
  38.         Left = 20
  39.         Top = 20
  40.         Width = 69
  41.         Height = 13
  42.         Caption = '&Class name:'
  43.         FocusControl = ClassList
  44.       end
  45.       object Label2: TLabel
  46.         Left = 76
  47.         Top = 48
  48.         Width = 13
  49.         Height = 13
  50.         Caption = '&X:'
  51.         FocusControl = XPos
  52.       end
  53.       object Label3: TLabel
  54.         Left = 168
  55.         Top = 48
  56.         Width = 13
  57.         Height = 13
  58.         Caption = '&Y:'
  59.         FocusControl = YPos
  60.       end
  61.       object Label4: TLabel
  62.         Left = 12
  63.         Top = 72
  64.         Width = 79
  65.         Height = 13
  66.         Caption = '&Text/Caption:'
  67.         FocusControl = TextProp
  68.       end
  69.       object ClassList: TComboBox
  70.         Left = 96
  71.         Top = 18
  72.         Width = 193
  73.         Height = 20
  74.         Style = csDropDownList
  75.         ItemHeight = 13
  76.         Sorted = True
  77.         TabOrder = 0
  78.       end
  79.       object XPos: TEdit
  80.         Left = 96
  81.         Top = 43
  82.         Width = 60
  83.         Height = 20
  84.         TabOrder = 1
  85.         Text = '10'
  86.       end
  87.       object YPos: TEdit
  88.         Left = 192
  89.         Top = 43
  90.         Width = 60
  91.         Height = 20
  92.         TabOrder = 2
  93.         Text = '10'
  94.       end
  95.       object Button1: TButton
  96.         Left = 308
  97.         Top = 16
  98.         Width = 73
  99.         Height = 25
  100.         Caption = 'C&reate!'
  101.         TabOrder = 4
  102.         OnClick = Button1Click
  103.       end
  104.       object TextProp: TEdit
  105.         Left = 96
  106.         Top = 68
  107.         Width = 193
  108.         Height = 20
  109.         TabOrder = 3
  110.       end
  111.     end
  112.   end
  113. end
  114.