devxlogo

Tip Bank

Sort and Display Data Stored in Arrays

Question: How do I sort columns with their corresponding rows of information and then add data? I would like to use the data in a Web page. Answer: If you

Access Browser History

Question: How does the browser history work? Is it possible to take out a link in the history? For example, I have a page with a redirect. The redirect works

Programmatically Control and Interact With IE

Question: How can I interact with a running version of Internet Explorer or Netscape? When I say interact, I mean handling or monitoring browser events such as right click or

Arrange Conditions Properly

You can optimize the performance of your “JavaScript” code by properlyarranging the conditions in the “if” statement. If you have severalconditions to be tested together, and you know that one

A Guideline To JDBC Drivers

Use the following as a guideline through the maze of JDBC drivers. Type1 Also known as JDBC-ODBC bridge which provides JDBC access to most ODBC drivers. The primary drawback of

Create Nested Folders In One Call

Suppose you need to create a tree of directories, all at once, in code. For example, you could create the tree C:1stDir2ndDir3rdDir4thDir with one call simply by feeding that path,

The Casts Of Java

A cast is a conversion of data type on a variable. Casts can occur when you explicitly request them as in: Frame f = new Frame; Object o = ((Object)Frame);