Visual Basic (classic)


Visual Basic, sometimes referred to as Classic Visual Basic, is a third-generation programming language based on BASIC, as well as an associated integrated development environment. Visual Basic was developed by Microsoft for Windows, and is known for supporting rapid application development of graphical user interface applications, event-driven programming, and both consumption and development of
components via the Component Object Model technology.
VB was first released in 1991. The final release was version 6 in 1998. On April 8, 2008, Microsoft stopped supporting the VB6 IDE, relegating it to legacy status. The Microsoft VB team still maintains compatibility for VB6 applications through its "It Just Works" program on supported Windows operating systems.
Visual Basic.NET is based on Classic Visual Basic. Because VB.NET was later rebranded back to Visual Basic, the name is ambiguous: it can refer to either Classic Visual Basic or to the.NET version.
Just as BASIC was originally intended to be easy to learn, Microsoft intended the same for VB.
Development of a VB application is exclusively supported via the VB integrated development environment, an application in the contemporary Visual Studio suite of tools. Unlike modern versions of Visual Studio, which support many languages including VB, the VB IDE only supports VB.
In 2014, some software developers still preferred Visual Basic 6.0 over its successor, Visual Basic.NET. Visual Basic 6.0 was selected as the most dreaded programming language by respondents of Stack Overflow's annual developer survey in 2016, 2017, and 2018.

Overview

As was the intention of older BASIC variants, VB was intended to have a low learning curve. Further, the IDE was intended to promote productivity; even for complex GUI applications. Programming involves visually arranging components or controls on a form, specifying attributes and actions for those components, and writing code that directs behavior. Since components have default attributes and actions, a programmer can develop a simple program without writing much code.
Programs built with earlier versions suffered performance problems, but faster computers and native code compilation made this less of an issue.
Since a VB program is compiled as a native code executable instead of interpreted as old BASIC variants, it runs relatively fast and requires relatively little storage space. But, [|from version 5 on], it requires relatively large library files to be loaded at runtime; about 1 MB. Core runtime libraries are included by default in Windows 2000 and later, but extended runtime components require extra installation consideration. Earlier versions of Microsoft Windows, require the runtime libraries to be distributed with the executable.
Forms are created using drag-and-drop techniques. A tool is used to place controls on the form. Controls have attributes and event handlers associated with them. Default values are provided when the control is created, but may be changed by the programmer. Many attribute values can be modified during run time based on user actions or changes in the environment, providing a dynamic application. For example, code can be inserted into the form resize event handler to reposition a control so that it remains centered on the form, expands to fill up the form, etc. By inserting code into the event handler for a keypress in a text box, the program can automatically translate the case of the text being entered, or even prevent certain characters from being inserted.
Development in the IDE is organized as a project which can be configured to output as a program, a dynamic-link library or an ActiveX control library which is a specialized DLL.
Controls provide the graphical functionality of a GUI application, and programmers attach code to event handlers to perform actions. For example, a drop-down control displays a list of items. When the user selects an item, an event handler is automatically called that executes the code that the programmer attached to the handler.
For a DLL, the VB code generally provides no user interface, and instead provides COM objects to other programs. This allows for capabilities such as server-side processing or an add-in module.
Via the COM technology, unused memory is recovered for reuse using reference counting; recovering when the count reaches zero. VB reduces the count when a variable goes out of scope or when assigned to Nothing. This design prevents memory leaks that plague some, older languages such as C & C++. It differs from the more modern types of garbage collection.
VB provides a large library of utility objects, and it provides basic support for object-oriented programming.
Unlike many other programming languages, VB code is not case-sensitive though the IDE transforms keywords into a standard case and variable names to match the case used elsewhere in the project. Of note, string comparison is case sensitive by default.
The VB compiler is shared with other Visual Studio suite languages, C and C++. Nevertheless, by default the restrictions in the IDE do not allow creation of some targets and threading models, but over the years, developers have bypassed these restrictions.

Features

Visual Basic has notable features and characteristics that are in some cases different than other BASIC variants or from other common languages:
  • Enables rapid application development of graphical user interface applications, access to databases using Jet Data Access Objects, Remote Data Objects, or ActiveX Data Object, and creation of ActiveX controls and COM objects.
  • Supports event-driven programming
  • Allows use of the Windows API via an external function declaration technology
  • Supports sharing and reuse via the COM component technology. A programmer can create an application using components provided by VB, developed internally or from third parties. Over time the development community produced and shared many components.
  • Unlike older BASIC variants, instead of requiring line numbers to support branching, code is grouped into named blocks delimited by Sub...End Sub or Function...End Function. VB retains line number support
  • Code statements have no terminating character other than a line ending, and versions since 3 allow for multi-line statements for concatenation of strings or explicitly using the underscore character at the end of a line
  • A code comment is denoted by a single apostrophe character, like:
  • Looping statement blocks begin and end with keywords: Do...Loop, While...End While, For...Next
  • Chained variable assignment is not allowed; for example A = B = C does not result in the values of A, B and C being equal. The Boolean result of "is B equal to C?" is stored in A
  • Like other BASIC variants, but unlike many other languages that use 1, Boolean True has numeric value −1. VB stores a Boolean as a two's complement signed integer with all ones in binary for true and zero for false. This is apparent when performing a Not operation on the two's complement value 0, which returns the two's complement value −1, in other words True = Not False. This inherent functionality becomes especially useful when performing logical operations on the individual bits of an integer such as And, Or, Xor and Not. This definition of True is also consistent with BASIC since the early 1970s Microsoft BASIC implementation and is also related to the characteristics of CPU instructions at the time.
  • Logical and bitwise operators are unified. This is unlike some C-derived languages, which have separate logical and bitwise operators. This is a traditional feature of BASIC.
  • Unlike for many languages which use zero for the lower bound of an array, VB allows the lower bound to be any value like in Pascal and Fortran. The Option Base statement can be used to set the default lower bound, but some claim that its use leads to confusion when reading code and is best avoided by always explicitly specifying the lower bound. This uncommon language trait does exist in Visual Basic.NET but not in VBScript.
  • : OPTION BASE was introduced by ANSI, with the standard for ANSI Minimal BASIC in the late 1970s.
  • Tightly bound to the Windows operating system and the Component Object Model. The native types for strings and arrays are the dedicated COM types, BSTR and SAFEARRAY.
  • Banker's rounding as the default behavior when converting real numbers to integers with the Round function. ? Round gives 2, ? Round gives 4.
  • An integer type value is automatically promoted to a floating point type in expressions that involve the normal division operator so that division of one integer by another produces a result that may seem more intuitive from a mathematical perspective. VB provides an integer divide operator that does truncate.
  • By default, if a variable has not been declared or if no type declaration character is specified, it acts like a variant. However this can be changed with Deftype statements such as DefInt, DefBool, DefVar, DefObj, DefStr. There are 12 Deftype statements in total offered by Visual Basic 6.0. The default type may be overridden for a specific declaration by using a special suffix character on the variable name or using the key phrase As . VB can be set up to require variable declarations via Option Explicit.

    History

BYTE reported in 1989 that, based on its experience with Macintosh software development, Microsoft "wants to provide a development environment that mimics the delivery environment". BASIC's string handling was preferable to C, the company's Greg Lobdell said, when developing the mostly transaction-processing applications Microsoft expected object-oriented programming tools to create.
Visual Basic 1.0 was introduced in 1991. The drag and drop design for creating the user interface is derived from a prototype form generator developed by Alan Cooper and his company called Tripod. Microsoft contracted with Cooper and his associates to develop Tripod into a programmable form system for Windows 3.0, under the code name Ruby. Tripod did not include a programming language at all.
Microsoft decided to combine Ruby with the Basic language to create Visual Basic. The Ruby interface generator provided the "visual" part of Visual Basic, and this was combined with the "EB" Embedded BASIC engine designed for Microsoft's abandoned "Omega" database system. Ruby also provided the ability to load dynamic link libraries containing additional controls, which later became the VBX interface.