![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I always get the late binding error with the following method. Is there anyway around this without turning Option Strict Off? Private Sub grdAccounts_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles grdAccounts.ItemDataBound If (e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem) Then Dim myBool As Boolean myBool = DirectCast(e.Item.DataItem("inactive"), Boolean) If myBool = True Then For x As Integer = 1 To e.Item.Cells.Count - 1 e.Item.Cells(x).BackColor = System.Drawing.Color.FromName("#ececec") Next End If End If End Sub -------------------------------- From: Chris Davey ----------------------- Posted by a user from .NET 247 (http://www.dotnet247.com/) Id>jOwUfUmTwE+j80N6FGjw5w==</Id |
#3
| |||
| |||
|
#4
| |||
| |||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |