database

Login using a Text File Database in VB6

Submitted by donbermoy on
In this tutorial, we will going to make a program that has a text file database which will be going to use as our database of the program. 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 only one Button named cmdOK and labeled it as "OK".

Navigate Record In the DataGridView Control (Count the records, First and Last Buttons)

Submitted by janobe on
This is the continuation of my previous tutorial which is the Navigate Record In the DataGridView Control. This time I’m going to add the last and first buttons and at the same time I’m going to add the counting of how many times the displayed records change in the DataGridView.

Navigate Record In the DataGridView Control

Submitted by janobe on
In this tutorial I will teach you how to navigate records in DatagridView using Visual Basic 2008 and MySQL Database. This will show you that you can limit your displayed records in the Datagridview. And there’s no need for you to scroll down to it whenever you have plenty of records. All you have to do is to click next and previous buttons.

Creating a Report in Student Registration Using Crystal Reports Part 3

Submitted by janobe on
This is the continuation of my tutorial. This time I will show you how to put a Crystal Report in a Windows Form and retrieving the records from the database. Let’s begin: First, open the file of Student Registration in Visual Studio 2008. Add a new file which is a Windows Form.

PHP/MySQLi Creating a Forum - Part 1 - Database and Creating Threads

Submitted by Yorkiebar on
Introduction: This tutorial will be starting my series of creating a forum in PHP/MySQLi/HTML. As this is the first part, we will be; Creating the database. Making a create thread page. Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Also, this will not be covering creating users, or styling the pages.

Connecting MySQL Database and Visual Basic 2008 Using a Class

Submitted by janobe on
In this tutorial I will teach you how to use a class in connecting the MySQL Database and Visual Basic 2008. What is a class? A Class is a group of object that defines its functionality as a set of properties and the methods that will respond to. And it is also a container of your data and code. Wherein you can limit the data that you’re accessing.

AutoComplete TextBox in a DataGridView

Submitted by janobe on
In this tutorial I will teach you how to Auto Complete a TextBox inside the DataGridView in the Visual Basic 2008 and MySQL Database. Others are used to store the list of items in the ComboBox. So, for a change, I used a TextBox because it’s easy to use and you don’t have to drop down in searching for the items that you needed. Just simply type the initial letter of the items that you’re going to search.