home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2002 September / PCPlus_193_Laplink2000.iso / Prog / delphi / formatstr / fmt.dfm next >
Encoding:
Text File  |  2002-04-30  |  1.3 KB  |  69 lines

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 107
  4.   Width = 426
  5.   Height = 220
  6.   Caption = 'Form1'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   Position = poScreenCenter
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object inted: TEdit
  18.     Left = 40
  19.     Top = 24
  20.     Width = 121
  21.     Height = 21
  22.     TabOrder = 0
  23.     Text = '1005'
  24.   end
  25.   object outputed: TEdit
  26.     Left = 40
  27.     Top = 136
  28.     Width = 121
  29.     Height = 21
  30.     TabOrder = 1
  31.   end
  32.   object ComboBox1: TComboBox
  33.     Left = 184
  34.     Top = 24
  35.     Width = 201
  36.     Height = 21
  37.     ItemHeight = 13
  38.     TabOrder = 2
  39.     Text = '[Choose integer format specifier]'
  40.     OnChange = ComboBox1Change
  41.     Items.Strings = (
  42.       'x'
  43.       'd')
  44.   end
  45.   object floated: TEdit
  46.     Left = 40
  47.     Top = 64
  48.     Width = 121
  49.     Height = 21
  50.     TabOrder = 3
  51.     Text = '10.5'
  52.   end
  53.   object ComboBox2: TComboBox
  54.     Left = 184
  55.     Top = 64
  56.     Width = 201
  57.     Height = 21
  58.     ItemHeight = 13
  59.     TabOrder = 4
  60.     Text = '[Choose floating-point format specifier]'
  61.     OnChange = ComboBox2Change
  62.     Items.Strings = (
  63.       'g'
  64.       'f'
  65.       'n'
  66.       'm')
  67.   end
  68. end
  69.