Rolling Dice Program
In this post, I will teach you to create a rolling dice program in visual basic 6. The program will consist of a single dice… Read More »Rolling Dice Program
In this post, I will teach you to create a rolling dice program in visual basic 6. The program will consist of a single dice… Read More »Rolling Dice Program
When you establish connection with a database such as Microsoft Access or SQL through Visual basic 6 form. You must extract a set of records… Read More »VB 6.0 Persistent Recordset
In this article, we will design a menu in VB 6. To create this program, you may require a windows computer with Windows XP or… Read More »VB 6 Design A Menu
Visual Basic 6 allows us to add menu bar to the form. You can add your own menu bar to the form and write code… Read More »VB 6 Adding Menu Bar To Form
A VB 6 form has a title bar and the title of the form can be changed. In this article, we will talk about two… Read More »VB 6 Form Title
Apart from performing mathematical calculations using builtin math functions, the Visual Basic 6 has functions that can handle financial data. You can always write your… Read More »VB 6 Handling Financial Data
Date and time are very important to programming languages. It helps show the date and time, run a timer, show current time or date, even… Read More »VB 6 Date And Time Functions
In this article, you will learn about a Int() function.The int() function will change any double or real number into integer and drop the real… Read More »VB 6 – Int() Function
In this article, you will learn about Log() function. The Log function takes the Logex of a number x. To know the correct log value… Read More »VB 6 – Log() Function
The VB6 random number function is Rnd(). It generates a random number. In the following program we will use this function to generate a random… Read More »VB 6 – Rnd() Function