Hi
I have a report (.MRT file), which has multiple pages like "Stocklist"(page1), "Barcode"(page2). The problem is when i select option in the program to preview "Barcode" (page2) the report display blank. If preview "Stocklist" (page1) the report display nicely. Is there way to preview or render only "Stocklist"(page1) or "Barcode"(page2) condition based.
Attached with the .mrt file.
Thanks
Load/View Multiple Pages based on condition
Load/View Multiple Pages based on condition
- Attachments
-
- StockListing.mrt
- (40.22 KiB) Downloaded 162 times
Re: Load/View Multiple Pages based on condition
Hello,
Can you please send us a test data for your report for analysis.
Also as a way, you can set the Enabled property for pages to false and use the additional code in BeforePrint event:
Thank you.
Can you please send us a test data for your report for analysis.
Also as a way, you can set the Enabled property for pages to false and use the additional code in BeforePrint event:
Code: Select all
if (yourCondition)
{
Stocklist.Enabled = true;
}
else
{
Barcode.Enabled = true;
}