Posted 13 January 2023, 1:03 pm EST
I’ve found that when there is an RTF control on a section report, and attempt to render this through a .net core project, it does not render (it’s blank).
Looking at some doc, it seems that there is a switch that should be used for that on the section report:
this.CompatibilityMode = GrapeCity.ActiveReports.Document.CompatibilityModes.CrossPlatform;
vs
this.CompatibilityMode = GrapeCity.ActiveReports.Document.CompatibilityModes.GDI;
When using the CrossPlatform, whether it is in a Framework project or core project, the RTF controls do not render. This can be demonstrated by using the example provided in this other post, and inserting that CrossPlatform line in the designer:
https://www.grapecity.com/forums/activereports/richtextbox-replacefield-broken-in-16-1-2
FYI – I am using AR 16.1.2, VS2022, .Net Core 6.0 and a framework project to do preview support in framework 4.7.2.
Is there a workaround for this, or is this something that has been discovered?
Thanks!