Forum: ASP.NET2.0 |
Thema:
AW: AW: AW: AW: Formate einer Zelle im GRIDVIEW |
Von:
Thomas Scherner (
31.01.2007 14:50) |
Ich habs mal so versucht aber er macht keine Farbe ;-((
Private Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
Dim SollStart As Date
Dim SollStop As Date
Dim IstStart As Date
Dim IstStop As Date
'IstStart einfärben wenn Abweichungen auftreten
Try
SollStart = CDate(e.Row.DataItem.Cells(4).Text)
If e.Row.DataItem.Cells(6).Text = " " Then
If Now > DateAdd(DateInterval.Minute, NICHTDA, SollStart) Then
e.Row.DataItem.Cells(6).BackColor = Drawing.Color.Red
End If
Else
IstStart = CDate(e.Row.DataItem.Cells(6).Text)
If IstStart > DateAdd(DateInterval.Minute, ZUSPAET, SollStart) Then
e.Row.DataItem.Cells(6).BackColor = Drawing.Color.Orange
End If
If IstStart < DateAdd(DateInterval.Minute, -ZUFRUEH, SollStart) Then
e.Row.DataItem.Cells(6).BackColor = Drawing.Color.Yellow
End If
End If
Catch
End Try
End Sub
Danke
Thomas
Ich bin ein Newbie . Aber jeder hat mal angefangen. Gruß & Dank Thomas
Betreff |
Von |
Datum |
|
|
Thomas
Scherner
|
01.02.2007 22:45 |
|
|
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!