DevExpress.XtraPrinting.PrintingSystemBase not avaialbe

Using DevExpress WinForms Controls v13.2

Under VS 2012, in C#, this compiles :-

  var myPrintingSystem = new DevExpress.XtraPrinting.PrintingSystemBase();

Under VS2012, in Oxygene, this does not compile :-

var myPrintingSystem := new DevExpress.XtraPrinting.PrintingSystemBase;

In Oxygene I get unknown identifier and the PrintingSystemBase is simply not visible.

Am I missing something ?

I am using DevExpress 13.2 for reporting in Oxygene without problems…
Can you check that all the needed references are in your project?

  • Devxpress.Printing.v13.2.Core.dll
  • Devxpress.XtraPrinting.v13.2.dll
  • Devxpress.Utils.v13.2.dll

Hello,

Could you please send us a project that shows the problem? You can send it via support@remobjects.com if you want to keep it privatelly.

Best regards.

Thank you.

I was missing the reference to DevExpress.Printing.Core, but had the others.

I was looking at implementing multiple grid exports to one Excel file - as per as C# example on stackoverflow. Search for question 10318573 “exporting-several-xtragrid-controls-to-a-single-excel-file” as Carlo believes there is currently a problem posting links to SO on the forum.

With the extra reference in place and the C# oxidized I now have multiple grids exporting to one file.