Dim THrsD As Integer
Dim TMinD As Integer
Dim THrsN As Integer
Dim TMinN As Integer
Dim THrsExtD As Integer
Dim TMinExtD As Integer
Dim THrsExtN As Integer
Dim TMinExtN As Integer
Dim Clau26 As Integer
With Data2.Recordset
While Not .EOF
'....................................
'hD:
If IsNumeric(![HrsD]) = False Then
Exit Sub
Else
THrsD = THrsD + Val(![HrsD])
End If
'mD:
If IsNumeric(![MinD]) = False Then
Exit Sub
Else
TMinD = TMinD + Val(![MinD])
End If
'....................................
'hN:
If IsNumeric(![HrsN]) = False Then
Exit Sub
Else
THrsN = THrsN + Val(![HrsN])
End If
'mN:
If IsNumeric(![MinN]) = False Then
Exit Sub
Else
TMinN = TMinN + Val(![MinN])
End If
'....................................
'hExtD:
If IsNumeric(![HrsExtD]) = False Then
Exit Sub
Else
THrsExtD = THrsExtD + Val(![HrsExtD])
End If
'mExtD:
If IsNumeric(![MinExtD]) = False Then
Exit Sub
Else
TMinExtD = TMinExtD + Val(![MinExtD])
End If
'....................................
'hExtN:
If IsNumeric(![HrsExtN]) = False Then
Exit Sub
Else
THrsExtN = THrsExtN + Val(![HrsExtN])
End If
'mExtN:
If IsNumeric(![MinExtN]) = False Then
Exit Sub
Else
TMinExtN = TMinExtN + Val(![MinExtN])
End If
'....................................
.MoveNext
Wend
End With
LbHrsD.Caption = THrsD & ":" & TMinD
LbHrsN.Caption = THrsN & ":" & TMinN
LbTotalHrs.Caption = (THrsD + THrsN) & ":" & (TMinD + TMinN)
If (THrsD + THrsN) > 44 Then
Clau26 = (THrsD + THrsN) - 44
Else
Clau26 = 0
End If
LbHrsExtD.Caption = THrsExtD & ":" & TMinExtD
LbHrsExtN.Caption = THrsExtN & ":" & TMinExtN
LbClau26.Caption = Clau26