This commit is contained in:
2021-11-25 14:09:40 +01:00
parent e19a163187
commit dbe63ae55a
14 changed files with 138 additions and 101 deletions

View File

@@ -117,9 +117,9 @@ Public Class rptAuswertung
'Abwechselnd grauen und wei<65>en Hintergrund
If (dummycount Mod 2) = 0 Then
Detail1.BackColor = Drawing.Color.White
Detail1.BackColor = Color.White
Else
Detail1.BackColor = Drawing.Color.WhiteSmoke
Detail1.BackColor = Color.WhiteSmoke
End If
End Sub
End Class