visual basic

Text Effects in Visual Basic 2008.. (Reflect)

Submitted by janobe on
In this tutorial I will teach you how to put an effect in the text using Visual Basic 2008. In here, I use the reflected text for the effect. It reflects any kind of text that you will type at the bottom and you can also change its font size. Others may think that reflected text is just easy to do. But, they were wrong. You have to take a closer look at each codes and calculate everything to make it accurate. Let’s begin: Open Visual Basic 2008, create a new Windows Application and drag a PictureBox, a TextBox, a ComboBox and a NumericUpDown.

Byte Converter using VB6.0

Submitted by donbermoy on
Here in this tutorial, we will create a program that convert bits, bytes, kilobytes, megabytes, gigabytes, and terabytes to their corresponding bytes cases. We all know that 1 byte is equal to 8 bits and 1 kilobyte is equal to 1024 bytes. So that is the formula that we will going to use in this tutorial. 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.

Validating a TextBox Using an Error Provider in Visual Basic 2008

Submitted by janobe on
Today, I will teach you how to validate a Textbox using an ErrorProvider in Visual Basic 2008. With this, you will know what are the inputs you are going to put in the textbox and it will notify you whatever errors that you might encounter. Let’s begin: Open Visual Basic 2008 and create a new windows application. Drag the two TextBoxes, a Button and an Error Provider in the Form.

Cashiering and Purchasing System for Ocean Bounties Restaurant

Submitted by donbermoy on
Cashiering and Purchasing System for this Restaurant was developed using Visual Basic 6.0 as frontend and MS SQL Server 2000 as backend. This system was one of the thesis I made for a particular school. This system is unique because this restaurant allows a debt purchase of meals. This system features: - Customer Registration - Sales Transaction - Order Item Transaction - Incoming Item Transaction

Animation: Bouncing Ball in Visual Basic 2008

Submitted by janobe on
In this tutorial I’m going to teach you how to animate a ball by using Visual basic 2008. The feature of the ball is that, it bounces in every side of the Form. With this, you will learn the functions of the bitmap and the graphics object. Let’s begin: Open the Visual Basic 2008 and create a New Windows Application.

How to Create a Simple CPU and RAM Meter in Visual Basic 2008

Submitted by janobe on
In this tutorial I will teach you how to create a simple CPU and RAM meter by using Visual Basic 2008. With this, you will be able to know the usage of your RAM and CPU. And it also calculates the percentage of its performance usage. Let’s begin: Open Visual Basic 2008, create a new Windows Application and drag the Label, ProgressBar, PerformanceCounter and a Timer. Name the two PerformanceCounters, “pcCPU” and the other one is “pcRAM”. Then, name the two Labels into “lblCPU” and “lblRAM”.

LRB Boarding House Management and Billing System

Submitted by donbermoy on
This LRB Boarding House Management and Billing System was developed using VB 6.0 and MS SQL Server 2000 as the database. I made this system when I was a student as a project to students in other schools. This system features: - Boarder Registration - Payments - Additional Charges to Boarders - View List of Boarders - View All Rooms - View Available Rooms - View Occupied Rooms - Room Maintenance -

File Handling : Creating the Logs in Visual Basic 2008

Submitted by janobe on
In this tutorial I will teach you how to create logs in Visual Basic 2008. Logs are very important because it records previous transactions and day to day activities of the system. For instance, in a log in system, you can determine the time and who is the user that had logged in the system. And whenever your system has a problem you can easily determine what was it with the help of logs. So, let’s begin: Open Visual Basic 2008, create a New Windows application , drag a RichTextBox, and a Button in the Form. And it will look like this.