Visual Basic .NET

Adding a Button Control in Windows Form

Submitted by joken on
In creating Visual Basic.Net application, one of the most common control used is a Button. Using Visual Basic, it is important to use a button control, because Button is used to initiate actions, usually by clicking on it. Using visual Basic.Net, there are many ways on how to add a button tool to a form. In our case, we’re not going to double click the button tool in the toolbox to add the control to the form.

KCC-TC Automated Daily Time Record

Submitted by joken on
This is a capstone project created using Visual Basic 2008 with MS Access support for database. This system can be used as a tool for monitoring the daily time record of all students in a technological center even the employees of the said school. The system can work with the used of Barcode scanner or manual encoding of log in id number. It has also an administrator side where you can add a new

Portable MySQL Builder version 1.0.1

Submitted by joken on
The Portable MySQL Builder application is created using Visual Basic 2008 express edition and MySQL Database for database support. This application allows to create a database without using command prompt, and you can also create your MySQL database tables using this application, view the structure of your MySQL database and it has a MySQL Query Browser feature.

Displaying and Dropping the MySQL Database Tables Structures using Visual Basic.Net

Submitted by joken on
This tutorial is a continuation of our our previous topic called “Creating MySQL Database tables using Visual Basic. Net”. This time, we're going to focus on displaying and dropping of MySQL Database Tables using Visual Basic.Net. In this application, we need to add two buttons and a datagridview.

Creating MySQL Database tables using Visual Basic. Net

Submitted by joken on
In this tutorial, I’m going to show you how to create a MySQL database tables dynamically in a simple way. To start in this lesson, we need to understand first the concept of creating a MySQL database table. The creation of table command requires the following: Name of the table, Names of fields and Definitions for each field.

Simple Query Builder using Visual Basic.Net

Submitted by joken on
In this tutorial, It covers how to create a simple MySQL query builder using Visual basic. This application allows user to select MySQL database and when the “use” button is clicked, the program will then load all the tables existing from a specific database. And every time the user select the name of a table it will generate a query and display the result on the datagridview provided.

How to Create and Drop MySQL Database Using Visual Basic.Net

Submitted by joken on
In this tutorial, it covers the basics of creating and dropping of MySQL Database with visual Basic. MySQL is a leading open source database management system, multi user and a multithreaded database management system. MySQL database is available on most important OS platforms. It is one part of the very popular LAMP platform. Linux, Apache, MySQL, MySQL, PHP. But in my case, I am using XAMPP. To begin in this course, open visual basic and create a new project and name it as “ManageDb”.

TTJ- Inventory System

Submitted by joken on
This TTJ- Inventory System is created using Visual Basic 2008 and supported with Microsoft access for database and I use crystal report for reporting and barcode generator as a third party for this system. And this system can monitor all kinds of assets registered on the system, the system can track all the transactions especially the In and Out of stocks, generate reports such as: List of all

Simple Alarm Clock using Visual Basic.Net

Submitted by joken on
In this tutorial, we're going to create a simple alarm clock. This alarm clock can be used to wake a person in at a specific time. To start with this application, open visual basic and create a new project and name it as “Alarm Clock”. The application when finished, it looks like as shown below. Next, add five labels,and name the label1 as “lblcurtime” and label2 as “lblstatus” then,set the text property of the other label as “Current Time”, “Alarm Time” and “Message”.