Compute General Weighted Average (GWA) using VB6

Submitted by donbermoy on
The General Weighted Average is a representation (often numerical) of the overall scholastic standing of students used for evaluation. GWA is based on the grades in all subjects taken at a particular level including subjects taken outside of the curriculum. The Philippines has varied university grading systems.

Android SCRUD (Search,Create,Update,Delete) in a Remote MySQL Database

Submitted by hob2006 on
The beauty of this simple little program is not in its novelty value, but that it can be added to any other program to add functionality and make a point of difference. This is my updated demo program on how to SCRUD (Search, Add, Edit, and Delete) in a Remote MySQL database.Using a direct connection via access point/wifi. There is no webservices/php file created for this demo apps.

Enrollment and Grading System for SPRCNHS

Submitted by Hutzy on
(NOTE: We do simple codings as long as we can) >>The size of this system is over 50mb that is why we compile it and remove some files to make it lower size >>There is a notepad for the SOURCECODE for how to > add, edit, delete > search > keypress > adodb connection > print out refresh * Enrollment System (Feautures) > Add, edit, delete students > Search like (fb, google) > Picture (using webcam to

Text-To-Speech Application in VB6

Submitted by donbermoy on
Aside from my Text-To-Speech Application in Android and VB6, I also created another tutorial in VB6 that converts an inputted text into a speech or voice. We will just only call the Speech API namespace for this program and with the use of Spvoice object. The SpVoice object brings the text-to-speech (TTS) engine capabilities to applications using SAPI automation. An application can create numerous SpVoice objects, each independent of and capable of interacting with the others. Now, let's start this tutorial! 1.

Change Table Row Background Color When Qty Below 10 Using PHP/MySQL

Submitted by argie on
This tutorial will teach you on how to change table row background color when the qty is bellow 10. I use 10 as a default minimum value of qty, you can change it to any number if you want. This tutorial is helpful for thus creating a system that involves products. This is useful because it provides a legend or a prom the certain product is bellow the minimum qty. The admin can easily identify which product need to be order by the use of this feature.

Advanced Animation with a Deeper Understanding of VB.NET Class

Submitted by donbermoy on
Classes are essential to VB.NET programs. They are the building blocks of our programs. A Class is a reference type—it is allocated on the managed heap. It can have Functions and Subs, and also data members—this includes fields. It is a container for data and code. The data within the class can be accessed with properties. The code is referred to as methods. The best thing about OOP is that it

Save XML file from database record using PHP and MySQL

Submitted by ronard on
Hi to all sourcecodesterian, In last tutorial, we preview the XML tags to the browser. Now we are going to save the XML file to the directory which is "xmlBackup/". We make it in just clicking the Save XML link below the table. Then the script will save it directly to the said path above. How it will help you guys. Thank you for reading... Happy codings...

PHP RegEx: Meta Character class

Submitted by ronard on
We already seen the caret(^) as match the the beginning of string and (\z) match at the end of string that what they do. Now we are going to look with the others with beggining of bracket []. These Meta character are specifying a character class. What does the character class? This is a set of character that you want to match the string. They can listed individually like [abcdf] or a range [a-f]