A loop is a block of code that enables you to repeat the same set of statements or commands over and over again; the actual number of repetitions may be dependent on a number you specify. The while loop The…
Enable/Disable Task Manager using Group Policy Editor
Enable/Disable Task Manager using Group Policy Editor In this tutorial, we are going to learn how to enable/disable Windows Task Manager using Group Policy Editor (gpedit.msc). Group Policy Editor – This snap-in allows you to edit Group Policy Objects which…
Enable/Disable Registry Editor using Group Policy Editor
Enable/Disable Registry Editor using Group Policy Editor In this tutorial, we are going to learn how to enable/disable Registry Editor using Group Policy Editor (gpedit.msc). Group Policy Editor – This snap-in allows you to edit Group Policy Objects which can…
Enable/Disable administrator account in Windows Vista/7
Enable/Disable administrator account in Windows Vista/7 In Windows Vista/7 the administrator account by default is disabled. In this tutorial, we are going to learn how to enable/disable the administrator account in Windows Vista/7. Here are the steps: 1. Run the…
Automated Class Scheduling System in Visual Basic
This is a sample of an Automated Class Scheduling System developed in Visual Basic and MS Access. Download the source code below. System’s Mechanics The following are the mechanics of the system with its corresponding description. Log-in/out Menu – enables…
How to Manage Menus in Drupal
Manage Menus in Drupal Menus are a collection of links used to navigate a website. The Menu module provides an interface to control and customize the powerful menu system that comes with Drupal.
Computerized Library System in Visual Basic 6.0
Computerized Library System using Visual Basic 6.0 as front-end and MS Access as the back-end The system would provide basic set of features to add/update student’s information, add/update books information, search for books and manage check-in/check-out processes. System’s Mechanics: The…
PHP if…else…if statement
PHP if…else…if statement if…elseif….else statement – use this statement to select one of several blocks of code to be executed. The if…elseif….else statement This statement is used to select one of several blocks of code to be executed. The if..else…
MySQL Tutorial – MySQL UPDATE Command
MySQL Tutorial – MySQL UPDATE Command This lesson will teach us how to update our records in the database. The UPDATE command is used to update records in the table. Here is the general form of UPDATE command: UPDATE table_name…
PHP if…else statement
PHP if…else statement if (…else) statement – use this statement if you want to execute a set of code when a condition is true (and another if the condition is not true). The if…else Statement An if statement that includes…