File management system is a file system that is used to organize and keep track of files. Users need not browse through network folder but instead are given instant result, and are provided a system where files can be accessed…
Programming
Data Types in Visual Basic 6.0
Data type is a storage format that can contain range of values. A data type in simplest form is to determine what kind of data it can store. Just like every other programming languages, Visual Basic 6 has its own…
Science Learning Games using Visual Basic 6
The Science Learning Games was developed to enhance the interest of students in their science subject and to give science teacher/s another method of teaching. The researchers used Waterfall Model in developing the Science game. In this methodology, the software…
HTML Page Structure
HTML Page Structure This lesson will discuss about the basic structure of a HTML document. Below is an example of simple HTML page. <html> <head> <title>This is my HTML document</title> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p>…
Java reserved words
In computer programming, reserved words are those words that are already used by the syntax of that programming language; it can’t be used as identifiers (e.g., name of variable, function name, methods and classes). Java has its own reserved words. The…
Visual Basic 6 IDE (Integrated Development Environment)
Before I show you the IDE of Visual Basic 6 let us first define what IDE (Integrated Development Environment) is. (Integrated Development Environment) is a term used in programming that facilitates application development. It is a GUI based application that…
HTML Tags and Elements
HTML Tags and HTML Elements HTML Tags and HTML elements they are commonly defined as same thing, but actually they’re not. HTML Tags are surrounded with brackets (<) (>) and in between those bracket is what we call keywords. The…
Introduction to C#
Getting Started with C# C# (pronounced as C Sharp) is one of the programming language developed by Microsoft that is implemented in .Net Framework so therefore you must install the .Net Framework on your unit to run the applications written…
Introduction to Visual Basic .Net
Introduction to Visual Basic .Net Microsoft Visual Basic .Net is a high level programming language used to create Graphical User Interface application (GUI) intended to run on Microsoft Operating Systems alongside with its integrated development environment (IDE). VB.Net is implemented…
Introduction to Java Programming
Introduction to Java Programming Before we begin with our lesson proper, let us discuss first a brief overview of Java Programming Language. Java was developed by James Gosling and his team at Sun Microsystems in 1991 and introduced to the…