Customizing Project Designer for Visual Studio 2010 - c#

I've created a new project template for Visual Studio 2010, and for this particular project template i want to customize the Project Designer(i.e. the window which opens when you right click your Project and Click on the Properties Option).
How can I customize the Project Designer programmatically?

i didn't get your question correctly But,
try this it will help you,
http://www.codeproject.com/Articles/173496/How-to-Create-a-Visual-Studio-Add-in-that-Launches

Related

can't see anything under Visual C# template inside visual studio 2010

I installed C# and business intelligence inside visual studio 2010 and now I'm able to access/create BI projects but can't findout anything under Visual C# template "no item found"
In visual studio project creation form -> choose Visual C# and choose Installed Templates.
You see no item found cause most probably you have selected Online Templates.

Why in visual studio 2013 express, I don't have a project template Windows Control Library?

If it's not exist in the express version, is there any other way to make Windows Control Library ?
This is what I see when trying to make a new project:
If you mean as in a COM .ocx file, that's not how .net works. You might even have to get Visual Studio 6 installed to do that, although I suppose check out the other project types. It's also possible there are other project types that are not installed by default, so try re-running the VS installer and see what else is available.
For a .net controls library you should create a class library and add your forms to it. VS will add the necessary references for you, and you can then reference that assembly from any other managed code.
In Visual C# Express Edition, according to this :
Windows Control Library: Missing Windows Control Library Template
Windows Control Library Template should be same as : Class Library project template
But with added reference to System.Windows.Forms.dll.
I found another trick to create this missing template for visual studio 2013 Express, With the help from this link:
http://www.dotnetspider.com/resources/21844-How-add-windows-control-library-template.aspx
So the steps for C# express 2013 are nearly the same than in the example witch is about c# 2005
Open Visual C# Express 2013.
Create New windows Application with the name: MyLibrary
From the Project menu select Add User Control. Click on Add
Close any forms windows.
(a view with the Form already closed)
In Solution Explorer, Delete forms related files
(the corresponding .cs files should be deleted by this step)
From the Project menu select MyLibrary Properties.
In the Application tab set the Output Type to Class Library.
In the file Program.cs replace
Application.Run(Form1)
with
Application.Run()
Build the Solution. There should be no errors and the bin/Release folder should have a MyLibrary.dll file (i found it in Debug in my case)
From the File menu select Export Template.
Select Project Template then Next .
Under Template Options change the name of the template to Windows Control Library and the Description to Create windows Control .dll. Click on Finish.
Close C# Express 2013.
The next time you open Visual C# Express, you will find your newly created template ready to use.

Creating a plugin in Visual Studio 2015

I want to create a toolbar plugin for Visual Studio 2015 in C#.
The thing is I don't actually know which project type to use there to create my own toolbar plugin.
I'm sorry if this question is kind of stupid but i'm new again to Visual Studio 2015.
Thanks for your help
If by "toolbar plugin" you mean a Visual Studio plugin with a button on a toolbar, you need to create a Visual Studio Package:
New Project -> Installed -> Other Project Types -> Extensibility
Then select Visual Studio Package in the right panel.
You need to have SDK installed for that.
I want to create a toolbar plugin
With toolbar plugin do you mean creating a Custom Control? If yes, then you should probably select a Class Library project.
or User control in Winform and place it in toolbar? Then you should choose a Winform project.

Create Custom Installer through Visual studion 2012 in c#

Hi,
I have to create one installer as shown in picture. I have tried with visual studio installer template and I have seen that there is one installer class also. But It's not giving same design as shown in my picture.
When user will click on install button on that time it should install project and other button it will document.
Hope I'm clear with my requriement.

Use VisualStudio 2010 for editing InfoPath C# code

The default editor for InfoPath 2007 C# code is VSTA. It has very low functionality and I want to use my VS 2010. Is this possible? If yes, how?
I tried to create a project out of an existing one, but i couldnt import the correct assemblies.
"Visual Studio 2010 does not include the InfoPath form template projects that were provided in previous versions of Visual Studio. You also cannot use Visual Studio 2010 to open or edit an InfoPath form template project that was created in a previous version of Visual Studio."
http://social.msdn.microsoft.com/Forums/en/officedevelopmentprerelease/thread/18a93486-0773-44cb-ae04-cc4b8f75c205
How to do development with Infopath and Visual Studio 2010 Video :
http://channel9.msdn.com/Learn/Courses/Office2010/InfoPathUnit/InfoPathVisualStudio

Categories