Home › Forums › WinForms controls › Xceed Grid for WinForms › failed to create report
-
AuthorPosts
-
#17112 |
I was trying to create report from the xceed grid using the following:
GenerateReportForm generateReport = new GenerateReportForm(this.gridControl1);
generateReport.ShowDialog();But the error message is as follows.
BindingFailure was detected
Message: The assembly with display name ‘Xceed.Grid.Reporting.XmlSerializers’ failed to load in the ‘LoadFrom’ binding context of the AppDomain with ID 1. The cause of the failure was: System.IO.FileNotFoundException: Could not load file or assembly ‘Xceed.Grid.Reporting.XmlSerializers, Version=3.8.8577.11540, Culture=neutral, PublicKeyToken=ba83ff368b7563c6’ or one of its dependencies. The system cannot find the file specified.
File name: ‘Xceed.Grid.Reporting.XmlSerializers, Version=3.8.8577.11540, Culture=neutral, PublicKeyToken=ba83ff368b7563c6’=== Pre-bind state information ===
LOG: User = utpal\FireBird
LOG: DisplayName = Xceed.Grid.Reporting.XmlSerializers, Version=3.8.8577.11540, Culture=neutral, PublicKeyToken=ba83ff368b7563c6, processorArchitecture=MSIL
(Fully-specified)
LOG: Appbase = file:///D:/myERP Project/8.3.2/Prayas/Prayas/Prayas/bin/Release/
LOG: Initial PrivatePath = NULL
Calling assembly : System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: D:\myERP Project\8.3.2\Prayas\Prayas\Prayas\bin\Release\Prayas.vshost.exe.Config
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Post-policy reference: Xceed.Grid.Reporting.XmlSerializers, Version=3.8.8577.11540, Culture=neutral, PublicKeyToken=ba83ff368b7563c6, processorArchitecture=MSIL
LOG: Attempting download of new URL file:///D:/myERP Project/8.3.2/Prayas/Prayas/Prayas/bin/Release/Xceed.Grid.Reporting.XmlSerializers.DLL.
LOG: Attempting download of new URL file:///D:/myERP Project/8.3.2/Prayas/Prayas/Prayas/bin/Release/Xceed.Grid.Reporting.XmlSerializers/Xceed.Grid.Reporting.XmlSerializers.DLL.
LOG: Attempting download of new URL file:///D:/myERP Project/8.3.2/Prayas/Prayas/Prayas/bin/Release/Xceed.Grid.Reporting.XmlSerializers.EXE.
LOG: Attempting download of new URL file:///D:/myERP Project/8.3.2/Prayas/Prayas/Prayas/bin/Release/Xceed.Grid.Reporting.XmlSerializers/Xceed.Grid.Reporting.XmlSerializers.EXE.Imported from legacy forums. Posted by utpal (had 1662 views)
You are getting this exception because you have (probably) set your debugger to “Break on all exceptions” (Debug -> Exceptions, Common Language Runtime Exceptions is probably checked).
This exception is normally issued and managed by System.Xml.XmlSerializer but it pops up because of this setting.
It is sometimes necessary to have the Common Language Runtime Exceptions Thrown[_] checked for debugging a particular issue. In this case, it makes you see things you don’t want to see.
When the execution is stopped because of the exception mentioned above, pressing F5 should resume the execution.
Imported from legacy forums. Posted by Ghislain (had 2676 views)
-
AuthorPosts
- You must be logged in to reply to this topic.