Submit Your Site To The Web's Top 50 Search Engines for Free!       ExactSeek: Relevant Web Search

Visitors

Flag Counter

Total Pageviews

Error Image

JAVA FlowLayout

The FlowLayout is the simplest layout manager. By default, it puts all the components into a row in the order they are added to the container from left-to-right. If the row meets the end of the container then a new row is started beneath.

Friday, March 29, 2013

Functions and Procedures in Java

As with any other programming language Java also has useful functions and procedures to facilitate and mengoptmalkan program.  1. ProceduresThe procedure is a collection of expressions of algorithms useful to run a specific process. The procedure is widely known from machine language to a high level language (Query).In the Java language procedure usually begins with the word "void". And most applications run through the procedur...

Tuesday, February 19, 2013

Introduction to CSS

Used to facilitate in designing web-based script. HTML can be inserted in the script. Facilitate the setting web page. Menghemt script. Here's a simple example of the use of scripts on <body>...

Array in C, C++ and C#

1. What is an Array? An array is a collection of same type of elements which are sheltered under a common name. An array can be visualised as a row in a table, whose each successive block can be thought of as memory bytes containing one element. Look at the figure below : An Array of four elements, start from Index-0 to Index-3. 2. How to Define an Array? 1. C and C++ When declaring a regular array of local scope (within a function, for example), if we do not specify otherwise, its elements will not be initialized to any value by default,...

How to Apply a GCC Patch on Windows 7

loading
Released by the Free Software Foundation, gcc is a *nix-based C compiler usually operated via the command line. It often comes distributed with a *nix installation, so if you are running Unix or a Linux variant you likely have it on your system. The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, Ada, and Go, as well as libraries for these languages (libstdc++, libgcj,...). GCC was originally written as the compiler for the GNU operating system. The GNU system was developed to be 100% free software, free in...
loading