toolbox

Visual studio 2005 toolbox icons messed up

岁酱吖の 提交于 2019-12-23 04:52:24
问题 My studio toolbox icons are all messed up. Is there a way to fix them? 回答1: If you do not have custom controls just reset the toolbox. Right-click on toolbox then click reset. Here are a couple posts with some more discussion about the problem: http://xman892.blogspot.com/2007/05/visual-studio-toolbox-icons-mess.html and http://social.msdn.microsoft.com/Forums/en-US/vbide/thread/99afde0e-80e9-4f11-996c-6433608398ca 回答2: You could Export all you existing settings/customizations (minus the

My ToolBox Show Multiple Copies Of The Same Control (VS2008)

懵懂的女人 提交于 2019-12-22 12:17:09
问题 My Visual Studio is all messed up and I have no idea why. See the screenshot below. The controls are repeated 3 times. I tried reseting the toolbox; still no luck. The solution contains one ASP.NET Web Application and few class library. None of the projects have referenece to System.Windows.Form, still components from System.Windows.Forms are selected in the Choose Items dialog box. Is it only me or anybody else has ever faced such a weird problem? messed up vs toolbox http://img525

How to see components in toolbox after adding a new reference?

会有一股神秘感。 提交于 2019-12-22 09:55:06
问题 In my project I add reference on the WPFToolkit assembly, restart Visual Studio and has not seen WPFToolkit components in my VS ToolBox window. What I do wrong? 回答1: Toolbox doesn't automatically pick up components/controls in referenced assemblies. It does however automatically pick up components/controls that are built in your projects. You can right click the toolbox and choose "Customize" and you will get a dialog that lets you browse to the assembly and check off any controls that you

Missing Visual Studio 2010 toolbox items in ASP.NET Website or Web Application?

守給你的承諾、 提交于 2019-12-21 19:46:36
问题 After installing Visual Studio Professional 2010, and creating a new website or web application, toolbox items are missing! I've tried also running Visual Studio in safe mode "devenv.exe /SafeMode", I got the same issue. I also tried reset toolbox items, and nothing happened. FYI: I've installed set of visual studio extensions. Any way to resolve that issue. 回答1: See this from Edwer Fang from the MSDN: Hello, Do you mean you are not able to see toolbox or items in toolbox? What is the version

Visual Studio do not add my component (from a DLL) to the toolbox even if I reference it

大城市里の小女人 提交于 2019-12-18 05:43:17
问题 As stated in the title, I copied my DLL in Visual Studio project, set it to "content" and "copy always". Added a reference to this DLL and set it to "copy locally". I successfully managed to instance my component to a form through code but it doesn't appear in the toolbox, really boring. How can I solve this issue? If I link directly the DLL project to this project it works, but now I'm treating the DLL as "external" so it's not part of the same solution of the DLL project. 回答1: I had this

visual studio 2010 toolbox standard controls missing

廉价感情. 提交于 2019-12-18 05:04:34
问题 I have created an asp.net project in visual studio 2010 ultimate edition. I can't see Standard, Data etc toolbox tabs, I can only see Telerik and HTML controls. I tried to reset the toolbox, tried to delete C:\Users\mypcuser\AppData\Local\Microsoft\VisualStudio\10.0\*.tbd . I also tried devenv /ResetSkipPkgs but nothing worked for me. Please suggest a Solution thanks! 回答1: This may help you. In the Toolbox, select the tab where you want to add the control. Right-click the Toolbox and select

How to put a UserControl into Visual Studio toolBox

佐手、 提交于 2019-12-17 07:13:06
问题 I made a usercontrol in my project, and after building project, I need to put it in my toolbox, and use it as a common control. but i can't. the UserControl is in my project namespace, and I tried Choose Item in right click menu, but I didn't find a way to add it. 回答1: I'm assuming you're using VS2010 (that's what you've tagged the question as) I had problems getting them to add automatically to the toolbox as in VS2008/2005. There's actually an option to stop the toolbox auto populating! Go

Generating a class from string and instantiating it in Scala 2.10

核能气质少年 提交于 2019-12-17 03:52:06
问题 In Scala 2.10 how do I generate a class from string (probably, using the Toolbox api) later to be instantiated with Scala's reflection? 回答1: W.r.t compilation toolboxes can only run expressions = return values, but not resulting classes or files/byte arrays with compilation results. However it's still possible to achieve what you want, since in Scala it's so easy to go from type level to value level using implicit values: Edit . In 2.10.0-RC1 some methods of ToolBox have been renamed.

There are no components in DLL that can be placed on toolbox

社会主义新天地 提交于 2019-12-13 11:39:36
问题 I have a DatePicker custom control that I am trying to add to toolbox. The name of the file is BasicFrame.WebControls.BasicDatePicker.dll and I go through the procedure of right click in Toolbox > Choose Items and then selecting the file after browsing to it under .NET Framework components. I however get this error message: There are no components in that can be placed on toolbox Why do I get this message and how can I resolve it? 回答1: Have you checked the visibility of the custom classes? If

How do I refresh the toolbox in Visual Studio 2008

六月ゝ 毕业季﹏ 提交于 2019-12-11 13:38:54
问题 Working on windows forms in Visual Studio 2008 with C# So I had a windows Form Control that wasn't behaving the way I wanted. So I overloaded the Size property. Bad idea. Everything broke. Horribly. I could not add this control to a form anymore. This was slightly problematic. So I removed the offending code, and recompiled. Problem solved... right? Not so much. I can't add this form to my code STILL. And it was working before. I scour the code for any changes I could have made, recompile