Subversion Repositories delphiutils

Rev

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

Rev Author Line No. Line
78 daniel-mar 1
object Form1: TForm1
2
  Left = 0
3
  Top = 0
4
  Caption = 'Digitale Zeiterfassung'
5
  ClientHeight = 485
6
  ClientWidth = 852
7
  Color = clBtnFace
8
  Font.Charset = DEFAULT_CHARSET
9
  Font.Color = clWindowText
10
  Font.Height = -11
11
  Font.Name = 'Tahoma'
12
  Font.Style = []
13
  OldCreateOrder = False
14
  Position = poScreenCenter
15
  OnClose = FormClose
16
  OnShow = FormShow
17
  PixelsPerInch = 96
18
  TextHeight = 13
19
  object wwDBGrid1: TwwDBGrid
20
    Left = 0
21
    Top = 50
22
    Width = 852
23
    Height = 435
24
    ControlType.Strings = (
25
      'FREIER_TAG;CheckBox;Wahr;Falsch')
26
    Selected.Strings = (
27
      'WOCHENTAG'#9'2'#9' '
28
      'TAG'#9'10'#9'TAG'
29
      'FREIER_TAG'#9'6'#9'Frei'
30
      'KOMMEN'#9'8'#9'Kommen'
31
      'PAUSE_START'#9'8'#9'Pause'
32
      'PAUSE_ENDE'#9'8'#9'Ende'
33
      'GEHEN'#9'9'#9'Gehen'
34
      'SONSTIGER_ABZUG'#9'10'#9'Sonst. Abzug'
35
      'ZUHAUSE'#9'11'#9'Arb. zuhause'
36
      #220'BERSTUNDEN'#9'15'#9#220'berstunden heute'
37
      #220'BERSTUNDEN_SALDO'#9'16'#9#220'berstunden ges.')
38
    IniAttributes.Delimiter = ';;'
39
    TitleColor = clBtnFace
40
    FixedCols = 0
41
    ShowHorzScrollBar = True
42
    Align = alClient
43
    DataSource = DataSource1
44
    KeyOptions = [dgEnterToTab, dgAllowDelete, dgAllowInsert]
45
    TabOrder = 0
46
    TitleAlignment = taLeftJustify
47
    TitleFont.Charset = DEFAULT_CHARSET
48
    TitleFont.Color = clWindowText
49
    TitleFont.Height = -11
50
    TitleFont.Name = 'Tahoma'
51
    TitleFont.Style = []
52
    TitleLines = 1
53
    TitleButtons = False
54
    OnCalcCellColors = wwDBGrid1CalcCellColors
55
  end
56
  object Panel1: TPanel
57
    Left = 0
58
    Top = 0
59
    Width = 852
60
    Height = 50
61
    Align = alTop
62
    TabOrder = 1
63
    ExplicitWidth = 827
64
    DesignSize = (
65
      852
66
      50)
67
    object Label1: TLabel
68
      Left = 208
69
      Top = 12
70
      Width = 81
71
      Height = 13
72
      Caption = 'Regelarbeitszeit:'
73
    end
74
    object Label2: TLabel
75
      Left = 208
76
      Top = 27
77
      Width = 12
78
      Height = 13
79
      Caption = '...'
80
    end
81
    object Button1: TButton
82
      Left = 610
83
      Top = 12
84
      Width = 53
85
      Height = 24
86
      Anchors = [akTop, akRight]
87
      Caption = 'Reorg'
88
      TabOrder = 0
89
      TabStop = False
90
      OnClick = Button1Click
91
      ExplicitLeft = 585
92
    end
93
    object DBNavigator1: TDBNavigator
94
      Left = 669
95
      Top = 12
96
      Width = 168
97
      Height = 25
98
      DataSource = DataSource1
99
      VisibleButtons = [nbFirst, nbLast, nbInsert, nbDelete, nbPost, nbCancel]
100
      Anchors = [akTop, akRight]
101
      TabOrder = 1
102
      ExplicitLeft = 644
103
    end
104
    object ComboBox1: TComboBox
105
      Left = 24
106
      Top = 16
107
      Width = 169
108
      Height = 21
109
      Style = csDropDownList
110
      ItemHeight = 13
111
      TabOrder = 2
112
      OnChange = ComboBox1Change
113
    end
114
  end
115
  object ADOConnection1: TADOConnection
116
    LoginPrompt = False
117
    Provider = 'SQLOLEDB.1'
118
    Left = 280
119
    Top = 16
120
  end
121
  object ADOTable1: TADOTable
122
    Connection = ADOConnection1
123
    CursorType = ctStatic
124
    BeforePost = ADOTable1BeforePost
125
    AfterPost = ADOTable1AfterPost
126
    AfterDelete = ADOTable1AfterDelete
127
    OnNewRecord = ADOTable1NewRecord
128
    TableName = 'TAGE'
129
    Left = 312
130
    Top = 16
131
    object ADOTable1WOCHENTAG: TStringField
132
      DisplayLabel = ' '
133
      DisplayWidth = 2
134
      FieldKind = fkCalculated
135
      FieldName = 'WOCHENTAG'
136
      ReadOnly = True
137
      OnGetText = ADOTable1WOCHENTAGGetText
138
      Size = 2
139
      Calculated = True
140
    end
141
    object ADOTable1TAG: TWideStringField
142
      DisplayWidth = 10
143
      FieldName = 'TAG'
144
      OnChange = ADOTable1TAGChange
145
      OnGetText = ADOTable1TAGGetText
146
      OnSetText = ADOTable1TAGSetText
147
      Size = 10
148
    end
149
    object ADOTable1FREIER_TAG: TBooleanField
150
      DisplayLabel = 'Frei'
151
      DisplayWidth = 6
152
      FieldName = 'FREIER_TAG'
153
    end
154
    object ADOTable1KOMMEN: TWideStringField
155
      DisplayLabel = 'Kommen'
156
      DisplayWidth = 8
157
      FieldName = 'KOMMEN'
158
      OnGetText = ADOTable1KOMMENGetText
159
      OnSetText = ADOTable1KOMMENSetText
160
      Size = 8
161
    end
162
    object ADOTable1PAUSE_START: TWideStringField
163
      DisplayLabel = 'Pause'
164
      DisplayWidth = 8
165
      FieldName = 'PAUSE_START'
166
      OnGetText = ADOTable1PAUSE_STARTGetText
167
      OnSetText = ADOTable1PAUSE_STARTSetText
168
      Size = 8
169
    end
170
    object ADOTable1PAUSE_ENDE: TWideStringField
171
      DisplayLabel = 'Ende'
172
      DisplayWidth = 8
173
      FieldName = 'PAUSE_ENDE'
174
      OnGetText = ADOTable1PAUSE_ENDEGetText
175
      OnSetText = ADOTable1PAUSE_ENDESetText
176
      Size = 8
177
    end
178
    object ADOTable1GEHEN: TWideStringField
179
      DisplayLabel = 'Gehen'
180
      DisplayWidth = 9
181
      FieldName = 'GEHEN'
182
      OnGetText = ADOTable1GEHENGetText
183
      OnSetText = ADOTable1GEHENSetText
184
      Size = 8
185
    end
186
    object ADOTable1SONSTIGER_ABZUG: TWideStringField
187
      DisplayLabel = 'Sonst. Abzug'
188
      DisplayWidth = 10
189
      FieldName = 'SONSTIGER_ABZUG'
190
      OnGetText = ADOTable1SONSTIGER_ABZUGGetText
191
      OnSetText = ADOTable1SONSTIGER_ABZUGSetText
192
      Size = 8
193
    end
194
    object ADOTable1ZUHAUSE: TWideStringField
195
      DisplayLabel = 'Arb. zuhause'
196
      DisplayWidth = 11
197
      FieldName = 'ZUHAUSE'
198
      OnGetText = ADOTable1ZUHAUSEGetText
199
      OnSetText = ADOTable1ZUHAUSESetText
200
      Size = 8
201
    end
202
    object ADOTable1BERSTUNDEN: TIntegerField
203
      DisplayLabel = #220'berstunden heute'
204
      DisplayWidth = 15
205
      FieldName = #220'BERSTUNDEN'
206
      OnGetText = ADOTable1BERSTUNDENGetText
207
    end
208
    object ADOTable1BERSTUNDEN_SALDO: TIntegerField
209
      DisplayLabel = #220'berstunden ges.'
210
      DisplayWidth = 16
211
      FieldName = #220'BERSTUNDEN_SALDO'
212
      OnGetText = ADOTable1BERSTUNDEN_SALDOGetText
213
    end
214
    object ADOTable1USERNAME: TStringField
215
      FieldName = 'USERNAME'
216
      Visible = False
217
      Size = 100
218
    end
219
  end
220
  object DataSource1: TDataSource
221
    DataSet = ADOTable1
222
    Left = 344
223
    Top = 16
224
  end
225
end