Tip Bank

DevX - Software Development Resource

Add, Remove, or Edit Saved Passwords

The ability of Windows XP to save passwords for Web sites and network resources can be very convenient. Of course, it’s true that anyone with access to your computer can

DevX - Software Development Resource

Clear All Occurences of Extra White Space

This function clears all occurences of extra white space (spaces, tabs, blank lines) and programming comments beginning with ‘;’ in a file and saves the cleaned file as another file.

DevX - Software Development Resource

Recursive Function Finds a Control on a Form

This recursive function finds a control on a form by its name. //written in C#/// &ltsummary&gt///Recursive function to find control on the form by its name/// private Control _co;private Control

DevX - Software Development Resource

Make a Picture’s Background Transparent

If you have images that are supposed to have transparent portions, but have lost the transparency information, you can use Microsoft Word to restore the transparent color. First, paste the

DevX - Software Development Resource

Constrain an HTML Input Box to Uppercase

The easiest way to constrain an HTML input box to uppercase is to use the STYLE attribute inside the INPUT tag. Suppose you have the following code: &ltinput type=”text” name=”big”

DevX - Software Development Resource

Create XMLSchema DataTypes Direct from Java

This tip shows you how to create XMLSchema datatypes direct from Java, using the javax.xml.datatype.* package. In this example you’ll create a Duration object (xs:duration in XMLSchema) and a XMLGregorianCalendar

DevX - Software Development Resource

An Easy Way to Find All Open Forms in VB.NET

It’s really simple to determine whether a form is open?simply use My.Application and My.Forms in .NET: Dim frm As Form For Each frm In My.Application.OpenForms If frm Is My.Forms.TheFormINeed Then