I have an application built in VS2015 (Community) which utilizes an .rpt which is located in network folder for all to use.
I added the existing report "as a link"
I have a typed Dataset and datatable, (myDatatable)
I used dsMyDataset.WriteXML("mySchema.xml", XmlWriteMode.WriteSchema) to create the Schema, once this was complete I commented out this code.
I use the following code to show the report in a viewer
Dim rptNoodles as New crMyReport
rptNoodles.SetDataSource(dtMyDatatable)
crvReport.ReportSource = rptNoodle
Everything works fine with the application on the development machine, and deploys fine and runs fine on the individual machines throughout the office.
However, when I make a small change to the .rpt on the network, the change is not reflect the next time the users print. The development machine reflects the change....and the .rpt (raw) shows the change saved... but the individual users reports are not reflecting the change.
I have tired changing the "Build Action" , but I receive errors with everything except "Embedded Resource"
Any ideas on what I am doing wrong?