Subversion Repositories general

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1078 dev 1
object WaitForm: TWaitForm
2
  Left = 191
3
  Top = 107
4
  BorderStyle = bsDialog
5
  Caption = 'WaitForm'
6
  ClientHeight = 60
7
  ClientWidth = 172
8
  Color = clBtnFace
9
  Font.Charset = DEFAULT_CHARSET
10
  Font.Color = clWindowText
11
  Font.Height = -11
12
  Font.Name = 'MS Sans Serif'
13
  Font.Style = []
14
  OldCreateOrder = False
15
  Position = poMainFormCenter
16
  OnCloseQuery = FormCloseQuery
17
  PixelsPerInch = 96
18
  TextHeight = 13
19
  object WaitLabel: TLabel
20
    Left = 2
21
    Top = 8
22
    Width = 168
23
    Height = 13
24
    Alignment = taCenter
25
    Anchors = [akLeft, akTop, akRight]
26
    AutoSize = False
27
    Caption = 'Loading...'
28
  end
29
  object AbortButton: TButton
30
    Left = 48
31
    Top = 30
32
    Width = 75
33
    Height = 25
34
    Anchors = [akBottom]
35
    Cancel = True
36
    Caption = '&Abort'
37
    Default = True
38
    TabOrder = 0
39
    OnClick = AbortButtonClick
40
  end
41
  object Timer: TTimer
42
    Interval = 100
43
    OnTimer = TimerTimer
44
    Left = 136
45
    Top = 2
46
  end
47
end