I have created WPF/C# application with using Crystal Reports for Visual Studio 2017 SP 21. I'm displaying a report in Crystal Reports Viewer. Unfortunetly subreports on-demand and hyperlinks doesn't work. Only the hand cursor appears, but after clicking nothing happens.
For clarity my code:
XAML:
<cr:CrystalReportsViewer ShowOpenFileButton="True" Name="reportViewer"/>
Code-behind:
reportViewer.Owner = this; reportViewer.ViewerCore.EnableDrillDown = true;
In older versions this worked.
I will be grateful for your help.