| private void textBoxDescription_ItemDataBound(object sender, System.EventArgs e) |
| { |
| Telerik.Reporting.Processing.TextBox textBoxDescription = (Telerik.Reporting.Processing.TextBox)sender; |
| if (textBoxDescription.Text == "") |
| { |
| textBoxDescription.Visible = false; |
| labelDescription.Visible = false;//This doesn't work |
| } |
| } |
I am new to Telerik Reporting however I have been using RadControls for over 2 years now. I am currently working on an RMS (Records Management System) project for several clients. Needless to say I don’t feel like dealing with all the baggage within Crystal Reports (I can’t stand the viewer) and since I have been “Telerikized” I figured I’d give reporting a shot. I need to display an image in the Page Header that is unique to each client. It has to be able to be loaded dynamically depending on the designated client. Is there any way to do this without having to use a dataset? Parameters?
Bernard J Bobinski
En4cer Web Systems
myReport.mypic.Value = "C:\\temp\\picture.jpeg";
myReport is the report and mypic is the picturebox.
i have created a picture box on the report and
on the calling aspx file i give like this.
but the report is not opening that picture.
is there any thing else i have to do.
| Me.sqlSelectCommand1.Parameters.AddRange(New System.Data.SqlClient.SqlParameter() {New System.Data.SqlClient.SqlParameter("@user_id", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, False, CType(0, Byte), CType(0, Byte), "user_id", System.Data.DataRowVersion.Current, "aaa")}) |