or
Me
.DatahtmlTextBox.Value = "{Parameters.Data.Value}" set inside the Private Sub InitializeComponent()
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 |
hi all!
I'm trying to use a user-defined function in Telerik Reporting Q2 2009. but i get an error message "Undefined function call" when i use float or double as an argument in the function.
My function is
public static float Myfloat(float x)
{
return x;
}
which i call using
=MyFloat(16.5)
BTW, if a change it like this
public static float Myfloat(int x)
{
return x;
}
which i call using
=MyFloat(16)
it works fine.
What may be the problem? Thnx so much.
var report = new Report1(); |
// Assigning the ObjectDataSource component to the DataSource property of the report. |
report.DataSource = objectDataSource; |