visual studio - Changes not apply when using ReportEmbeddedResource -


i have layout file put in "client\report\receipt.rdlc", when change receipt.rdlc , rebuild program, changes did not apply program.

reportdatasource receiptdatasource = new reportdatasource("receiptinfo", new list<receiptinfo>() { currentreceipt });  localreport receiptreport = new localreport(); receiptreport.reportembeddedresource = "client.report.receipt.rdlc"; receiptreport.datasources.add(receiptdatasource); 


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -