Form does not open in VS2015, because own UserControl is not found The 2019 Stack Overflow Developer Survey Results Are InThe type or namespace name could not be foundVisual Studio 2015 RTM crashing when opening a Windows FormsCan a Winforms application use the Forms Designer and access the SharePoint Server Side Object ModelForms sending data to UserControlsUserControl in Windows Phone 8.x project can't be found: “The type or namespace name 'UserControls' does not exist in the namespace”How can I add a UserControl to a Panel on the main form?Form with UserControl opens in VS2013 but not in VS2015Windows Forms Toolbox System.TypeInitializationException with UserControlsError on opening form in the DesignerRemoved one usercontrol from the main form, now all other usercontrols cant be found in the Designer of the main form
Is it safe to harvest rainwater that fell on solar panels?
How to charge AirPods to keep battery healthy?
What does Linus Torvalds mean when he says that Git "never ever" tracks a file?
Is it possible for absolutely everyone to attain enlightenment?
Relationship between Gromov-Witten and Taubes' Gromov invariant
How do PCB vias affect signal quality?
Currents/voltages graph for an electrical circuit
How to support a colleague who finds meetings extremely tiring?
Keeping a retro style to sci-fi spaceships?
What is the most efficient way to store a numeric range?
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
Worn-tile Scrabble
Is it correct to say the Neural Networks are an alternative way of performing Maximum Likelihood Estimation? if not, why?
Does HR tell a hiring manager about salary negotiations?
Match Roman Numerals
Is Cinnamon a desktop environment or a window manager? (Or both?)
A word that means fill it to the required quantity
APIPA and LAN Broadcast Domain
Can a rogue use sneak attack with weapons that have the thrown property even if they are not thrown?
Cooking pasta in a water boiler
I am an eight letter word. What am I?
How come people say “Would of”?
Why couldn't they take pictures of a closer black hole?
Falsification in Math vs Science
Form does not open in VS2015, because own UserControl is not found
The 2019 Stack Overflow Developer Survey Results Are InThe type or namespace name could not be foundVisual Studio 2015 RTM crashing when opening a Windows FormsCan a Winforms application use the Forms Designer and access the SharePoint Server Side Object ModelForms sending data to UserControlsUserControl in Windows Phone 8.x project can't be found: “The type or namespace name 'UserControls' does not exist in the namespace”How can I add a UserControl to a Panel on the main form?Form with UserControl opens in VS2013 but not in VS2015Windows Forms Toolbox System.TypeInitializationException with UserControlsError on opening form in the DesignerRemoved one usercontrol from the main form, now all other usercontrols cant be found in the Designer of the main form
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Since i moved everything in my project to x64 and moved some files in subfolders everything works fine but an important form which is using an own userControl.
When i open the Form in VS2015 i get
Could not find type 'WYSIWYGEditor.Editor'. Please make
sure that the assembly that contains this type is referenced. If this
type is a part of your development project, make sure that the project
has been successfully built using settings for your current platform
or Any CPU.
Before, this usercontrol was in the same project. After i got this error i tried many things to fix this error. After having no solution i moved it to an own project which is also compiling in x64 and is referenced from the main project. Compiling shows, that both are compiled in x64 and debugging and running the project works well.
Last but not least i tried everything from here: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/38524a8c-8c4c-48e7-b62d-0d02fe0f5624/user-control-quotcould-not-find-typequot-error-in-form-designer?forum=vbgeneral
- Cleaning up project
- Recompiling
- Renaming the UserControl several Times
- Removing it from the form (form opens) and putting it back to the place
- ...
Nothing helped. Anyone had similar issues and was able to fix it?
Greetings from Germany
Image: Form does not open
c# winforms visual-studio-2015 user-controls .net-assembly
add a comment |
Since i moved everything in my project to x64 and moved some files in subfolders everything works fine but an important form which is using an own userControl.
When i open the Form in VS2015 i get
Could not find type 'WYSIWYGEditor.Editor'. Please make
sure that the assembly that contains this type is referenced. If this
type is a part of your development project, make sure that the project
has been successfully built using settings for your current platform
or Any CPU.
Before, this usercontrol was in the same project. After i got this error i tried many things to fix this error. After having no solution i moved it to an own project which is also compiling in x64 and is referenced from the main project. Compiling shows, that both are compiled in x64 and debugging and running the project works well.
Last but not least i tried everything from here: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/38524a8c-8c4c-48e7-b62d-0d02fe0f5624/user-control-quotcould-not-find-typequot-error-in-form-designer?forum=vbgeneral
- Cleaning up project
- Recompiling
- Renaming the UserControl several Times
- Removing it from the form (form opens) and putting it back to the place
- ...
Nothing helped. Anyone had similar issues and was able to fix it?
Greetings from Germany
Image: Form does not open
c# winforms visual-studio-2015 user-controls .net-assembly
This could happen because of the other references this class is using also needs to be build on same configuration (in your case x64)
– Abhinaw Kaushik
Mar 8 at 13:23
add a comment |
Since i moved everything in my project to x64 and moved some files in subfolders everything works fine but an important form which is using an own userControl.
When i open the Form in VS2015 i get
Could not find type 'WYSIWYGEditor.Editor'. Please make
sure that the assembly that contains this type is referenced. If this
type is a part of your development project, make sure that the project
has been successfully built using settings for your current platform
or Any CPU.
Before, this usercontrol was in the same project. After i got this error i tried many things to fix this error. After having no solution i moved it to an own project which is also compiling in x64 and is referenced from the main project. Compiling shows, that both are compiled in x64 and debugging and running the project works well.
Last but not least i tried everything from here: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/38524a8c-8c4c-48e7-b62d-0d02fe0f5624/user-control-quotcould-not-find-typequot-error-in-form-designer?forum=vbgeneral
- Cleaning up project
- Recompiling
- Renaming the UserControl several Times
- Removing it from the form (form opens) and putting it back to the place
- ...
Nothing helped. Anyone had similar issues and was able to fix it?
Greetings from Germany
Image: Form does not open
c# winforms visual-studio-2015 user-controls .net-assembly
Since i moved everything in my project to x64 and moved some files in subfolders everything works fine but an important form which is using an own userControl.
When i open the Form in VS2015 i get
Could not find type 'WYSIWYGEditor.Editor'. Please make
sure that the assembly that contains this type is referenced. If this
type is a part of your development project, make sure that the project
has been successfully built using settings for your current platform
or Any CPU.
Before, this usercontrol was in the same project. After i got this error i tried many things to fix this error. After having no solution i moved it to an own project which is also compiling in x64 and is referenced from the main project. Compiling shows, that both are compiled in x64 and debugging and running the project works well.
Last but not least i tried everything from here: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/38524a8c-8c4c-48e7-b62d-0d02fe0f5624/user-control-quotcould-not-find-typequot-error-in-form-designer?forum=vbgeneral
- Cleaning up project
- Recompiling
- Renaming the UserControl several Times
- Removing it from the form (form opens) and putting it back to the place
- ...
Nothing helped. Anyone had similar issues and was able to fix it?
Greetings from Germany
Image: Form does not open
c# winforms visual-studio-2015 user-controls .net-assembly
c# winforms visual-studio-2015 user-controls .net-assembly
edited Mar 8 at 11:21
Peter Cordes
135k19204345
135k19204345
asked Mar 8 at 10:56
rograsrogras
11
11
This could happen because of the other references this class is using also needs to be build on same configuration (in your case x64)
– Abhinaw Kaushik
Mar 8 at 13:23
add a comment |
This could happen because of the other references this class is using also needs to be build on same configuration (in your case x64)
– Abhinaw Kaushik
Mar 8 at 13:23
This could happen because of the other references this class is using also needs to be build on same configuration (in your case x64)
– Abhinaw Kaushik
Mar 8 at 13:23
This could happen because of the other references this class is using also needs to be build on same configuration (in your case x64)
– Abhinaw Kaushik
Mar 8 at 13:23
add a comment |
1 Answer
1
active
oldest
votes
I do not know what the point is and hope anyone can explain it.
In a german topic i found the tip to compile the userControl in x86. So i changed my Configuration for debug to compile the Usercontrol-Project in x86. After doing a rebuild for the dll-Project it worked!
Configuration
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55061742%2fform-does-not-open-in-vs2015-because-own-usercontrol-is-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I do not know what the point is and hope anyone can explain it.
In a german topic i found the tip to compile the userControl in x86. So i changed my Configuration for debug to compile the Usercontrol-Project in x86. After doing a rebuild for the dll-Project it worked!
Configuration
add a comment |
I do not know what the point is and hope anyone can explain it.
In a german topic i found the tip to compile the userControl in x86. So i changed my Configuration for debug to compile the Usercontrol-Project in x86. After doing a rebuild for the dll-Project it worked!
Configuration
add a comment |
I do not know what the point is and hope anyone can explain it.
In a german topic i found the tip to compile the userControl in x86. So i changed my Configuration for debug to compile the Usercontrol-Project in x86. After doing a rebuild for the dll-Project it worked!
Configuration
I do not know what the point is and hope anyone can explain it.
In a german topic i found the tip to compile the userControl in x86. So i changed my Configuration for debug to compile the Usercontrol-Project in x86. After doing a rebuild for the dll-Project it worked!
Configuration
answered Mar 8 at 11:44
rograsrogras
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55061742%2fform-does-not-open-in-vs2015-because-own-usercontrol-is-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This could happen because of the other references this class is using also needs to be build on same configuration (in your case x64)
– Abhinaw Kaushik
Mar 8 at 13:23