hi guyz i've been working and searching for a report using WPF C# and foundout one of the a nice report and easy also... found this link and use it. Open-Source .NET WPF Reporting Engine so i tried to use it... pls check my code....
in my EmployeeProfileWindow in print button...:
private void btnprintviolation_Click(object sender, RoutedEventArgs e)
{
ReportViolationWindow NewReportViolationWindow = new ReportViolationWindow();
//Windows.Add(NewReportViolationWindow);
GlobalVar.ViolationEmpNum = txtdispid.Text;
GlobalVar.ViolationRefNumToPrint.Clear();
for (int i = 0; i < lvviolations.Items.Count; i++)
{
GlobalVar.ViolationRefNumToPrint.Add(((EmpViolationObject)lvviolations.Items[i]).VioRefNum);
}
NewReportViolationWindow.Show();
}
so if ever i click the button it will appear a new Window name NewReportViolationWindow. i'll just copy or edited as what in the opensource sample is... in Template folder. i created my report named ReportViolation
now here's the code behind in NewReportViolationWindow.
ReportDocument reportDocument = new ReportDocument();
string ats = new DirectoryInfo(Environment.CurrentDirectory).Parent.Parent.FullName;
StreamReader reader = new StreamReader(new FileStream(ats.ToString() + @"\Template\ReportViolation.xaml", FileMode.Open, FileAccess.Read));
reportDocument.XamlData = reader.ReadToEnd();
reportDocument.XamlImagePath = Path.Combine(ats.ToString(), @"Template\");
reader.Close();
DateTime dateTimeStart = DateTime.Now; // start time measure here
List<ReportData> listData = new List<ReportData>();
//foreach (string item in GlobalVar.ViolationRefNumToPrint)
for (int i = 0; i < 5 ; i++)
{
ReportData data = new ReportData();
data.ReportDocumentValues.Add("PrintDate", DateTime.Now);
data.ReportDocumentValues.Add("EmpIDNum", NewIDNumber.ToString());
data.ReportDocumentValues.Add("EmpName", NewEmpName.ToString());
data.ReportDocumentValues.Add("EmpPosition", NewPosition.ToString());
//data.ReportDocumentValues.Add("VioRefCode", item.ToString());
listData.Add(data);
}
XpsDocument xps = reportDocument.CreateXpsDocument(listData);
documentViewer.Document = xps.GetFixedDocumentSequence();
// show the elapsed time in window title
Title += " - generated in " + (DateTime.Now - dateTimeStart).TotalMilliseconds + "ms";
}
catch (Exception ex)
{
// show exception
MessageBox.Show(ex.Message + "\r\n\r\n" + ex.GetType() + "\r\n" + ex.StackTrace, ex.GetType().ToString(), MessageBoxButton.OK, MessageBoxImage.Stop);
}
now when i run my application and click the print button. sometime at first it will open the NewReportViolationWindow. with no error but when i try to close the report or click the button again.. it will give a message...
Specified Visual is already a child of another Visual or the root of the component target
here's the image....

i think the problem is when i call the print report which the code behind the print button... hmmm can anyone? pls... :)
2ND EDIT
about your question:
- You say that the report window usually opens up without an error the first time, but not after that?
ans: Yes correct..
- Are there any shared resources that are being used in the ReportViolationWindow?
ans: Sorry I dont have any idea coz what i did is i just followed the sample in the Opensource.
- How are you disposing of/handling the close of the ReportViolationWindow?
ans: So far i still dont have a code for proper closing of my ReportViolationWindow. when i click the close button and that's it... sorry for that... :(
- Are you keeping any other references to this ReportViolationWindow instance?
ans: No. as far as i know.