[RESOLVED] use embedded rdlc report?
This works fine
RV1.LocalReport.ReportPath = "C:\POSData\WorkOrder.rdlc"
I am trying to embed the report (as a resource?) in the app... but i can seem to get it to work..
RV1.LocalReport.ReportEmbeddedResource requires a string, so i cant reference the report like my.resources.dailysales
is there a way to do this?
Re: use embedded rdlc report?
ok figured it out...
RV1.LocalReport.ReportEmbeddedResource = "BouquetsByBonniePOS.DailySales.rdlc"
but must have the file marked as embedded, (it still wont load right, but at least i am a step closer)