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

  1. object FloatForm: TFloatForm
  2.   Left = 262
  3.   Top = 146
  4.   AutoScroll = False
  5.   ActiveControl = ValueEdit
  6.   BorderIcons = [biSystemMenu, biMinimize]
  7.   BorderStyle = bsSingle
  8.   Caption = 'Float Formatting'
  9.   ClientHeight = 167
  10.   ClientWidth = 297
  11.   Font.Color = clBlack
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   PixelsPerInch = 96
  16.   OnCreate = FormCreate
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 44
  20.     Top = 12
  21.     Width = 27
  22.     Height = 13
  23.     Caption = 'Value'
  24.   end
  25.   object Label2: TLabel
  26.     Left = 5
  27.     Top = 51
  28.     Width = 66
  29.     Height = 13
  30.     Caption = 'DisplayFormat'
  31.   end
  32.   object Label3: TLabel
  33.     Left = 41
  34.     Top = 90
  35.     Width = 30
  36.     Height = 13
  37.     Caption = 'Result'
  38.   end
  39.   object ValueEdit: TComboBox
  40.     Left = 80
  41.     Top = 8
  42.     Width = 209
  43.     Height = 20
  44.     ItemHeight = 13
  45.     TabOrder = 0
  46.     OnClick = Button1Click
  47.   end
  48.   object FormatEdit: TComboBox
  49.     Left = 80
  50.     Top = 47
  51.     Width = 209
  52.     Height = 20
  53.     ItemHeight = 13
  54.     Items.Strings = (
  55.       ''
  56.       '#,##0.00'
  57.       ',0.00'
  58.       '$,0.00;($,0.00);Zero'
  59.       '$,0.00;;'#39#39
  60.       '0.0000000e+00'
  61.       '0.##')
  62.     TabOrder = 1
  63.     OnClick = Button1Click
  64.   end
  65.   object ResultEdit: TEdit
  66.     Left = 80
  67.     Top = 86
  68.     Width = 209
  69.     Height = 20
  70.     TabOrder = 2
  71.   end
  72.   object Button1: TButton
  73.     Left = 104
  74.     Top = 120
  75.     Width = 89
  76.     Height = 33
  77.     Caption = '&Format'
  78.     Default = True
  79.     TabOrder = 3
  80.     OnClick = Button1Click
  81.   end
  82. end
  83.