Declaring Variables
When programming in Visual Basic, you should declare your variables because this is the default […]
When programming in Visual Basic, you should declare your variables because this is the default […]
When declaring variables, you should be aware of a few naming conventions: A variable’s […]
Visual Basic allows you to initialize variables in the same line that declares them. The […]
Visual Basic recognizes the following five categories of variables : numeric string boolean date object […]
By default, every value with a fractional part is treated as a Double value because […]
The Boolean data type stores True/False values. Boolean variables are, in essence, integers that take […]
Character variables store a single Unicode character in two bytes. In effect, characters are Unsigned […]
InputBox() function is used to prompt the user to input some values. Example : Output […]
Below code snippet will prompt you for a string and when you enter string and […]
Date variables store date values that may include a time part (or not), and they […]
When Option Explicit On or Option Explicit appears in a file, you must explicitly declare […]
Variables in Visual Basic are more than just names or placeholders for values. They’re intelligent […]
What we need is a variable that can hold multiple related values of the same […]
isNumeric function decides whether a variable is number or not. Example :
Some variables don’t change value during the execution of a program. These variables are constants […]
Arrays allow you to store a series of values that have the same data type. […]