Reputation: 5778
Anybody is familiar with DevExpress in Microsoft Visual C#?
My boss gave me the code to study and this code has the version of DevExpress 8.3. And I would like to open this code in my laptop which has already a version of DevExpress 9.1 Would that be a problem finding the files? Thanks a lot!
Regards tintincute
Upvotes: 4
Views: 2225
Reputation: 144
Yes, you can use the project converter from devexpress 9.1 and convert the old version to this new one. Probably you will have some issues of some method depreciated but not that much.
Upvotes: 0
Reputation: 1933
DevExpress has a convertion tool located under start -> all programs -> developper .NET vx.x -> tools -> ProjectConvertor
That should do the trick
Upvotes: 8
Reputation: 52188
If you want to just look at the code, it should be fine.
For compiling, you have to convert the project to use DevExpress 9.1. You can either use the DevExpress tool to upgrade or manually remove and add the references to use 9.1.
Upvotes: 4