toolbox

Missing some components in SSIS toolbox in Visual Studio 2017

旧城冷巷雨未停 提交于 2021-02-09 11:12:36
问题 I am using Visual Studio Community 2017 for developing SSIS packages and I use SQL Server 2016. Some of components are not in SSIS Toolbox. This is that I have now: and this is my colleges have(They don't have the same version of Visual Studio that I have): For example: I need to add a XML Source component to one of my Data Flow but there is not anymore in Other Sources sector in SSIS Toolbox. I tried to add the missing components (Tools -> Choose Toolbox Items ->) but I don't have the tab

Missing some components in SSIS toolbox in Visual Studio 2017

怎甘沉沦 提交于 2021-02-09 11:11:58
问题 I am using Visual Studio Community 2017 for developing SSIS packages and I use SQL Server 2016. Some of components are not in SSIS Toolbox. This is that I have now: and this is my colleges have(They don't have the same version of Visual Studio that I have): For example: I need to add a XML Source component to one of my Data Flow but there is not anymore in Other Sources sector in SSIS Toolbox. I tried to add the missing components (Tools -> Choose Toolbox Items ->) but I don't have the tab

Increase Disk Space on Docker Toolbox

房东的猫 提交于 2020-07-31 07:57:48
问题 I'm trying to start some very large Containers on Docker Toolbox (about 18 GB in total). Unfortunately, I always get the error that there is not enough disk space. I have a 1TB HDD and there are more than 200 GB free. How can I increase the disk space for docker toolbox? 回答1: OK, I finally found the solution: Open Docker Quickstart Terminal, remove the virtual docker-machine and add a new one: $ docker-machine rm default $ docker-machine create -d virtualbox --virtualbox-disk-size "100000"

Increase Disk Space on Docker Toolbox

老子叫甜甜 提交于 2020-07-31 07:57:11
问题 I'm trying to start some very large Containers on Docker Toolbox (about 18 GB in total). Unfortunately, I always get the error that there is not enough disk space. I have a 1TB HDD and there are more than 200 GB free. How can I increase the disk space for docker toolbox? 回答1: OK, I finally found the solution: Open Docker Quickstart Terminal, remove the virtual docker-machine and add a new one: $ docker-machine rm default $ docker-machine create -d virtualbox --virtualbox-disk-size "100000"

Change height and icon position of QToolBox tabs, using proxys

风流意气都作罢 提交于 2020-01-05 08:07:25
问题 Ok, so I want to customize the height and the position of icons of the tabs from a QToolBox widget. I am not able to do it using stylesheet (I tried different options, but none worked, see question: Customizing QToolBox: tab height), so I decided to give it a try to using a proxy. I know there are the controlElements: CE_ToolBar CE_ToolBoxTabShape CE_ToolBoxTabLabel And so I can use them on the drawControl function to get what I want. void drawControl(ControlElement oCtrElement, const

WPF Toolbox Empty

余生颓废 提交于 2020-01-04 14:22:19
问题 I am adding on to an existing WPF Project, and am running into an odd error. My Toolbox is empty. I am developing in a Windows 7 environment using Visual Studios 2008 run as Administrator. I have created a project from scratch, and the tools were there. However, when I load the existing project, there are no tools in the Toolbox. I do have an element in the UI selected. I fixed this once by going into Tools -> Choose Toolbox Items... -> WPF Components. I then added the tools that I needed.

WPF Toolbox Empty

与世无争的帅哥 提交于 2020-01-04 14:21:25
问题 I am adding on to an existing WPF Project, and am running into an odd error. My Toolbox is empty. I am developing in a Windows 7 environment using Visual Studios 2008 run as Administrator. I have created a project from scratch, and the tools were there. However, when I load the existing project, there are no tools in the Toolbox. I do have an element in the UI selected. I fixed this once by going into Tools -> Choose Toolbox Items... -> WPF Components. I then added the tools that I needed.

Custom Control & Toolbox Tab

放肆的年华 提交于 2020-01-04 03:12:19
问题 I am creating a user interface and I am trying to figure out the best way to organize all of my custom controls. I already know that I can do the following: 1) If I want to have a property visible for design-time manipulation via the Properties window, I use the following... [Browsable(true)] [Description("Text for Display"), Category("Custom Properties")] public string DisplayText { get { return textDisplay.DisplayText; } set { textDisplay.DisplayText = value; } } 2) If I want to hide the

Telerik + Visual Studio 2010 Toolbox = Maddening Problems

自作多情 提交于 2019-12-30 18:38:05
问题 Has anyone ever found a solution to either of these problems: When entering any design mode in Visual Studio 2010 (WPF, EDMX, Silverlight, Reporting, etc) I see a message in the status bar like Loading toolbox content from package Microsoft.VisualStudio.IDE.Toolbox.ControlInstaller.ToolboxInstallerPackage '{2C98B35-07DA-45F1-96A3-BE55D91C8D7A}'... This locks VS for about a minute everytime. Telerik toolboxes have many duplicate controls. Toolbox doesn't show any items when expanded. I think

Install Custom Control in VS Toolbox

天涯浪子 提交于 2019-12-23 15:37:57
问题 Our company provides 3rd party components installed the Inno Setup. We use VS Package to put our component into Visual Studio Toolbox automatically. But it sometimes fail. The VS Package also need something called " Package Load Key " - even though we test it, the Visual Studio refuses to integrate our component on some machines. Are there any alternatives that work with at least both VS 2008 and VS 2010 ? I spent whole day researching for these, but no solution seems complete: use EnvDTE