VB6 Tutorial 08: Operators & Expressions
An operator in a programming language is a symbol that tells the compiler or interpreter to perform specific mathematical, relational or logical operation and produce final result.
An operator in a programming language is a symbol that tells the compiler or interpreter to perform specific mathematical, relational or logical operation and produce final result.
This lesson will cover scoping and lifetime of variables in procedures and modules.
Visual Basic is an event driven programming language. Before proceeding to the next chapter, it is very important to have a good concept of event driven programming.
This lesson is designed to get you familiar with data types and their usage. Very important stuff for memory management in larger programs.
This lesson will walk you through building your first Visual Basic 6 (VB6) program.
Before getting into the actual programming work, you need to have a knowledge of VB controls. In this lesson, a very short description has been given about the controls.
This lesson will give a quick tour around the Integrated Development Environment, or IDE.
Visual Basic, derived from the Basic language, is an object based and even-driven programming language from Microsoft. This language is relatively easy to learn.
This will Resize your controls automatically when every time the form is resized. It can also prevent the controls for resizing. You can also use this for custom controls. Put this code on the form_load event: G_P_AdjustFormon Put this code on the form_Resize event G_P_FormResize Finally, place this code in a module: Option Explicit Public Xtwips As Integer,… Read More »
This method uses the insertion sort algorithm to sort a numeric array. This algorithm is one of the simplest available, but there are better algorithms (to be posted on this site shortly) for longer lists. Returns an Array, or vbEmpty if there’s an error e.g., passed array contains elements that can’t be compared to each other, such as… Read More »