public ReportClass()
{
StringBuilder sb = new StringBuilder();
InitializeComponent();
 
sb.Append("select SY.name_system, SE.id_employee, SE.id_system, SE.id_user, SE.date_change").Append(" ");
sb.Append("from Secured SE").Append(" ");
sb.Append("inner join Systems SY on SY.id_system=SE.id_system").Append(" ");
sb.Append("where SE.is_active=1 and SE.id_employee=").Append("4").Append(" ");
sb.Append("Order by SE.date_change DESC");
sqlSource.SelectCommand = sb.ToString();
txtRunDate.Value = DateTime.Today.ToShortDateString();
}
in the Q1 2012 release of the Silverlight Reporting control the attribute
telerik1:StyleManager.Theme="Windows7"
isn't working anymore.
I get the error:
Fehler 85 A ResourceDictionary '/Telerik.Windows.Themes.Windows7;component/Themes/Telerik.ReportViewer.Silverlight.xaml' cannot be found. Please make sure that references to the needed theme assemblies have been added to the project. C:\Documents and Settings ...
Is it possible that you forgot to implement this style?
Regards
Dirk