2
Did you develop your components in a separate project (class Library)? If yes, libraries should be placed as Anycpu, only executables should be compiled as 32 or 64 bits.
If you haven’t put the components into a separate library, create a new Class Library project, embed its components into it, and set the build method to Anycpu.
To change the configuration go to Build -> Configuration Manager.
Thanks for the information and it worked, but now the form appears without two components Listwiewex. Compiles without error. You have to make the components appear again?
– pleonardomv
This is a common Visual Studio bug, when you opened the application that did not appear the components Visual Studio must have presented a message indicating that it would remove the invalid components, by clicking yes the visual studio changed its .designer.Cs file by removing the components it considered invalid, you probably saved the file and lost the information, now just redoing or restoring from the version control.
– Julio Borges
@pleonardomv, if the question has helped you, please accept the answer
– Julio Borges