visual basic 2008

Drag/Drop and Copy Control in a TreeView Using Visual Basic 2008

Submitted by janobe on
In this tutorial, I will show you how to drag/drop and copy in a Treeview by using Visual Basic 2008. I made this to show you not only a PictureBox or a TextBox can be drag and drop but also a treeview. Let’s begin: Open Visual Basic 2008, create a new Windows Application and drag the two Treeview in the Form. Name it “trview_left” and “trview_right”. first form After that, click the two Treeviews and go to the properties.

Date Calculator in Visual Basic 2008

Submitted by janobe on
Today I’m going to show you how to create a simple Date Calculator in Visual Basic 2008.With this, it will help you know the dates before and after the present date. For instance, you want to jump into seven days after the present date, the date calculator will automatically calculate it. And you don’t have to count the days anymore. So lets begin: Open Visual Basic 2008, create a new Windows Application and do the Form just like this.

Data entry and Autocomplete with Multiple Columns

Submitted by janobe on
In this tutorial I will show you how to save and autocomplete a textbox with multiple columns in Visual Basic 2008 and MS Access Database. As I expand my knowledge about autocomplete I discovered that you can put multiple columns/fields on it. So, it depends on you or your query, on how many columns/fields you want to exist. Let's begin: 1.Open Visual Basic 2008, create a project and do the Form just like this.

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.