or
Imports System.ComponentModel |
Imports System.Drawing |
Imports System.Data |
Imports System.Windows.Forms |
Imports Telerik.Reporting |
Imports Telerik.Reporting.Drawing |
Imports Telerik.Reporting.Processing |
Private Sub DetailSection1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles DetailSection1.ItemDataBound |
Dim section As Telerik.Reporting.Processing.DetailSection = DirectCast(sender, Telerik.Reporting.Processing.DetailSection) |
' From the section object get the current DataRow |
Dim row As System.Data.DataRow = DirectCast(section.DataObject.RawData, System.Data.DataRow) |
If row("TierType").ToString = "4T" Then <<<< |
T4Table.Visible = True |
End If |
End Sub |