In VS2010 I had a project targeting .NET Framework 4.0 and then had to revert to target v. 3.5. Once this happened, the SplitContainer object that I had will not display and will actually throw an error: "Unable to cast object of type 'System.Windows.Forms.SplitContainer' to type 'System.ComponentModel.ISupportInitialize'."

Now, I did some digging and found out that 3.5 does not, in fact, have ISupportInitialize on the SplitContainer and it does in .NET 4.0. I guess my question is, if I am targeting 3.5 and still getting this issue, how do i correct this?

Steps to reproduce problem:

  1. Create a new C# Windows Forms Application project in Visual Studio 2010 (Make sure to target .NET Framework 4.0)
  2. Add a split container to the basic form.
  3. Run the application (will run just fine)
  4. Change target to .NET Framework 3.5 (properties->Applications->Target Framework:)
  5. Rerun the application (It will crash with the Cast exception).

Any help with this would be greatly appreciated!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I found the solution to this problem and it was quite special... IF you backrev your forms to 3.5, you have to do a small change on EACH AND EVERY form you have in your program so that the compiler will regenerate all of the code for that form. The reason I was having an issue was because I had made no change and was trying to run the code, which had not been regenerated.

link|improve this answer
Could you add more information about your solution? Thanks. – sw. Jun 2 '11 at 17:41
1  
You just commented the BeginInit() and EndInit() on the component initialization? Thanks – sw. Jun 2 '11 at 17:55
1  
Follow the steps from the original post, then try and run it. It will fail. Then what you can do is just add a Button to your form. Remove that newly added button and then rerun the application. Viola! the application works! This is because the application has not regenerated the form data until you modify the form by adding or removing a component. at that time Visual Studio will completely regenerate that form's code to match the Framework 3.5 requirements. Just annoyed they don't automatically do that when you backrev... would have made my job a lot easier >< – Austin Jun 2 '11 at 22:47
as @sw. wrote, it is enough to find and remove lines like ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();‌​ – tomash Jan 23 at 1:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.