Browse by Tags
All Tags » General » IDE (RSS)
Sorry, but there are no more tags available to filter with.
-
|
There are a couple of ways to specify where VS.Net looks for the assemblies that you reference in your project when building from the command line. One way is to specify the "HintPath" for the reference: <Reference Name = "MyAssembly...
|
-
|
Use the following syntax: devenv.exe {Solution Name} /command {Macro name} Example: devenv.exe "myproject.sln" /command "Macros.Syncfusion.Utils.FormatProjectAndClose" Visual Studio will start up, load the solution, run the macro and...
|
-
|
Type devenv.exe /? to get a full list of options. Contributed from George Shepherd's Windows Forms FAQ
|
-
|
Simply type devenv.exe from the command line. If you get a message like this, then you do not have devenv.exe in your path. >>> 'devenv.exe' is not recognized as an internal or external command, operable program or batch file. >>>...
|
-
|
Mastering Visual Studio .NET Ian Griffiths, Jon Flanders & Chris Sells, 2003, O'Reilly. ISBN: 0-596-00360-9. Every page of this book is packed with useful information on getting the most out of Visual Studio .NET 2003. Written by experienced developers...
|
-
|
If I create an assembly, how can I see the assembly/components from with the VS.Net "Add..." dialogs? There are two ways in which this can be done. The first way is to use the provided Public assembly folder that is installed with VS.Net. This...
|
-
|
Yes, in Code View you can select and drag code to a Tab (General Tab) in the ToolBox and then you can drag the code from the Tab to the desired location. Contributed from George Shepherd's Windows Forms FAQ
|
-
|
I have code snippets that I use often. How can I manage them so I can easily used them? In Visual Studio, you can store commonly used code snippets on a tab (other than the Clipboard ring) in your Toolbox. You use drag and drop techniques to move the...
|
-
|
In the project's General Properities, specify Class2 as the "Startup Object". The dropdown contains all classes with a Main method specified. Contributed from George Shepherd's Windows Forms FAQ
|
-
|
Click "Project | Properties" from the menus. Select "Configuration Properties" folder and the "Build" item under that. Switch "Allow unsafe code blocks" from "False" to "True". Ryan LaNeve
|
-
|
In the ClassView window, expand the base class under your derived class. Then right-click the desired method, and select Add. Contributed from George Shepherd's Windows Forms FAQ
|
-
|
VB.NET can perform decent auto-formatting for code. Here is a macro that can call this Auto Formatting command for all the files in a project. Contributed from George Shepherd's Windows Forms FAQ
|
-
|
How do I get the default namespace of a C# project in Visual Studio? To get the default namespace of a C# project developed using VS.NET, you need to right-click on the project in the Solution Explorer and then choose Properties | Common Properties |...
|
-
|
To display tab orders on the active design mode Form, select the View | Tab Order menu item. Then click the numbers on each control to reset their tab order. Contributed from George Shepherd's Windows Forms FAQ
|
-
|
You cannot move it via drag-and-drop. But you change its position or dock order by selecting the "Bring To Front" or "Send To Back" verbs in its context menu. "Bring To Front" will move it to the top of the children list...
|