or
I downloaded Telerik 2010Q3 trial version. Most of the components are useful for our requests but in some of our projects we have to use dot matrix printers. My question is, is it possible to get print out from Telerik reporting to dot matrix character mode printers. I develop web applications and for reporting I want to use Telerik Reporting.
can you please give information about printing into character mode printer for web applications?
thanks
I can not get a report with a dataset datasource to preview with data. Here is the recipe that shows my problem.
I am a fairly new user. Can someone please tell me what I am doing wrong?
DataTable dt =
"DataTable with some data"
;
TrackTime tt = TrackTime();
//Master report with subreport 'SubTrackTime'
if
(dt !=
null
)
{
Telerik.Reporting.SubReport subReport = tt.Items.Find(
"subReport"
,
true
)[0]
as
Telerik.Reporting.SubReport;
SubTrackTime stt = (SubTrackTime)subReport.ReportSource;
Telerik.Reporting.Table tbl2 = stt.Items.Find(
"detailTable"
,
true
)[0]
as
Telerik.Reporting.Table;
tbl2.DataSource =
"DataTable with some data"
;
Telerik.Reporting.Table tbl = tt.Items.Find(
"timeTable"
,
true
)[0]
as
Telerik.Reporting.Table;
tbl.DataSource = dt;
rvTimeTrack.Report = tt;
//rvTimeTrack - reportViewer
}