+ Reply to Thread
Page 2 of 2 FirstFirst 1 2
Results 11 to 16 of 16

Thread: vb.net & classic

  1. #11

    Default

    VB.net is a object oriented programming language.It can be viewed evolution of the classic visual basic language.Microsoft visual studio,which is commercial software and Microsoft visual studio express.

  2. #12

    Default

    .net is a framework. means simply it is a collection of large library to solve different programming needs when a programmer wants to write a software. A library is not of books but of small different collection of code .Vb.net is a Visual Basic in .net framework. means one who knows Visual Basic then VB.NET is an extention of Visual Basic.
    It is an object oriented programming language. it contains a systematic collection of classes and objects.Visual Basic .NET comes with thousands of built-in classes which are ready to be used.So it is easier to write in VB.net then Visual Basic. once we have learn how to use .net framework.

  3. #13
    Ruby Star member nobita_deptrai is on a distinguished road
    Join Date
    Jun 2011
    Posts
    458

    Default

    Comparative samples

    The following simple example demonstrates similarity in syntax between VB and VB.NET. Both examples pop up a message box saying "Hello, World" with an OK button.

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

    A VB.NET example, MsgBox or the MessageBox class can be used:

    Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Msgbox("Hello, World")
    End Sub
    End Class

    Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    MessageBox.Show("Hello, World")
    End Sub
    End Class
    BDS Real Estate Company
    Go to my website rao vat ban nha to learn about real estate in Vietnam: Home sales , Apartment for sale, Feng Shui ...

  4. #14
    Sapphire Star member Maddy is on a distinguished road
    Join Date
    Aug 2011
    Posts
    70

    Default

    Thanks for sharing information about this, really helpful!

  5. #15

    Default

    use the NET Framework, which provides two implementations of Visual Basic:. Microsoft Visual Studio, which is commercial software and Microsoft Visual Studio Express, which is free to charge.its really fantastic to use and very famous among the program

  6. #16

    Default

    Vb.net (visual Basic)is the advanced version to Asp.net (Active server page). In currently i am also doing a different type of project work so i used different types of language. my study time I learn about the Vb 6.0 virson. it is object oriented language. It is easy to use and understand. It is developed by microsoft.It's also called the BASIC programming language, Visual Basic was designed to be easily learned and used by beginner programmers. The language not only allows programmers to create simple GUI (General User Interface) applications.

+ Reply to Thread
Page 2 of 2 FirstFirst 1 2

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts