I have the following code sample in while I want to access the reportparameter name "Data" 's value. However, it shows up empty at runtime. If I leave out this subroutine, my DatahtmlTextBox would show value from :
What am I missing here that I don't get any data within my DatahtmlTextBox_ItemDataBinding sub?
Me
.DatahtmlTextBox.Value = "{Parameters.Data.Value}" set inside the Private Sub InitializeComponent()
What am I missing here that I don't get any data within my DatahtmlTextBox_ItemDataBinding sub?
Private Sub DatahtmlTextBox_ItemDataBinding(ByVal sender As Object, ByVal e As System.EventArgs) Handles DatahtmlTextBox.ItemDataBinding |
Dim HtmlTextBox As Telerik.Reporting.Processing.HtmlTextBox = DirectCast(sender, Telerik.Reporting.Processing.HtmlTextBox) |
HtmlTextBox.Value = "<b>" & Me.ReportParameters("Data").Value & "I then</b> decided to open the word doc and save it as a .jpg." |
End Sub |