Subversion Repositories autosfx

Rev

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

Rev Author Line No. Line
1 daniel-mar 1
object MainForm: TMainForm
2
  Left = 222
3
  Top = 112
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'ViaThinkSoft AutoSFX Extractor'
7
  ClientHeight = 120
8
  ClientWidth = 359
9
  Color = clBtnFace
10
  Font.Charset = ANSI_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  OldCreateOrder = False
16
  Position = poScreenCenter
17
  OnCloseQuery = FormCloseQuery
18
  OnCreate = FormCreate
19
  PixelsPerInch = 96
20
  TextHeight = 13
21
  object WaitLabel: TLabel
22
    Left = 8
23
    Top = 8
24
    Width = 48
25
    Height = 13
26
    Caption = 'WaitLabel'
27
    Font.Charset = ANSI_CHARSET
28
    Font.Color = clWindowText
29
    Font.Height = -11
30
    Font.Name = 'MS Sans Serif'
31
    Font.Style = []
32
    ParentFont = False
33
  end
34
  object CurrentFileLabel: TLabel
35
    Left = 8
36
    Top = 71
37
    Width = 233
38
    Height = 13
39
    AutoSize = False
40
    Caption = 'CurrentFileLabel'
41
    Font.Charset = ANSI_CHARSET
42
    Font.Color = clWindowText
43
    Font.Height = -11
44
    Font.Name = 'MS Sans Serif'
45
    Font.Style = []
46
    ParentFont = False
47
  end
48
  object ProgressBar: TProgressBar
49
    Left = 8
50
    Top = 27
51
    Width = 341
52
    Height = 30
53
    Smooth = True
54
    TabOrder = 0
55
  end
56
  object CancelBtn: TButton
57
    Left = 258
58
    Top = 87
59
    Width = 93
60
    Height = 25
61
    Cancel = True
62
    Caption = 'Abbrechen'
63
    Font.Charset = ANSI_CHARSET
64
    Font.Color = clWindowText
65
    Font.Height = -11
66
    Font.Name = 'MS Sans Serif'
67
    Font.Style = []
68
    ParentFont = False
69
    TabOrder = 1
3 daniel-mar 70
    TabStop = False
1 daniel-mar 71
    OnClick = CancelBtnClick
72
  end
73
  object itemBar: TProgressBar
74
    Left = 8
75
    Top = 90
76
    Width = 233
77
    Height = 22
78
    Smooth = True
79
    TabOrder = 2
80
  end
81
  object AutoTimer: TTimer
82
    OnTimer = AutoTimerTimer
83
    Left = 320
84
    Top = 8
85
  end
86
end