framework conversion help

dsk96m

Well-known member
Joined
Jan 11, 2013
Messages
173
Programming Experience
1-3
So I made a mistake and developed an app in .net framework 4 client profile. It should be the full version. So I changed the target framework to the full version and now got all these errors.

delegate Class 'cardimageRowChangeEventHandler' and delegate Class 'cardimageRowChangeEventHandler', declared in 'FlightTestApp2DataSet.Designer.vb', conflict in class 'FlightTestApp2DataSet'.

how do i resolve those problems. I have 100+ of them
 
It is not related to the .Net Framework, 'client profile' just means a smaller subset of the 'full' framework libraries are available to your application. Changing framework to 'full' changes nothing in your project, other than allowing you to add more references.

What has really happened to your project I don't know, have you tried just recompiling it?
 
It looks like you have somehow duplicated some delegate declarations. I would start with a Find In Files for that delegate name and see if there are multiple declarations.
 
Back
Top