Showing posts with label Microsoft Visual studio. Show all posts
Showing posts with label Microsoft Visual studio. Show all posts

Sunday, June 12, 2011

MS Visual studio.net: Output

Output window, located on bottom left corner of MS visual studio.net. It display the result of your project compilation. When you compile your project, all errors, warnings and compilation results will be displayed in this window.

MS Visual studio.Net:Solution Explorer

Solution Explorer is usually located on "top right corner" of MS visual studio.net. All the projects included in each solution and the list of files in each project are listed in the form of tree control.
When you create a MS Visual studio project, a solution will be automatically created. To add a new file to your project, you can right click on the project name in the solution explorer and choose the menu option "Add". It will give the option to choose a file type.



Saturday, June 4, 2011

MS visual Studio.net: Design Mode Split mode and Source Mode

If you are developing a web application, you can switch between design mode split mode and source mode.When you are in source Mode, it will show HTML Tags and Asp.net code and you can manually edit it. You can switch to design mode by clicking the design button. In design mode you can see how your Asp.net page is going to look like when some one view your web page.Any change to source mode will be reflected in design mode and any change to design mode will be reflected to source Mode. Split mode will show both source mode and design mode together.
                  For windows form and web forms, you can see the file in design mode and source code associated with it. Double click on any form name in solution explorer will open it in design mode. Right click on any form and select the menu option "view code" to view the code associated with the form. 

Sunday, May 29, 2011

Microsoft Visual Studio

MS Visual Studio is an editor, Provided by microsoft to developers to write .net program easily. Visual Studio.net automatically generates lot of code, allows developers to drag and drop controls to a form, provides short cuts to compile and build the application.


       Features of Visual Studio.Net :
  1. Visual Studio.net automates the step required to compile the source code.
  2. Visual Studio editor can detect errors and suggests code as appropriate as you required.
  3. The visual studio designer for windows form and web form application allowing simple drag and drop design of user interface elements.
  4. The visual studio contains many powerful tools for visualizing & navigating through the elements our projects, whether they are c# code files or other resource such as bitmap images or sound files.
  5.  The visual studio enables advance debugging techniques when developing projects, such as ability to step through code one instruction at a time while keeping an eye on the state of our applications. 

Wednesday, May 25, 2011

Shortcut to open Microsoft Visual studio

Shortcut to open Microsoft Visual studio
->start
->run
->type "devenv"
-> press ok
Now, Microsoft Visual studio will be open.