|
1.
Using the IE 5 built-in progress dialog
[^]
A wrapper class for the progress dialog provided by IE 5.
|
Michael Dunn
|
Updated: 6 Feb 2000
Rating: 4.74/5
(28 votes)
|
|
Download sample project - 20K
The progress dialog
It's one of those boring tasks we all hate to do: writing a progress dialog. It ranks right up there with typing
"ListView_SetExtendedListViewStyleEx". And even if you're able to reuse an existing dialog, it might
not look just...
|
|
|
2.
JavaScript For Beginners 2: Cookies
[^]
An introduction to using Cookies in Javascript
|
Tibor Blazko
|
Updated: 15 Mar 2001
Rating: 3.57/5
(11 votes)
|
|
Download example scripts - 1 Kb
Introduction
This article follows the great JavaScript for Beginners
article and hopes to bring its readers to the cruel reality of life by
discussing cookies .The problem I wanted to solve was "automated" access to
http://www.thehungersite.com.
Th...
|
|
|
3.
Stress Testing Your Website
[^]
A simple Java program to test your own website
|
Xiangyang Liu 刘向阳
|
Updated: 14 Jun 2001
Rating: 4.24/5
(31 votes)
|
|
Introduction
So you have built a cool web site with code you wrote or downloaded from great
sites like CodeProject, the next thing you might want to do is testing it: Can
your code handle more than, say 10 concurrent users? Does it have a memory
leak that will eventually lead to crash i...
|
|
|
4.
Internet Explorer Toolbar (Deskband) Tutorial
[^]
A tutorial on Using RBDeskband and CWindowImpl ATL Object Wizards to create an Internet Explorer(IE) Toolbar.
|
Erik Thompson
|
Updated: 21 Aug 2001
Rating: 4.78/5
(158 votes)
|
|
Introduction
Having recieved a number of requests for a tutorial of sorts on developing
Internet Explorer Toolbars with the RBDeskband and CWindowImpl wizards that I
created, I have come up with a simple sample toolbar which can be used as a
reference when dev...
|
|
|
5.
Sorting the Objects in java
[^]
This simple program helps the user how to sort objects
(The Code Project Open License (CPOL))
|
Koundinya
|
Updated: 1 Nov 2001
Rating: 2.68/5
(16 votes)
|
|
Introduction
The following program helps the programer to sort objects .This is mainly for the beginers and i have used some collections classes to sort objects
public class
SortObjects
{
public static void main(String s[])
{
Colle...
|
|
|
6.
String Splitter
[^]
User defined StringTokenizer
|
Koundinya
|
Updated: 1 Nov 2001
Rating: 2.87/5
(20 votes)
|
|
Introduction
I got a problem where NULL values should also act a role
in my program. But when I use StringTokenizer class to split, it eliminates
null values, so I have written my own program that will help me to give null
values.
import ja...
|
|
|
7.
XHTML, from an HTML starting point
[^]
A starting point for people familiar with HTML who want to start using XHTML
|
Paul Watson
|
Updated: 29 Jan 2002
Rating: 4.35/5
(31 votes)
|
|
Summary
This article will help people familiar with HTML to start producing XHTML 1.0 compliant documents. This articles approach is very simple, as is XHTML. However it is this very simplicity, of XHTML, which baffles some web developers and designers.
This article is not an i...
|
|
|
8.
Java Basics - Input and Output
[^]
This tutorial provides any beginner with the basic skills required to start programming in Java.
Languages »
Java »
General
|
John Croucher
|
Updated: 5 Sep 2002
Rating: 3.04/5
(16 votes)
|
|
At the end of this tutorial you should be able to create a basic Java program that requests input from a user, does something with the information and displays the results.
In this tutorial we will be making a program that requests the user’s name, the year they were born and the current year. It...
|
|
|
9.
JNI Basics - 1
[^]
Calling native functions which are written in C or C++ from Java, using JNI.
Languages »
Java »
Beginners
|
Irfan Dawood
|
Updated: 10 Sep 2002
Rating: 4.18/5
(29 votes)
|
|
Introduction
In this tutorial, I will try to explain how to call native functions which are written in C or C++ from Java, using JNI.
What is JNI
JNI is an acronym of Java Native Interface. Using JNI, we can call functions which are written in other languages from Java. Advantages and disadvant...
|
|
|
10.
Grid Layouts
[^]
An introductory article about how to use the 'Grid' Layout in Java.
|
co7eguy
|
Updated: 31 Jan 2003
Rating: 2.11/5
(16 votes)
|
|
Introduction
This article will demonstrate how to use the 'Grid' Layout in Java. The Grid Layout Managers assigns components to a grid of cells. Each cell in the grid is the same size and the components grow to fill the available area. This Layout Manager is good for laying out containers tha...
|