VisualBasicLanguage (acronym: "VB") is a programming language that is both easy to learn and suitable for RapidApplicationDevelopment. It is designed and implemented by Microsoft and is based on the older BasicLanguage.

Although VB may be a fun language to program in sometimes, most dislike it because usually lacks the challenges found in other languages and because it can encourage bad programming habits. If you are looking for a fast way to write Windows GUI applications, but do not like BasicLanguage, you may want to look into DelphiLanguage (based on PascalLanguage)

Everything on that page only applies to older versions of VB: VB6, VB5, VB4, ... The newest implementation of a language called "Visual Basic" is Visual Basic .NET. It shares the same syntax as VB but fixes a number of the shortcommings of older versions.

There are several interesting aspects of VB, not necessarly all good; that being said:

Private Sub Command1_Click()
  MsgBox "Hello, world"
End Sub

Dim blnFalse as Boolean: blnFalse = False

If blnFalse And ["MsgBox"]("Testing","Should you see this message box?", vbYesNo) = vbYes Then
'HUH?  NO, YOU SHOULD NOT SEE THAT MESSAGE BOX *IF* PROPER SHORTCIRCUTING WERE TO HAPPEN
End If

Visual Basic has two derivatives, VBScript and VBA. VBScript is essentially the VB programming language without the GraphicalUserInterface programming facilities and ide, while VBA (or Visual Basic for Applications) is a version of VB integrated with Office. VBScript is the dominant language used to write Active Server Pages code.


CategoryLanguage

VisualBasicLanguage (last edited 2008-07-09 05:48:15 by localhost)