Subversion Repositories general

Rev

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

Rev Author Line No. Line
1081 dev 1
object OptionsForm: TOptionsForm
2
  Left = 191
3
  Top = 107
4
  BorderIcons = [biSystemMenu]
5
  BorderStyle = bsDialog
6
  Caption = 'Options - akTimeLog'
7
  ClientHeight = 125
8
  ClientWidth = 340
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  OldCreateOrder = False
16
  Position = poDesktopCenter
17
  PixelsPerInch = 96
18
  TextHeight = 13
19
  object AutoRunCheckBox: TCheckBox
20
    Left = 4
21
    Top = 4
22
    Width = 331
23
    Height = 17
24
    Anchors = [akLeft, akTop, akRight]
25
    Caption = 'Auto run the program on Windows start'
26
    TabOrder = 0
27
    OnClick = AutoRunCheckBoxClick
28
  end
29
  object AutoRunGroupBox: TGroupBox
30
    Left = 4
31
    Top = 24
32
    Width = 331
33
    Height = 65
34
    Anchors = [akLeft, akTop, akRight]
35
    Caption = 'Auto Run options'
36
    TabOrder = 1
37
    object UserNameLabel: TLabel
38
      Left = 28
39
      Top = 40
40
      Width = 51
41
      Height = 13
42
      Caption = 'User name'
43
    end
44
    object OneUserCheckBox: TCheckBox
45
      Left = 8
46
      Top = 16
47
      Width = 315
48
      Height = 17
49
      Anchors = [akLeft, akTop, akRight]
50
      Caption = 'Log only one user'
51
      TabOrder = 0
52
      OnClick = OneUserCheckBoxClick
53
    end
54
    object UserNameEdit: TEdit
55
      Left = 88
56
      Top = 36
57
      Width = 235
58
      Height = 21
59
      Anchors = [akLeft, akTop, akRight]
60
      TabOrder = 1
61
    end
62
  end
63
  object OkButton: TButton
64
    Left = 176
65
    Top = 95
66
    Width = 75
67
    Height = 25
68
    Anchors = [akRight, akBottom]
69
    Caption = 'OK'
70
    Default = True
71
    ModalResult = 1
72
    TabOrder = 2
73
  end
74
  object CancelButton: TButton
75
    Left = 260
76
    Top = 95
77
    Width = 75
78
    Height = 25
79
    Anchors = [akRight, akBottom]
80
    Cancel = True
81
    Caption = 'Cancel'
82
    ModalResult = 2
83
    TabOrder = 3
84
  end
85
end