MySQL Tutorial – Using HAVING clause
Using HAVING clause HAVING clause is somewhat similar to WHERE clause and it is used together with the GROUP BY clause. It was added to SQL to combine with the aggregate functions because the WHERE...
View ArticleMySQL Tutorial – Using the IN function
The IN function can be used to replace the OR condition. It is also used to specify multiple value together with the WHERE clause. The syntax of IN function: SELECT column_name(s) FROM table_name Where...
View ArticleMySQL Tutorial – Using BETWEEN condition
Using BETWEEN condition BETWEEN condition is used to retrieve records with in the given range. The syntax of BETWEEN condition: SELECT column_name(s) FROM table_name Where column_name BETWEEN value1...
View ArticleElectronic Booking System in Visual Basic 6.0
Electronic Booking Check-in Check-out System - It enhances the system to provide faster services in order to increase the business productivity. This system electronically accepts information of the...
View ArticleStudent Information System in Visual Basic 6
Student Information System in Visual Basic 6 Sample Student Information System using Visual Basic 6.0 and MS Access Features: 1. Add, Update, Delete student information 2. Back-up and Restore Database...
View ArticleWater Billing System in Visual Basic 6.0
Water Billing System in Visual Basic 6.0 Features: 1. Client Information 2. Connection/Disconnection Module 3. Create Billing 4. Payment of Bills 5. Service Record Form 6. Statement of Accounts 7....
View ArticleAutomated Student Council Election System in Visual Basic
Automated Student Council Election System in Visual Basic 6.0 Features: 1. Encode Party List 2. Encode Candidates 3. Generate Voting Codes Download: More Information Automated Student Council Election...
View ArticleDictionary Program in Visual Basic 6.0
Dictionary Program in Visual Basic 6.0 Features: 1. Display words based on search query. 2. Display the meaning of selected word. 3. CRUD (Create, Update, Delete) word info and meaning. 4. Capable of...
View ArticleCashiering and Student Account System
Cashiering and Student Account System in Visual Basic 6 Features: 1. Process Payment Payment and Assessment of students. 2. Preview the payment history of students. 3. Real time balance of students. 4....
View ArticleInventory System in Visual Basic 6
System’s Mechanics The following are the mechanics of the system with its corresponding description. Log-in/out Menu. Log-in menu enables the users to access the system depending on the type of account...
View ArticleSchool Management System in Visual Basic 6.0
School Management System The functionality of the system is divided into (5) five major categories (Administrative, Registrar, Cashier, Enrollment and Student Information Modules). The feature/function...
View ArticlePayroll System in Visual Basic 6.0
Payroll System Features of the System Manage Employee – Create, update, and delete employee information. Manage Employee Position – Create, update, and delete employee position information. Manage...
View ArticleParish Record Keeping System in Visual Basic 6.0
Features of the System Parish Record Keeping System Baptismal Records – Record, Update and Print children baptismal information (child name, date of birth, place of birth, parent’s information, and...
View ArticleSpare-parts Monitoring and Inventory Management System in Visual Basic 6.0
Features of the System Spare-parts monitoring and inventory management system Monitoring and Inventory Management System will enable the organization to keep track of the spare parts available and...
View ArticleComputerized Daily Time Record System in Visual Basic 6.0
System Features and Modules: Computerized Daily Time Record Department – Display the list of departments available in your organization, you are also able to create, update and delete records of...
View ArticleGraphical Tools to interact with MySQL
Graphical Tools to interact with MySQL If you’re tired of using the traditional mysql built-in command line tool then this article is just for you. We’ve prepared a list of Graphical Tools used to...
View ArticleWays to Enable/Disable Command Prompt
How to Enable/Disable Command Prompt Command Prompt is a feature of Windows that provides an entry point for typing MS-DOS (Microsoft DiskOperating System) commands and other computer commands. The...
View ArticleControl Panel Applets Command Shortcuts
Windows Control Panel comprises of applets that are used to change the way Windows looks and behaves. It allows the user to change the system settings such as adding and removing of software, managing...
View ArticleManage Start-up Programs in Windows
Manage Start-up Programs in Windows Why should we manage the programs that run automatically when we turn on our computers? The following reason explains why: So many start-up programs may cause your...
View ArticleDrop Database and Table in MySQL
Dropping the Database To delete an entire database, use the DROP DATABASE command. This command will delete the database and the tables inside it. Let’s try some example: Syntax of DROP DATABASE...
View Article