I have developed a window based project that is my first project and I am using crystal reports to print but after installation on the client side, when i run the report then it is showing an exception that is
System.IO.FileNotFoundException: Could not load file or assembly 'System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
File name: 'System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
at BARTAN_STORE.DataSets.BalanceSheet.InitClass()
Can you tell me how to solve this exception.
This is Happening because on your client system those dll are not registered
You need to copy that assembly (.dll) to your project folder and make sure that you should add the reference from the new location in that project.
I was having the same issue.