visual basic

Fibonacci Sequence in All Loops using VB6

Submitted by donbermoy on
We all know that Fibonacci Sequence are set of whole numbers that starts with one or zero that each number is the sum of the two preceding numbers. In this tutorial, we will create a program that can compute the fibonacci sequence of an inputted number in all kinds of looping in vb6.0. Now, let's start this tutorial! 1. Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.

File Comparison Tool in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a file comparison tool in Visual Basic. Pseudo: First the user selects file #1. Then file #2. Stats are accumulated for each file. Stats are drawn on to the form. Design: For the form, we are simply going to use two listboxes (listbox1 and listbox2) to hold the stats and 'button1' with the text of 'Begin' to start the comparison process. File Selection: So now we create an OpenFileDialog to allow the user to select a file.

Age Identifier with Zodiac Sign

Submitted by janobe on
Today, I will teach you how to create an age identifier with a zodiac sign included in Visual Basic 2008. I made this for you to be able to identify what is your age with its corresponding zodiac sign. You don’t have to calculate anymore what will be your age in the future and you don’t need to search in the internet what is your zodiac sign if you don’t have any idea what is it.

Flowershop Management and Information System

Submitted by donbermoy on
This is a Flowershop Management and Information System that has the capabilities of that a sales and inventory of flower products. This system was programmed through the use of Visual Basic 6.0 and MS SQL Server 2000. This features to have purchasing transaction of flower products for cashiering, flower item entry for inputting flower information, stockin for inputting the quantity of a specific

Sealines Ticketing System

Submitted by donbermoy on
This is a project made by the 3rd year BSCpE students in their computer programming 3 subject entitled Sealines Ticketing System. It features deck information for your cottage, route information with the locations and can determine either one way or round trip, vessel information for the information of ships, passengers information to save records of passengers, creating account in the system, and

Sorting: Ascending and Descending Order in VB6

Submitted by donbermoy on
In this article, we will create a program that can sort values into ascending or descending order in numbers in visual basic 6.0. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2. Next, add 2 Buttons named Command1 and labeled it as "Asc" for ascending order and Command2 and labeled it as "Desc" for descending order.

Barcode-Based Class Attendance Monitoring System

Submitted by donbermoy on
This is one of the capstone projects that I made for students in a particular school. This is a complete Class Attendance Monitoring System that is integrated by a Barcode to easily swipe ID's. Programming Language: VB 6.0 Database: MS Access Features of the System: - Students Information - Subject Information - Course Information - School Year Information - Login Students using Barcode - Record

Multi-Threaded Applications in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a multi-threaded application in Visual Basic. Design: There really is no design needed for this application, although if you wanted to, you can add a button. What Is a Thread? A thread is the part of your .NET program which runs everything else, your UI, your functions and your classes. Without a thread, your program would not be able to run. Why Multiple Threads? Once a thread has a lot of processing to do, problems begin to arrise.