fbpx
Wikipedia

Visual Basic (.NET)

Visual Basic (VB), originally called Visual Basic .NET (VB.NET), is a multi-paradigm, object-oriented programming language, implemented on .NET, Mono, and the .NET Framework. Microsoft launched VB.NET in 2002 as the successor to its original Visual Basic language, the last version of which was Visual Basic 6.0. Although the ".NET" portion of the name was dropped in 2005, this article uses "Visual Basic [.NET]" to refer to all Visual Basic languages released since 2002, in order to distinguish between them and the classic Visual Basic. Along with C# and F#, it is one of the three main languages targeting the .NET ecosystem. Microsoft updated its VB language strategy on 6 February 2023, stating that VB is a stable language now and Microsoft will keep maintaining it.[6]

Microsoft's integrated development environment (IDE) for developing in Visual Basic is Visual Studio. Most Visual Studio editions are commercial; the only exceptions are Visual Studio Express and Visual Studio Community, which are freeware. In addition, the .NET Framework SDK includes a freeware command-line compiler called vbc.exe. Mono also includes a command-line VB.NET compiler.

Visual Basic is often used in conjunction with the Windows Forms GUI library to make desktop apps for Windows. Programming for Windows Forms with Visual Basic involves dragging and dropping controls on a form using a GUI designer and writing corresponding code for each control.

Use in making GUI programs edit

The Windows Forms library is most commonly used to create GUI interfaces in Visual Basic. All visual elements in the Windows Forms class library derive from the Control class. This provides the minimal functionality of a user interface element such as location, size, color, font, text, as well as common events like click and drag/drop. The Control class also has docking support to let a control rearrange its position under its parent.

Forms are typically designed in the Visual Studio IDE. In Visual Studio, forms are created using drag-and-drop techniques. A tool is used to place controls (e.g., text boxes, buttons, etc.) on the form (window). 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.

Syntax edit

Visual Basic uses statements to specify actions. The most common statement is an expression statement, consisting of an expression to be evaluated, on a single line. As part of that evaluation, functions or subroutines may be called and variables may be assigned new values. To modify the normal sequential execution of statements, Visual Basic provides several control-flow statements identified by reserved keywords. Structured programming is supported by several constructs including two conditional execution constructs (If ... Then ... Else ... End If and Select Case ... Case ... End Select ) and three iterative execution (loop) constructs (Do ... Loop, For ... To, and For Each) . The For ... To statement has separate initialisation and testing sections, both of which must be present. (See examples below.) The For Each statement steps through each value in a list.

In addition, in Visual Basic:

  • There is no unified way of defining blocks of statements. Instead, certain keywords, such as "If … Then" or "Sub" are interpreted as starters of sub-blocks of code and have matching termination keywords such as "End If" or "End Sub".
  • Statements are terminated either with a colon (":") or with the end of line. Multiple-line statements in Visual Basic are enabled with " _" at the end of each such line. The need for the underscore continuation character was largely removed in version 10 and later versions.[7]
  • The equals sign ("=") is used in both assigning values to variables and in comparison.
  • Round brackets (parentheses) are used with arrays, both to declare them and to get a value at a given index in one of them. Visual Basic uses round brackets to define the parameters of subroutines or functions.
  • A single quotation mark (') or the keyword REM, placed at the beginning of a line or after any number of space or tab characters at the beginning of a line, or after other code on a line, indicates that the (remainder of the) line is a comment.

Simple example edit

The following is a very simple Visual Basic program, a version of the classic "Hello, World!" example created as a console application:

Module Module1  Sub Main()  ' The classic "Hello, World!" demonstration program  Console.WriteLine("Hello, World!")  End Sub End Module 

It prints "Hello, World!" on a command-line window. Each line serves a specific purpose, as follows:

Module Module1 

This is a module definition. Modules are a division of code, which can contain any kind of object, like constants or variables, functions or methods, or classes, but can't be instantiated as objects like classes and cannot inherit from other modules. Modules serve as containers of code that can be referenced from other parts of a program.[8]
It is common practice for a module and the code file which contains it to have the same name. However, this is not required, as a single code file may contain more than one module and/or class.

Sub Main() 

This line defines a subroutine called "Main". "Main" is the entry point, where the program begins execution.[9]

Console.WriteLine("Hello, world!") 

This line performs the actual task of writing the output. Console is a system object, representing a command-line interface (also known as a "console") and granting programmatic access to the operating system's standard streams. The program calls the Console method WriteLine, which causes the string passed to it to be displayed on the console.

Instead of Console.WriteLine, one could use MsgBox, which prints the message in a dialog box instead of a command-line window.[10]

Complex example edit

This piece of code outputs Floyd's Triangle to the console:

Imports System.Console Module Program  Sub Main()  Dim rows As Integer  ' Input validation.  Do Until Integer.TryParse(ReadLine("Enter a value for how many rows to be displayed: " & vbcrlf), rows) AndAlso rows >= 1  WriteLine("Allowed range is 1 and {0}", Integer.MaxValue)  Loop    ' Output of Floyd's Triangle  Dim current As Integer = 1  Dim row As Integer   Dim column As Integer  For row = 1 To rows  For column = 1 To row  Write("{0,-2} ", current)  current += 1  Next  WriteLine()  Next  End Sub  ''' <summary>  ''' Like Console.ReadLine but takes a prompt string.  ''' </summary>  Function ReadLine(Optional prompt As String = Nothing) As String  If prompt IsNot Nothing Then  Write(prompt)  End If  Return Console.ReadLine()  End Function End Module 

Comparison with the classic Visual Basic edit

Whether Visual Basic .NET should be considered as just another version of Visual Basic or a completely different language is a topic of debate. There are new additions to support new features, such as structured exception handling and short-circuited expressions. Also, two important data-type changes occurred with the move to VB.NET: compared to Visual Basic 6, the Integer data type has been doubled in length from 16 bits to 32 bits, and the Long data type has been doubled in length from 32 bits to 64 bits. This is true for all versions of VB.NET. A 16-bit integer in all versions of VB.NET is now known as a Short. Similarly, the Windows Forms editor is very similar in style and function to the Visual Basic form editor.

The things that have changed significantly are the semantics—from those of an object-based programming language running on a deterministic, reference-counted engine based on COM to a fully object-oriented language backed by the .NET Framework, which consists of a combination of the Common Language Runtime (a virtual machine using generational garbage collection and a just-in-time compilation engine) and a far larger class library. The increased breadth of the latter is also a problem that VB developers have to deal with when coming to the language, although this is somewhat addressed by the My feature in Visual Studio 2005.

The changes have altered many underlying assumptions about the "right" thing to do with respect to performance and maintainability. Some functions and libraries no longer exist; others are available, but not as efficient as the "native" .NET alternatives. Even if they compile, most converted Visual Basic 6 applications will require some level of refactoring to take full advantage of the new language. Documentation is available to cover changes in the syntax, debugging applications, deployment and terminology.[11]

Comparative examples edit

The following simple examples compare VB and VB.NET syntax. They assume that the developer has created a form, placed a button on it and has associated the subroutines demonstrated in each example with the click event handler of the mentioned button. Each example creates a "Hello, World" message box after the button on the form is clicked.

Visual Basic 6:

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

VB.NET (MsgBox or MessageBox class can be used):

Private Sub Button1_Click(sender As object, e As EventArgs) Handles Button1.Click  MsgBox("Hello, World") End Sub 
  • Both Visual Basic 6 and Visual Basic .NET automatically generate the Sub and End Sub statements when the corresponding button is double-clicked in design view. Visual Basic .NET will also generate the necessary Class and End Class statements. The developer need only add the statement to display the "Hello, World" message box.
  • All procedure calls must be made with parentheses in VB.NET, whereas in Visual Basic 6 there were different conventions for functions (parentheses required) and subs (no parentheses allowed, unless called using the keyword Call).
  • The names Command1 and Button1 are not obligatory. However, these are default names for a command button in Visual Basic 6 and VB.NET respectively.
  • In VB.NET, the Handles keyword is used to make the sub Button1_Click a handler for the Click event of the object Button1. In Visual Basic 6, event handler subs must have a specific name consisting of the object's name ("Command1"), an underscore ("_"), and the event's name ("Click", hence "Command1_Click").
  • There is a function called MessageBox.Show in the Microsoft.VisualBasic namespace which can be used (instead of MsgBox) similarly to the corresponding function in Visual Basic 6. There is a controversy[12] about which function to use as a best practice (not only restricted to showing message boxes but also regarding other features of the Microsoft.VisualBasic namespace). Some programmers prefer to do things "the .NET way", since the Framework classes have more features and are less language-specific. Others argue that using language-specific features makes code more readable (for example, using int (C#) or Integer (VB.NET) instead of System.Int32).
  • In Visual Basic 2008, the inclusion of ByVal sender as Object, ByVal e as EventArgs has become optional.

The following example demonstrates a difference between Visual Basic 6 and VB.NET. Both examples close the active window.

Visual Basic 6:

Sub cmdClose_Click()  Unload Me End Sub 

VB.NET:

Sub btnClose_Click(sender As Object, e As EventArgs) Handles btnClose.Click  Close() End Sub 

The 'cmd' prefix is replaced by the 'btn' prefix, conforming to the new convention previously mentioned.[which?]

Visual Basic 6 did not provide common operator shortcuts. The following are equivalent:

Visual Basic 6:

Sub Timer1_Timer()  'Reduces Form Height by one pixel per tick  Me.Height = Me.Height - 1 End Sub 

VB.NET:

Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick  Me.Height -= 1 End Sub 

Comparison with C# edit

C# and Visual Basic are Microsoft's first languages made to program on the .NET Framework (later adding F# and more; others have also added languages). Though C# and Visual Basic are syntactically different, that is where the differences mostly end. Microsoft developed both of these languages to be part of the same .NET Framework development platform. They are both developed, managed, and supported by the same language development team at Microsoft.[13] They compile to the same intermediate language (IL), which runs against the same .NET Framework runtime libraries.[14] Although there are some differences in the programming constructs, their differences are primarily syntactic and, assuming one avoids the Visual Basic "Compatibility" libraries provided by Microsoft to aid conversion from Visual Basic 6, almost every feature in VB has an equivalent feature in C# and vice versa. Lastly, both languages reference the same Base Classes of the .NET Framework to extend their functionality. As a result, with few exceptions, a program written in either language can be run through a simple syntax converter to translate to the other. There are many open source and commercially available products for this task.

Examples edit

Hello World! edit

Windows Forms Application edit

Requires a button called Button1.

Public Class Form1  Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click  MsgBox("Hello world!", MsgBoxStyle.Information, "Hello world!") ' Show a message that says "Hello world!".  End Sub End Class 
 
Hello world! window

Console Application edit

Module Module1  Sub Main()  Console.WriteLine("Hello world!") ' Write in the console "Hello world!" and start a new line.  Console.ReadKey() ' The user must press any key before the application ends.  End Sub End Module 

Speaking edit

Windows Forms Application edit

Requires a TextBox titled 'TextBox1' and a button called Button1.

Public Class Form1    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click  CreateObject("Sapi.Spvoice").Speak(TextBox1.Text)  End Sub End Class 

Console Application edit

Module Module1  Private Voice = CreateObject("Sapi.Spvoice")  Private Text As String   Sub Main()  Console.Write("Enter the text to speak: ") ' Say "Enter the text to speak: "  Text = Console.ReadLine() ' The user must enter the text to speak.  Voice.Speak(Text) ' Speak the text the user has entered.  End Sub End Module 

Version history edit

Succeeding the classic Visual Basic version 6.0, the first version of Visual Basic .NET debuted in 2002. As of 2020, ten versions of Visual Basic .NET are released.

2002 (VB 7.0) edit

The first version, Visual Basic .NET, relies on .NET Framework 1.0. The most important feature is managed code, which contrasts with the classic Visual Basic.

2003 (VB 7.1) edit

Visual Basic .NET 2003 was released with .NET Framework 1.1. New features included support for the .NET Compact Framework and a better VB upgrade wizard. Improvements were also made to the performance and reliability of .NET IDE (particularly the background compiler) and runtime. In addition, Visual Basic .NET 2003 was available in the Visual Studio.NET Academic Edition, distributed to a certain number of scholars[weasel words] from each country without cost.

2005 (VB 8.0) edit

After Visual Basic .NET 2003, Microsoft dropped ".NET" from the name of the product, calling the next version Visual Basic 2005.

For this release, Microsoft added many features intended to reinforce Visual Basic .NET's focus as a rapid application development platform and further differentiate it from C#., including:

  • Edit and Continue feature[further explanation needed]
  • Design-time expression evaluation[further explanation needed]
  • A pseudo-namespace called "My", which provides:[15][16]
    • Easy access to certain areas of the .NET Framework that otherwise require significant code to access like using My.Form2.Text = " MainForm " rather than System.WindowsApplication1.Forms.Form2.text = " MainForm "
    • Dynamically generated classes (e.g. My.Forms)
  • Improved VB-to-VB.NET converter[17]
  • A "using" keyword, simplifying the use of objects that require the Dispose pattern to free resources
  • Just My Code feature, which hides (steps over) boilerplate code written by the Visual Studio .NET IDE and system library code during debugging
  • Data Source binding, easing database client/server development

To bridge the gaps between itself and other .NET languages, this version added:

Visual Basic 2005 introduced the IsNot operator that makes 'If X IsNot Y' equivalent to 'If Not X Is Y'. It gained notoriety[20] when it was found to be the subject of a Microsoft patent application.[21][22]

2008 (VB 9.0) edit

Visual Basic 9.0 was released along with .NET Framework 3.5 on November 19, 2007.

For this release, Microsoft added many features, including:

2010 (VB 10.0) edit

In April 2010, Microsoft released Visual Basic 2010. Microsoft had planned to use Dynamic Language Runtime (DLR) for that release[23] but shifted to a co-evolution strategy between Visual Basic and sister language C# to bring both languages into closer parity with one another. Visual Basic's innate ability to interact dynamically with CLR and COM objects has been enhanced to work with dynamic languages built on the DLR such as IronPython and IronRuby.[24] The Visual Basic compiler was improved to infer line continuation in a set of common contexts, in many cases removing the need for the " _" line continuation characters. Also, existing support of inline Functions was complemented with support for inline Subs as well as multi-line versions of both Sub and Function lambdas.[25]

2012 (VB 11.0) edit

Visual Basic 2012 was released alongside .NET Framework 4.5. Major features introduced in this version include:[further explanation needed]

  • Asynchronous programming with "async" and "await" statements
  • Iterators
  • Call hierarchy
  • Caller information
  • "Global" keyword in "namespace" statements

2013 (VB 12.0) edit

Visual Basic 2013 was released alongside .NET Framework 4.5.1 with Visual Studio 2013. Can also build .NET Framework 4.5.2 applications by installing Developer Pack.[26]

2015 (VB 14.0) edit

Visual Basic 2015 (code named VB "14.0") was released with Visual Studio 2015. Language features include a new "?." operator to perform inline null checks, and a new string interpolation feature is included to format strings inline.[27]

2017 (VB 15.x) edit

Visual Basic 2017 (code named VB "15.0") was released with Visual Studio 2017. Extends support for new Visual Basic 15 language features with revision 2017, 15.3, 15.5, 15.8. Introduces new refactorings that allow organizing source code with one action.[28][29]

2019 (VB 16.0) edit

Visual Basic 2019 (code named VB "16.0") was released with Visual Studio 2019.[30] It is the first version of Visual Basic focused on .NET Core.[31]

Cross-platform and open-source development edit

The official Visual Basic compiler is written in Visual Basic and is available on GitHub as a part of the .NET Compiler Platform.[32] The creation of open-source tools for Visual Basic development has been slow compared to C#, although the Mono development platform provides an implementation of Visual Basic-specific libraries and a Visual Basic 2005 compatible compiler written in Visual Basic,[33] as well as standard framework libraries such as Windows Forms GUI library.

MonoDevelop was an open-source alternative IDE. The Gambas environment is also similar but distinct from Visual Basic, as is the Visual FB Editor for FreeBasic.

See also edit

References edit

  1. ^ "Visual Studio 2022 version 17.6 Release Notes". June 20, 2023. Retrieved July 3, 2023.
  2. ^ a b "Option Explicit and Option Strict in Visual Basic .NET and in Visual Basic". Support. Microsoft. March 19, 2008. from the original on April 4, 2015. Retrieved August 22, 2013.
  3. ^ Dollard, Kathleen (November 13, 2018). "Visual Basic in .NET Core 3.0". blogs.msdn.microsoft.com. from the original on November 19, 2018. Retrieved November 21, 2018.
  4. ^ "Visual Basic support planned for .NET 5.0 | Visual Basic Blog". Blogs.msdn.microsoft.com. March 11, 2020. from the original on January 5, 2022. Retrieved August 26, 2020.
  5. ^ "Dotnet/Roslyn". GitHub. November 2, 2022. from the original on May 2, 2019. Retrieved April 14, 2019.
  6. ^ KathleenDollard (February 6, 2023). "Visual Basic language strategy - Visual Basic". learn.microsoft.com. from the original on March 31, 2023. Retrieved March 31, 2023.
  7. ^ "New Features in Visual Basic 10". June 3, 2010. from the original on March 4, 2016. Retrieved September 5, 2015.
  8. ^ "Module Statement". MSDN – Developer Center. from the original on January 9, 2010. Retrieved January 20, 2010.
  9. ^ "Main Procedure in Visual Basic". MSDN – Developer Center. from the original on January 28, 2010. Retrieved January 20, 2010.
  10. ^ "Visual Basic Version of Hello, World". MSDN – Developer Center. from the original on January 11, 2010. Retrieved January 20, 2010.
  11. ^ "Microsoft Visual Basic 6.0 Migration Resource Center". MSDN. Microsoft. from the original on November 9, 2014. Retrieved November 9, 2014.
  12. ^ "Visual Studio 2003 Retired Technical documentation". Microsoft Download Center. from the original on December 30, 2014. Retrieved July 24, 2018.
  13. ^ Krill, Paul (February 27, 2009). "Microsoft converging programming languages | Developer World". InfoWorld. Archived from the original on January 26, 2013. Retrieved August 18, 2013.
  14. ^ "Microsoft Intermediate Language". Dotnet-guide.com. from the original on June 2, 2013. Retrieved August 18, 2013.
  15. ^ Mackenzie, Duncan (2006). "Navigate The .NET Framework And Your Projects With The My Namespace". MSDN Magazine Visual Studio 2005 Guided Tour 2006. Microsoft. from the original on February 15, 2014. Retrieved February 6, 2014.
  16. ^ Whitney, Tyler (November 2005). "My.Internals: Examining the Visual Basic My Feature". MSDN. Microsoft. from the original on June 14, 2012. Retrieved February 6, 2014.
  17. ^ "What's New with the Visual Basic Upgrade Wizard in Visual Basic 2005". msdn2.microsoft.com. from the original on April 6, 2008. Retrieved January 29, 2008.
  18. ^ "Defining and Using Generics in Visual Basic 2005". msdn2.microsoft.com. from the original on April 23, 2008. Retrieved January 29, 2008.
  19. ^ "Operator Overloading in Visual Basic 2005". msdn2.microsoft.com. from the original on April 23, 2008. Retrieved January 29, 2008.
  20. ^ Sherriff, Lucy (February 22, 2005). "Real Software slams MS IsNot patent application". The Register. from the original on August 3, 2009. Retrieved April 6, 2009.
  21. ^ Taft, Darryl K. (February 21, 2005). "Real Software Slams Microsofts Patent Effort". eWeek. Archived from the original on July 31, 2012. Retrieved April 6, 2009.
  22. ^ Vick, Paul A. Jr.; Barsan, Costica Corneliu; Silver, Amanda K. (May 14, 2003). "United States Patent Application: 20040230959". Patent Application Full Text and Image Database. US Patent & Trademark Office. from the original on February 11, 2006. Retrieved April 6, 2009.
  23. ^ . May 1, 2007. Archived from the original on May 25, 2009. Retrieved August 12, 2009. With the new DLR, we have support for IronPython, IronRuby, Javascript, and the new dynamic VBx compile
  24. ^ "What is New in Visual Basic 2010". Microsoft. 2009. from the original on August 4, 2009. Retrieved August 12, 2009. Visual Basic binds to objects from dynamic languages such as IronPython and IronRuby
  25. ^ "What's New in Visual Basic 2010". Microsoft. 2010. from the original on July 26, 2010. Retrieved August 1, 2010.
  26. ^ "Download Microsoft .NET Framework 4.5.2 Developer Pack for Windows Vista SP2, Windows 7 SP1, Windows 8, Windows 8.1, Windows Server 2008 SP2 Windows Server 2008 R2 SP1, Windows Server 2012 and Windows Server 2012 R2 from Official Microsoft Download Center". Microsoft. from the original on January 9, 2020. Retrieved January 11, 2020.
  27. ^ "New Language Features in Visual Basic 14". msdn.com. from the original on December 25, 2014. Retrieved February 5, 2015.
  28. ^ reshmim. "Visual Studio 2017 Release Notes". www.visualstudio.com. from the original on January 22, 2018. Retrieved April 5, 2017.
  29. ^ reshmim. "What's new for Visual Basic 2017,15.3,15.5,15.8". www.visualstudio.com. from the original on September 1, 2019. Retrieved January 11, 2020.
  30. ^ reshmim. "Visual Studio 2019 Release Notes". www.visualstudio.com. from the original on November 29, 2021. Retrieved August 2, 2019.
  31. ^ reshmim. "What's new for Visual Basic 16.0". www.visualstudio.com. from the original on September 1, 2019. Retrieved January 11, 2020.
  32. ^ Roslyn, .NET Foundation, April 13, 2019, from the original on February 22, 2021, retrieved April 14, 2019
  33. ^ "Redirecting…". www.mono-project.com. from the original on January 30, 2021. Retrieved June 30, 2008.

Further reading edit

  1. "Visual Basic Language Specification 8.0". Microsoft Corporation. November 15, 2005. from the original on January 21, 2011. Retrieved December 10, 2010.
  2. "Visual Basic Language Specification 9.0". Microsoft Corporation. December 19, 2007. Retrieved September 28, 2011.
  3. "Visual Basic Language Specification 11.0". Microsoft Corporation. June 7, 2013. from the original on March 5, 2012. Retrieved September 22, 2013.

External links edit

  • Official website
  • The Visual Basic Team Blog

visual, basic, this, article, about, modern, programming, language, original, visual, basic, last, version, which, visual, basic, visual, basic, classic, visual, basic, originally, called, visual, basic, multi, paradigm, object, oriented, programming, language. This article is about the modern programming language for NET For the original Visual Basic the last version of which was Visual Basic 6 0 see Visual Basic classic Visual Basic VB originally called Visual Basic NET VB NET is a multi paradigm object oriented programming language implemented on NET Mono and the NET Framework Microsoft launched VB NET in 2002 as the successor to its original Visual Basic language the last version of which was Visual Basic 6 0 Although the NET portion of the name was dropped in 2005 this article uses Visual Basic NET to refer to all Visual Basic languages released since 2002 in order to distinguish between them and the classic Visual Basic Along with C and F it is one of the three main languages targeting the NET ecosystem Microsoft updated its VB language strategy on 6 February 2023 stating that VB is a stable language now and Microsoft will keep maintaining it 6 Visual BasicParadigmMulti paradigm structured imperative object oriented declarative generic reflective and event drivenDesigned byMicrosoftDeveloperMicrosoftFirst appeared2001 22 years ago 2001 Stable release17 6 4 1 20 June 2023 5 months ago 20 June 2023 Typing disciplineStatic both strong and weak 2 both safe and unsafe 2 nominativePlatform NET Framework Mono NET 3 4 OSChiefly WindowsAlso on Android BSD iOS Linux macOS Solaris and UnixLicenseRoslyn compiler Apache License 2 0 5 Filename extensions vbWebsitedocs wbr microsoft wbr com wbr dotnet wbr visual basic wbr Major implementations NET Framework SDK Roslyn Compiler and MonoDialectsMicrosoft Visual BasicInfluenced byClassic Visual BasicInfluencedSmall Basic MercuryMicrosoft s integrated development environment IDE for developing in Visual Basic is Visual Studio Most Visual Studio editions are commercial the only exceptions are Visual Studio Express and Visual Studio Community which are freeware In addition the NET Framework SDK includes a freeware command line compiler called vbc exe Mono also includes a command line VB NET compiler Visual Basic is often used in conjunction with the Windows Forms GUI library to make desktop apps for Windows Programming for Windows Forms with Visual Basic involves dragging and dropping controls on a form using a GUI designer and writing corresponding code for each control Contents 1 Use in making GUI programs 2 Syntax 2 1 Simple example 2 2 Complex example 2 3 Comparison with the classic Visual Basic 2 3 1 Comparative examples 2 4 Comparison with C 3 Examples 3 1 Hello World 3 1 1 Windows Forms Application 3 1 2 Console Application 3 2 Speaking 3 2 1 Windows Forms Application 3 2 2 Console Application 4 Version history 4 1 2002 VB 7 0 4 2 2003 VB 7 1 4 3 2005 VB 8 0 4 4 2008 VB 9 0 4 5 2010 VB 10 0 4 6 2012 VB 11 0 4 7 2013 VB 12 0 4 8 2015 VB 14 0 4 9 2017 VB 15 x 4 10 2019 VB 16 0 5 Cross platform and open source development 6 See also 7 References 8 Further reading 9 External linksUse in making GUI programs editSee also Windows Forms The Windows Forms library is most commonly used to create GUI interfaces in Visual Basic All visual elements in the Windows Forms class library derive from the Control class This provides the minimal functionality of a user interface element such as location size color font text as well as common events like click and drag drop The Control class also has docking support to let a control rearrange its position under its parent Forms are typically designed in the Visual Studio IDE In Visual Studio forms are created using drag and drop techniques A tool is used to place controls e g text boxes buttons etc on the form window 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 Syntax editThis section needs expansion You can help by adding to it April 2014 Visual Basic uses statements to specify actions The most common statement is an expression statement consisting of an expression to be evaluated on a single line As part of that evaluation functions or subroutines may be called and variables may be assigned new values To modify the normal sequential execution of statements Visual Basic provides several control flow statements identified by reserved keywords Structured programming is supported by several constructs including two conditional execution constructs If Then Else End If and Select Case Case End Select and three iterative execution loop constructs Do Loop For To and For Each The For To statement has separate initialisation and testing sections both of which must be present See examples below The For Each statement steps through each value in a list In addition in Visual Basic There is no unified way of defining blocks of statements Instead certain keywords such as If Then or Sub are interpreted as starters of sub blocks of code and have matching termination keywords such as End If or End Sub Statements are terminated either with a colon or with the end of line Multiple line statements in Visual Basic are enabled with at the end of each such line The need for the underscore continuation character was largely removed in version 10 and later versions 7 The equals sign is used in both assigning values to variables and in comparison Round brackets parentheses are used with arrays both to declare them and to get a value at a given index in one of them Visual Basic uses round brackets to define the parameters of subroutines or functions A single quotation mark or the keyword REM placed at the beginning of a line or after any number of space or tab characters at the beginning of a line or after other code on a line indicates that the remainder of the line is a comment Simple example edit The following is a very simple Visual Basic program a version of the classic Hello World example created as a console application Module Module1 Sub Main The classic Hello World demonstration program Console WriteLine Hello World End Sub End Module It prints Hello World on a command line window Each line serves a specific purpose as follows Module Module1 This is a module definition Modules are a division of code which can contain any kind of object like constants or variables functions or methods or classes but can t be instantiated as objects like classes and cannot inherit from other modules Modules serve as containers of code that can be referenced from other parts of a program 8 It is common practice for a module and the code file which contains it to have the same name However this is not required as a single code file may contain more than one module and or class Sub Main This line defines a subroutine called Main Main is the entry point where the program begins execution 9 Console WriteLine Hello world This line performs the actual task of writing the output Console is a system object representing a command line interface also known as a console and granting programmatic access to the operating system s standard streams The program calls the Console method WriteLine which causes the string passed to it to be displayed on the console Instead of Console WriteLine one could use MsgBox which prints the message in a dialog box instead of a command line window 10 Complex example edit This piece of code outputs Floyd s Triangle to the console Imports System Console Module Program Sub Main Dim rows As Integer Input validation Do Until Integer TryParse ReadLine Enter a value for how many rows to be displayed amp vbcrlf rows AndAlso rows gt 1 WriteLine Allowed range is 1 and 0 Integer MaxValue Loop Output of Floyd s Triangle Dim current As Integer 1 Dim row As Integer Dim column As Integer For row 1 To rows For column 1 To row Write 0 2 current current 1 Next WriteLine Next End Sub lt summary gt Like Console ReadLine but takes a prompt string lt summary gt Function ReadLine Optional prompt As String Nothing As String If prompt IsNot Nothing Then Write prompt End If Return Console ReadLine End Function End Module Comparison with the classic Visual Basic edit Main article Comparison of Visual Basic and Visual Basic NET Whether Visual Basic NET should be considered as just another version of Visual Basic or a completely different language is a topic of debate There are new additions to support new features such as structured exception handling and short circuited expressions Also two important data type changes occurred with the move to VB NET compared to Visual Basic 6 the Integer data type has been doubled in length from 16 bits to 32 bits and the Long data type has been doubled in length from 32 bits to 64 bits This is true for all versions of VB NET A 16 bit integer in all versions of VB NET is now known as a Short Similarly the Windows Forms editor is very similar in style and function to the Visual Basic form editor The things that have changed significantly are the semantics from those of an object based programming language running on a deterministic reference counted engine based on COM to a fully object oriented language backed by the NET Framework which consists of a combination of the Common Language Runtime a virtual machine using generational garbage collection and a just in time compilation engine and a far larger class library The increased breadth of the latter is also a problem that VB developers have to deal with when coming to the language although this is somewhat addressed by the My feature in Visual Studio 2005 The changes have altered many underlying assumptions about the right thing to do with respect to performance and maintainability Some functions and libraries no longer exist others are available but not as efficient as the native NET alternatives Even if they compile most converted Visual Basic 6 applications will require some level of refactoring to take full advantage of the new language Documentation is available to cover changes in the syntax debugging applications deployment and terminology 11 Comparative examples edit The following simple examples compare VB and VB NET syntax They assume that the developer has created a form placed a button on it and has associated the subroutines demonstrated in each example with the click event handler of the mentioned button Each example creates a Hello World message box after the button on the form is clicked Visual Basic 6 Private Sub Command1 Click MsgBox Hello World End Sub VB NET MsgBox or MessageBox class can be used Private Sub Button1 Click sender As object e As EventArgs Handles Button1 Click MsgBox Hello World End Sub Both Visual Basic 6 and Visual Basic NET automatically generate the Sub and End Sub statements when the corresponding button is double clicked in design view Visual Basic NET will also generate the necessary Class and End Class statements The developer need only add the statement to display the Hello World message box All procedure calls must be made with parentheses in VB NET whereas in Visual Basic 6 there were different conventions for functions parentheses required and subs no parentheses allowed unless called using the keyword Call The names Command1 and Button1 are not obligatory However these are default names for a command button in Visual Basic 6 and VB NET respectively In VB NET the Handles keyword is used to make the sub Button1 Click a handler for the Click event of the object Button1 In Visual Basic 6 event handler subs must have a specific name consisting of the object s name Command1 an underscore and the event s name Click hence Command1 Click There is a function called MessageBox Show in the Microsoft VisualBasic namespace which can be used instead of MsgBox similarly to the corresponding function in Visual Basic 6 There is a controversy 12 about which function to use as a best practice not only restricted to showing message boxes but also regarding other features of the Microsoft VisualBasic namespace Some programmers prefer to do things the NET way since the Framework classes have more features and are less language specific Others argue that using language specific features makes code more readable for example using int C or Integer VB NET instead of System Int32 In Visual Basic 2008 the inclusion of ByVal sender as Object ByVal e as EventArgs has become optional The following example demonstrates a difference between Visual Basic 6 and VB NET Both examples close the active window Visual Basic 6 Sub cmdClose Click Unload Me End Sub VB NET Sub btnClose Click sender As Object e As EventArgs Handles btnClose Click Close End Sub The cmd prefix is replaced by the btn prefix conforming to the new convention previously mentioned which Visual Basic 6 did not provide common operator shortcuts The following are equivalent Visual Basic 6 Sub Timer1 Timer Reduces Form Height by one pixel per tick Me Height Me Height 1 End Sub VB NET Sub Timer1 Tick sender As Object e As EventArgs Handles Timer1 Tick Me Height 1 End Sub Comparison with C edit Main article Comparison of C Sharp and Visual Basic NET C and Visual Basic are Microsoft s first languages made to program on the NET Framework later adding F and more others have also added languages Though C and Visual Basic are syntactically different that is where the differences mostly end Microsoft developed both of these languages to be part of the same NET Framework development platform They are both developed managed and supported by the same language development team at Microsoft 13 They compile to the same intermediate language IL which runs against the same NET Framework runtime libraries 14 Although there are some differences in the programming constructs their differences are primarily syntactic and assuming one avoids the Visual Basic Compatibility libraries provided by Microsoft to aid conversion from Visual Basic 6 almost every feature in VB has an equivalent feature in C and vice versa Lastly both languages reference the same Base Classes of the NET Framework to extend their functionality As a result with few exceptions a program written in either language can be run through a simple syntax converter to translate to the other There are many open source and commercially available products for this task Examples editHello World edit Windows Forms Application editRequires a button called Button1 Public Class Form1 Private Sub Button1 Click sender As Object e As EventArgs Handles Button1 Click MsgBox Hello world MsgBoxStyle Information Hello world Show a message that says Hello world End Sub End Class nbsp Hello world windowConsole Application edit Module Module1 Sub Main Console WriteLine Hello world Write in the console Hello world and start a new line Console ReadKey The user must press any key before the application ends End Sub End Module Speaking edit Windows Forms Application editRequires a TextBox titled TextBox1 and a button called Button1 Public Class Form1 Private Sub Button1 Click sender As Object e As EventArgs Handles Button1 Click CreateObject Sapi Spvoice Speak TextBox1 Text End Sub End Class Console Application edit Module Module1 Private Voice CreateObject Sapi Spvoice Private Text As String Sub Main Console Write Enter the text to speak Say Enter the text to speak Text Console ReadLine The user must enter the text to speak Voice Speak Text Speak the text the user has entered End Sub End ModuleVersion history editThis section needs to be updated The reason given is give update about Visual Studio 2022 release Please help update this article to reflect recent events or newly available information June 2022 Succeeding the classic Visual Basic version 6 0 the first version of Visual Basic NET debuted in 2002 As of 2020 update ten versions of Visual Basic NET are released 2002 VB 7 0 edit The first version Visual Basic NET relies on NET Framework 1 0 The most important feature is managed code which contrasts with the classic Visual Basic 2003 VB 7 1 edit Visual Basic NET 2003 was released with NET Framework 1 1 New features included support for the NET Compact Framework and a better VB upgrade wizard Improvements were also made to the performance and reliability of NET IDE particularly the background compiler and runtime In addition Visual Basic NET 2003 was available in the Visual Studio NET Academic Edition distributed to a certain number of scholars weasel words from each country without cost 2005 VB 8 0 edit After Visual Basic NET 2003 Microsoft dropped NET from the name of the product calling the next version Visual Basic 2005 For this release Microsoft added many features intended to reinforce Visual Basic NET s focus as a rapid application development platform and further differentiate it from C including Edit and Continue feature further explanation needed Design time expression evaluation further explanation needed A pseudo namespace called My which provides 15 16 Easy access to certain areas of the NET Framework that otherwise require significant code to access like using span class n My span span class p span span class n Form2 span span class p span span class n Text span span class w span span class o span span class w span span class s MainForm span rather than span class n System span span class p span span class n WindowsApplication1 span span class p span span class n Forms span span class p span span class n Form2 span span class p span span class n text span span class w span span class o span span class w span span class s MainForm span Dynamically generated classes e g My Forms Improved VB to VB NET converter 17 A using keyword simplifying the use of objects that require the Dispose pattern to free resources Just My Code feature which hides steps over boilerplate code written by the Visual Studio NET IDE and system library code during debugging Data Source binding easing database client server developmentTo bridge the gaps between itself and other NET languages this version added Generics 18 Partial classes a method of defining some parts of a class in one file and then adding more definitions later particularly useful for integrating user code with auto generated code Operator overloading and nullable types 19 Support for unsigned integer data types commonly used in other languagesVisual Basic 2005 introduced the IsNot operator that makes If X IsNot Y equivalent to If Not X Is Y It gained notoriety 20 when it was found to be the subject of a Microsoft patent application 21 22 2008 VB 9 0 edit Visual Basic 9 0 was released along with NET Framework 3 5 on November 19 2007 For this release Microsoft added many features including A true conditional operator If condition as boolean truepart falsepart to replace the IIf function Anonymous types Support for LINQ Lambda expressions XML Literals Type Inference Extension methods2010 VB 10 0 edit In April 2010 Microsoft released Visual Basic 2010 Microsoft had planned to use Dynamic Language Runtime DLR for that release 23 but shifted to a co evolution strategy between Visual Basic and sister language C to bring both languages into closer parity with one another Visual Basic s innate ability to interact dynamically with CLR and COM objects has been enhanced to work with dynamic languages built on the DLR such as IronPython and IronRuby 24 The Visual Basic compiler was improved to infer line continuation in a set of common contexts in many cases removing the need for the line continuation characters Also existing support of inline Functions was complemented with support for inline Subs as well as multi line versions of both Sub and Function lambdas 25 2012 VB 11 0 edit Visual Basic 2012 was released alongside NET Framework 4 5 Major features introduced in this version include further explanation needed Asynchronous programming with async and await statements Iterators Call hierarchy Caller information Global keyword in namespace statements2013 VB 12 0 edit Visual Basic 2013 was released alongside NET Framework 4 5 1 with Visual Studio 2013 Can also build NET Framework 4 5 2 applications by installing Developer Pack 26 2015 VB 14 0 edit Visual Basic 2015 code named VB 14 0 was released with Visual Studio 2015 Language features include a new operator to perform inline null checks and a new string interpolation feature is included to format strings inline 27 2017 VB 15 x edit Visual Basic 2017 code named VB 15 0 was released with Visual Studio 2017 Extends support for new Visual Basic 15 language features with revision 2017 15 3 15 5 15 8 Introduces new refactorings that allow organizing source code with one action 28 29 2019 VB 16 0 edit Visual Basic 2019 code named VB 16 0 was released with Visual Studio 2019 30 It is the first version of Visual Basic focused on NET Core 31 Cross platform and open source development editThe official Visual Basic compiler is written in Visual Basic and is available on GitHub as a part of the NET Compiler Platform 32 The creation of open source tools for Visual Basic development has been slow compared to C although the Mono development platform provides an implementation of Visual Basic specific libraries and a Visual Basic 2005 compatible compiler written in Visual Basic 33 as well as standard framework libraries such as Windows Forms GUI library MonoDevelop was an open source alternative IDE The Gambas environment is also similar but distinct from Visual Basic as is the Visual FB Editor for FreeBasic See also edit nbsp Free and open source software portal nbsp Computer programming portalMicrosoft Visual Studio Express List of NET libraries and frameworks Comparison of C and Visual Basic NET Visual Basic for Applications Microsoft Small Basic Comparison of programming languagesReferences edit Visual Studio 2022 version 17 6 Release Notes June 20 2023 Retrieved July 3 2023 a b Option Explicit and Option Strict in Visual Basic NET and in Visual Basic Support Microsoft March 19 2008 Archived from the original on April 4 2015 Retrieved August 22 2013 Dollard Kathleen November 13 2018 Visual Basic in NET Core 3 0 blogs msdn microsoft com Archived from the original on November 19 2018 Retrieved November 21 2018 Visual Basic support planned for NET 5 0 Visual Basic Blog Blogs msdn microsoft com March 11 2020 Archived from the original on January 5 2022 Retrieved August 26 2020 Dotnet Roslyn GitHub November 2 2022 Archived from the original on May 2 2019 Retrieved April 14 2019 KathleenDollard February 6 2023 Visual Basic language strategy Visual Basic learn microsoft com Archived from the original on March 31 2023 Retrieved March 31 2023 New Features in Visual Basic 10 June 3 2010 Archived from the original on March 4 2016 Retrieved September 5 2015 Module Statement MSDN Developer Center Archived from the original on January 9 2010 Retrieved January 20 2010 Main Procedure in Visual Basic MSDN Developer Center Archived from the original on January 28 2010 Retrieved January 20 2010 Visual Basic Version of Hello World MSDN Developer Center Archived from the original on January 11 2010 Retrieved January 20 2010 Microsoft Visual Basic 6 0 Migration Resource Center MSDN Microsoft Archived from the original on November 9 2014 Retrieved November 9 2014 Visual Studio 2003 Retired Technical documentation Microsoft Download Center Archived from the original on December 30 2014 Retrieved July 24 2018 Krill Paul February 27 2009 Microsoft converging programming languages Developer World InfoWorld Archived from the original on January 26 2013 Retrieved August 18 2013 Microsoft Intermediate Language Dotnet guide com Archived from the original on June 2 2013 Retrieved August 18 2013 Mackenzie Duncan 2006 Navigate The NET Framework And Your Projects With The My Namespace MSDN Magazine Visual Studio 2005 Guided Tour 2006 Microsoft Archived from the original on February 15 2014 Retrieved February 6 2014 Whitney Tyler November 2005 My Internals Examining the Visual Basic My Feature MSDN Microsoft Archived from the original on June 14 2012 Retrieved February 6 2014 What s New with the Visual Basic Upgrade Wizard in Visual Basic 2005 msdn2 microsoft com Archived from the original on April 6 2008 Retrieved January 29 2008 Defining and Using Generics in Visual Basic 2005 msdn2 microsoft com Archived from the original on April 23 2008 Retrieved January 29 2008 Operator Overloading in Visual Basic 2005 msdn2 microsoft com Archived from the original on April 23 2008 Retrieved January 29 2008 Sherriff Lucy February 22 2005 Real Software slams MS IsNot patent application The Register Archived from the original on August 3 2009 Retrieved April 6 2009 Taft Darryl K February 21 2005 Real Software Slams Microsofts Patent Effort eWeek Archived from the original on July 31 2012 Retrieved April 6 2009 Vick Paul A Jr Barsan Costica Corneliu Silver Amanda K May 14 2003 United States Patent Application 20040230959 Patent Application Full Text and Image Database US Patent amp Trademark Office Archived from the original on February 11 2006 Retrieved April 6 2009 What the heck is VBx May 1 2007 Archived from the original on May 25 2009 Retrieved August 12 2009 With the new DLR we have support for IronPython IronRuby Javascript and the new dynamic VBx compile What is New in Visual Basic 2010 Microsoft 2009 Archived from the original on August 4 2009 Retrieved August 12 2009 Visual Basic binds to objects from dynamic languages such as IronPython and IronRuby What s New in Visual Basic 2010 Microsoft 2010 Archived from the original on July 26 2010 Retrieved August 1 2010 Download Microsoft NET Framework 4 5 2 Developer Pack for Windows Vista SP2 Windows 7 SP1 Windows 8 Windows 8 1 Windows Server 2008 SP2 Windows Server 2008 R2 SP1 Windows Server 2012 and Windows Server 2012 R2 from Official Microsoft Download Center Microsoft Archived from the original on January 9 2020 Retrieved January 11 2020 New Language Features in Visual Basic 14 msdn com Archived from the original on December 25 2014 Retrieved February 5 2015 reshmim Visual Studio 2017 Release Notes www visualstudio com Archived from the original on January 22 2018 Retrieved April 5 2017 reshmim What s new for Visual Basic 2017 15 3 15 5 15 8 www visualstudio com Archived from the original on September 1 2019 Retrieved January 11 2020 reshmim Visual Studio 2019 Release Notes www visualstudio com Archived from the original on November 29 2021 Retrieved August 2 2019 reshmim What s new for Visual Basic 16 0 www visualstudio com Archived from the original on September 1 2019 Retrieved January 11 2020 Roslyn NET Foundation April 13 2019 archived from the original on February 22 2021 retrieved April 14 2019 Redirecting www mono project com Archived from the original on January 30 2021 Retrieved June 30 2008 Further reading edit Visual Basic Language Specification 8 0 Microsoft Corporation November 15 2005 Archived from the original on January 21 2011 Retrieved December 10 2010 Visual Basic Language Specification 9 0 Microsoft Corporation December 19 2007 Retrieved September 28 2011 Visual Basic Language Specification 11 0 Microsoft Corporation June 7 2013 Archived from the original on March 5 2012 Retrieved September 22 2013 External links edit nbsp Wikibooks has a book on the topic of Visual Basic NET nbsp Wikiversity has learning resources about VB NET Official website The Visual Basic Team Blog Retrieved from https en wikipedia org w index php title Visual Basic NET amp oldid 1181550919, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.