[Progress Communities] [Progress OpenEdge ABL] Forum Post: Infragistics issue compiling OE10 code under OE11 in Eclipse

  • Thread starter Thread starter MBeynon
  • Start date Start date
Status
Not open for further replies.
M

MBeynon

Guest
Hi, We need to be able to compile existing OE10 code in OE11 for our customers. Our codebase does not currently use OE11 version Infragistics files so I would expect no problems if we included our v9.2 Infragistics components in our OE11 assemblies file. I have an OE .NET form that defines; USING Infragistics3.Excel.v9.2.* FROM ASSEMBLY. USING Infragistics3.Win.UltraWinGrid.ExcelExport.v9.2.* FROM ASSEMBLY. The code; DEFINE VARIABLE wsExporter AS Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter NO-UNDO. wsExporter = NEW Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(). /* add a worksheet to the work book */ wb:Worksheets:Add(lvcWorksheetName). /* create a worksheet object from the workbook's new worksheet */ ws = wb:Worksheets[lvcWorksheetName]. /* export the grid contents to the worksheet */ wsExporter:Export(GetReferenceToUltragrid(), ws ). When trying to compile I get the error; Could not locate method 'Export' with matching signature in class 'Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter'. (14457). If I remove the ws object the file compiles! I'm a bit confused as the Infagistics UltraGridExcelExporter is definately in the Assemblies (Windows GAC) and the Class browser clearly shows the method with the signature exists; Export (Infragistics.Win.UltraWinGrid.UltraGrid, Infragistics.Documents.Excel.Worksheet) Adding the v9.2 infragistics components to the v15 ones in the OE11 assemblies file makes no difference either. Have I missed something here? Thanks, Mark.

Continue reading...
 
Status
Not open for further replies.
Back
Top