Visual Basic Terms Explained

Visual Basic is a programming language used mostly for Microsoft Windows applications. Like any programming language, Visual Basic has a distinct syntax. Some basic, popular words are used when reading a Visual Basic code file.

  1. Dim

    • Dim is the most often-used Visual Basic term. Dim stands for "dimension." Dim defines a variable for use later in the code.

    Array

    • Array is a term used to describe a group of numbers or characters. Arrays contain similar values, but they are mostly used to aggregate different steps of a program.

    Data Types

    • Data types are the types of variables defined throughout the code. A defined variable needs a specific type for the code to work properly. String variables hold characters.

    Comments

    • Commenting code is a standard for all software development. Comments are not compiled, so the coder can place anything he wants in the comments.

    Functions

    • Functions are reusable routines in the code. A function can be called multiple times by sending a parameter in a part of the code. A function then returns an answer. Functions make code cleaner and easier to implement in multiple code files.

Related Searches:

References

Comments

You May Also Like

  • What Are Visual Basic Terminologies?

    Microsoft released its Visual Basic language for programmers to develop applications for Web, Windows and mobile devices. Although there is an entire...

  • How to Learn Beginner Visual Basic

    Visual Basic is a high-level programming language that generally allows programmers to create applications or programs that computer users can utilize. These...

  • What Is Visual Basic?

    Visual Basic is the latest generation of the original BASIC language. BASIC started as the language of home computing. The acronym stands...

  • Basics of Visual Basic

    Visual Basic is a widely used programming language developed by Microsoft. Microsoft created Visual Basic to make it easy to write programs...

  • Visual Basic Step-by-Step

    Visual Basic is a widely used programming language developed by Microsoft to create programs for their Windows operating systems. Visual Basic's core...

  • Some Basic Terms Related to Computers

    For computer owners, some standard "technology speak" is a part of understanding how the machine works. For a first-time user, hearing terms...

  • How to Begin Visual Basic

    Visual Basic is a programming language developed by Microsoft for writing applications for Microsoft Windows. The currently supported version of Visual Basic...

  • How to Add a Comment Event in Visual Basic

    Adding comments to your Visual Basic code will help others who view the source code understand the logic and flow of your...

  • Basic Computer Terminology

    Over the past few decades computing has grown to become an essential part of the daily lives of most individuals. In fact,...

Related Ads

Featured