Subversion Repositories plumbers

Rev

Rev 16 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
object MainForm: TMainForm
2
  Left = 0
3
  Top = 0
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  ClientHeight = 72
7
  ClientWidth = 255
8
  Color = clBlack
9
  Font.Charset = DEFAULT_CHARSET
10
  Font.Color = clWindowText
11
  Font.Height = -11
12
  Font.Name = 'Tahoma'
13
  Font.Style = []
14
  KeyPreview = True
15
  OldCreateOrder = False
16
  Position = poScreenCenter
17
  OnCreate = FormCreate
18
  OnDestroy = FormDestroy
19
  OnKeyDown = FormKeyDown
20
  PixelsPerInch = 96
21
  TextHeight = 13
22
  object Image1: TImage
23
    Left = 159
24
    Top = 8
25
    Width = 41
26
    Height = 33
27
    OnMouseUp = ControlClick
28
  end
29
  object Panel1: TPanel
30
    Left = 24
31
    Top = 32
32
    Width = 176
33
    Height = 25
34
    BevelOuter = bvSpace
35
    Color = clWhite
36
    Ctl3D = False
37
    ParentBackground = False
38
    ParentCtl3D = False
39
    TabOrder = 0
40
    Visible = False
41
    OnMouseUp = ControlClick
42
  end
43
  object StartupTimer: TTimer
44
    Enabled = False
45
    Interval = 10
46
    OnTimer = StartupTimerTimer
47
    Left = 216
48
    Top = 16
49
  end
50
end