Visual Basic

AutoNumber in a TextBox

Submitted by janobe on
An AutoNumber is very useful in Programming Languages. Why? It’s because, their's no need for you to set the unique Id and the program will automatically set it for you. When you are saving records in the database, the records will be organized and it won’t be redundant because they have their own unique Id by using this AutoNumber. So , in this tutorial I will create an AutoNumber in a TextBox.

Deleting Multiple Data in MySQL Database Using Visual Basic 2008

Submitted by janobe on
In my last tutorial I teach you how to save multiple data in MySQL database. This time, I will teach you how to delete multiple data with a selector which is a CheckBox. With this, you can choose whatever data you want to delete and it is very useful. Now lets begin: I already created the MySQL Database in my first tutorial.

Simple AutoComplete ComboBox in a DataGridView

Submitted by janobe on
Today I will show you how to create an AutoComplete ComboBox in the DataGridView, add the ComboBox on the DataGridView and add a list of items in the ComboBox programmatically. Let’s begin: Open the Visual Basic 2008, create a project and set your Form just like this. Main Form Then, double click the Form and create a code for adding and putting a list of items in the Comb

Storing Data and Autocomplete ComboBox

Submitted by janobe on
For today, I will teach you how to create an Autocomplete ComboBox and Store data in MS Access Database. In doing the Autocomplete ComboBox there’s no need for you to dropdown the ComboBox every time you search for your list. All you have to do is type the initial letter in the ComboBox that you’re going to search and the records will automatically dropdown. And that’s how easy it is. So, let’s begin. 1. Open Visual Basic 2008 2.

Student's Registration Form with AutoIncrement/AutoNumber in a TextBox

Submitted by janobe on
In this tutorial I will create a Student's Registration Form. I will show you how to use a Module in setting up your codes and minimize bunch of codes in your Student's Registration Form. And at the same time, it AutoIncrement a TextBox and generates the AutoNumber of the Student's Id.

Login User and User Registration Form in Visual Basic 2008 and MySQL Database

Submitted by janobe on
In this tutorial I will show you how to create a Login User and User Registration Form using Visual Basic 2008 and MySQL Database. In this features, you can Register and Login what you’ve Registered in the User Registration Form. Login Form is very Important in making a System because this serves as a Protection in your System from Invaders.

Clearing of Multiple Textboxes in just a Click Using Visual Basic 2008

Submitted by janobe on
If you are a beginner in Programming Languages and you’re using Visual Basic, this tutorial will help you minimize your code and lessen your work. This procedure is to clear all the data in the TextBoxes in a certain Form, for example, when you create a “User Entry” Form.