Hi
When i add the UltraGridExcelExporter control to my form the following error shows
Private
Sub InitializeComponent()
Me
.UltraGridExcelExporter1 = New Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(Me.components)
error:Error 27 'UltraGridExcelExporter' is ambiguous in the namespace 'Infragistics.Win.UltraWinGrid.ExcelExport'. C:\SVNSource\production\costcontrolsystem\frmBOMCompare.Designer.vb 71 42 CostPlanning
Friend
WithEvents CmdAllDifferences As System.Windows.Forms.Button
error: Error 28 'UltraGridExcelExporter' is ambiguous in the namespace 'Infragistics.Win.UltraWinGrid.ExcelExport'. C:\SVNSource\production\costcontrolsystem\frmBOMCompare.Designer.vb 554 50 CostPlanning
any idea?
also after typing New Infragistics.Win.UltraWinGrid.ExcelExport. does not give me any options
It sounds like there are conflicting references in your project. Are you certain that you have the same versions of all of your assemblies referenced in your project? You might also want to check to ensure that you have the proper CLR versions of the Excel and ExcelExporter assemblies (i.e. both start with either "Infragistics2" or "Infragistics3").
-Matt
already check the assamblies version and all Infragistics2, also i just created a new project and added ultragrid, ultraexplorer and ultragridexcelexplorer and there was no problem, only on my current project when i add the ultragridexcelexplorer control
The only thing that comes to mind is that possibly there is something that is holding onto a reference, such as in the licenses.licx file or in the bin/obj directories. If this is the case, you could try clearing the contents of the licenses file, or deleting the bin/obj directories.
infragistic2 and 3 was added on my references, just removed excelexport.infragistics3 from my references and it worked fine.
Thanks.