Subversion Repositories currency_converter

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
object Form1: TForm1
2
  Left = 0
3
  Top = 0
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'Currency converter'
7
  ClientHeight = 114
8
  ClientWidth = 381
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'Tahoma'
14
  Font.Style = []
15
  KeyPreview = True
16
  OldCreateOrder = False
17
  Position = poScreenCenter
18
  OnKeyUp = FormKeyUp
19
  OnShow = FormShow
20
  PixelsPerInch = 96
21
  TextHeight = 13
22
  object Label1: TLabel
23
    Left = 184
24
    Top = 23
25
    Width = 11
26
    Height = 18
27
    Caption = '='
28
    Font.Charset = DEFAULT_CHARSET
29
    Font.Color = clWindowText
30
    Font.Height = -15
31
    Font.Name = 'Tahoma'
32
    Font.Style = []
33
    ParentFont = False
34
  end
35
  object ComboBox1: TComboBox
36
    Left = 111
37
    Top = 24
38
    Width = 58
39
    Height = 21
40
    Style = csDropDownList
41
    TabOrder = 1
42
    OnChange = Recalc
43
  end
44
  object ComboBox2: TComboBox
45
    Left = 303
46
    Top = 24
47
    Width = 58
48
    Height = 21
49
    Style = csDropDownList
50
    TabOrder = 3
51
    OnChange = Recalc
52
  end
53
  object Edit1: TEdit
54
    Left = 24
55
    Top = 24
56
    Width = 81
57
    Height = 21
58
    TabOrder = 0
59
    Text = 'Edit1'
60
    OnChange = Recalc
61
  end
62
  object Edit2: TEdit
63
    Left = 216
64
    Top = 24
65
    Width = 81
66
    Height = 21
67
    TabStop = False
68
    Color = clBtnFace
69
    ReadOnly = True
70
    TabOrder = 2
71
    Text = 'Edit1'
72
  end
73
  object CheckBox1: TCheckBox
74
    Left = 24
75
    Top = 80
76
    Width = 89
77
    Height = 17
78
    TabStop = False
79
    Caption = 'Historic date:'
80
    TabOrder = 5
81
    OnClick = Recalc
82
  end
83
  object DateTimePicker1: TDateTimePicker
84
    Left = 119
85
    Top = 76
86
    Width = 97
87
    Height = 21
88
    Date = 42973.608142604160000000
89
    Time = 42973.608142604160000000
90
    TabOrder = 4
91
    TabStop = False
92
    OnChange = Recalc
93
  end
94
end