0

Microsoft Visual Basic (VB) is a programming language that offers Visual Integrated Development Environment (IDE) to create software programs based on Microsoft Windows operating system by using programming model (COM).

Visual Basic is a derivative of the BASIC programming language and offers the development of computer software based on graphics quickly.

Some scripting languages such as Visual Basic for Applications (VBA) and Visual Basic Scripting Edition (VBScript), are similar to Visual Basic, but they work differently.

Programmers can build applications using components provided by Microsoft Visual Basic Programs written in Visual Basic can also use the Windows API, but require additional external function declarations.

The following code displays the "Hello, World!" Mailbox:
1Private Sub Form_Load()
2    ' Execute a simple message box that says "Hello, World!"
3    MsgBox "Hello, World!"
4End Sub

 The following code makes a calculation rise every 1 second and display it on the label (a label and timer control is required in the form to work):
01Option Explicit
02Dim Count As Integer
03Private Sub Form_Load()
04    Count = 0
05    Timer1.Interval = 1000 'milidetik
06End Sub
07Private Sub Timer1_Timer()
08    Count = Count + 1
09    Label1.Caption = Count
10End Sub

For those of you who are interested in learning more about Visual Basic, you can download the software program below

Download

Posting Komentar

Dear readers, after reading the Content please ask for advice and to provide constructive feedback Please Write Relevant Comment with Polite Language.Your comments inspired me to continue blogging. Your opinion much more valuable to me. Thank you.

Emoticon
like dislike :) ;(( :-) ;-( :d :o :>) (o) [-( :-? (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.