Telerik.ReportViewer.axd
here's what I get when i put the link on my browser:
http://laptop01:8002/Telerik.ReportViewer.axd?instanceid=45d46da60fbb4619ae271d8bb9180196&optype=ReportImage&StreamID=33j1dllerds
HTTP Error 404.0 - Not Found
Please help.
GROUP 1 |
NUMBER |
1 |
0 |
1 |
0 |
0 |
Total 0 = 3/ Total 1 = 2 |
GROUP 2 |
NUMBER |
1 |
1 |
1 |
0 |
0 |
Total 0 = 2/ Total 1 = 3 |
TOTAL GROUPS Total 0 = 5 / Total 1 = 5 |
Total 0 = 3 (it counts when the FIELDS.NUMBER = 0) |
Total 1 = 2 (it counts when the FIELDS.NUMBER = 1) |
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; |