Visual Basic .NET/The Visual Studio Integrated Development Environment

From Wikibooks, open books for an open world
Jump to navigation Jump to search

An integrated development environment (IDE), also known as integrated design environment and integrated debugging environment, is a type of computer software that assists computer programmers to develop software. In the case of Visual Basic .NET, that IDE is Visual Studio.

IDE Contents[edit | edit source]

The Visual Studio IDE consists of several sections, or tools, that the developer uses while programming. As you view the IDE for a new project you generally have three sections in view:

  • The Toolbox on the left
  • The Solution Explorer on the right
  • The Code / Design view in the middle

Toolbox[edit | edit source]

The Toolbox is a palette of developer objects, or controls, that are placed on forms or web pages, and then code is added to allow the user to interact with them. An example would be TextBox, Button and ListBox controls. With these three controls added to a Windows Form object the developer could write code that would take text. We can easy to access those things while using IDE.

Solution Explorer[edit | edit source]

This is a section that is used to view and modify the contents of the project. A Visual Studio Windows Application Project will generally have a Form object with a code page, references to System components and possibly other modules with special code that is used by the application.

Properties Windows[edit | edit source]

The properties window shows all the control (like Textbox) properties to be changed at design time. Most of these properties can be also changed with code at run time, but basically most properties change the way the control is displayed on your application.

Object Browser[edit | edit source]

By pressing F2 or selecting it into the View menu, it's possible to explore all the available objects of the libraries (types, functions...).

Review[edit | edit source]

The Visual Studio IDE is a complex and exciting work space for developers, providing many enhancements and upgrades from the days of Visual Basic 4.0 or the introduction of C++. This section only serves as a mere introduction to this multi-functional interface.