In Silverlight application, Im using RegBusinessObject. I made example equals Silverlight Pure with RegBusiness.
I am using WCF and when calling the asynchronous method I would like to have to progressbar.
I need to place to progressbar. How I make?
servicoWCF.ReportAsync();
ReportCompleted
System.Reflection.Assembly a = System.Reflection.Assembly.GetExecutingAssembly();
StreamReader sr = new StreamReader(a.GetManifestResourceStream(strArquivo));
StiReport report = new StiReport();
report.Load(sr.BaseStream);
sr.Dispose();
report.CalculationMode = StiCalculationMode.Interpretation;
report.RegBusinessObject("Data", "Data", dataRelatorio);
report.Render();
report.Show();
Thankyou
Teles