Subversion Repositories delphiutils

Rev

Rev 75 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
75 daniel-mar 1
object MDIChild: TMDIChild
2
  Left = 197
3
  Top = 117
4
  Caption = 'Stoppuhr'
5
  ClientHeight = 148
6
  ClientWidth = 295
7
  Color = clBtnFace
8
  ParentFont = True
9
  FormStyle = fsMDIChild
10
  OldCreateOrder = False
11
  Visible = True
12
  OnClose = FormClose
13
  OnCloseQuery = FormCloseQuery
14
  OnCreate = FormCreate
15
  DesignSize = (
16
    295
17
    148)
18
  PixelsPerInch = 96
19
  TextHeight = 13
20
  object Label1: TLabel
21
    Left = 8
22
    Top = 8
23
    Width = 94
24
    Height = 29
25
    Caption = '00:00:00'
26
    Font.Charset = DEFAULT_CHARSET
27
    Font.Color = clWindowText
28
    Font.Height = -24
29
    Font.Name = 'Tahoma'
30
    Font.Style = []
31
    ParentFont = False
32
  end
33
  object Memo1: TMemo
34
    Left = 8
35
    Top = 43
36
    Width = 278
37
    Height = 59
38
    Anchors = [akLeft, akTop, akRight, akBottom]
39
    Font.Charset = DEFAULT_CHARSET
40
    Font.Color = clWindowText
41
    Font.Height = -15
42
    Font.Name = 'Tahoma'
43
    Font.Style = []
44
    ParentFont = False
45
    TabOrder = 0
46
  end
47
  object Button1: TButton
48
    Left = 8
49
    Top = 108
50
    Width = 94
51
    Height = 30
52
    Anchors = [akLeft, akBottom]
53
    Caption = 'Start / Stopp'
54
    TabOrder = 1
55
    OnClick = Button1Click
56
  end
57
  object Button2: TButton
58
    Left = 213
59
    Top = 108
60
    Width = 73
61
    Height = 30
62
    Anchors = [akRight, akBottom]
63
    Caption = 'Reset'
64
    TabOrder = 2
65
    OnClick = Button2Click
66
  end
67
  object Timer1: TTimer
68
    Interval = 100
69
    OnTimer = Timer1Timer
70
    Left = 248
71
    Top = 8
72
  end
73
end