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:
2 | ' Execute a simple message box that says "Hello, World!" |
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):
03 | Private Sub Form_Load() |
05 | Timer1.Interval = 1000 'milidetik |
07 | Private Sub Timer1_Timer() |
09 | Label1.Caption = Count |
For those of you who are interested in learning more about Visual Basic, you can download the software program below
Download
Posting Komentar
0 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.
Click to see the code!
To insert emoticon you must added at least one space before the code.