devxlogo

Tip Bank

DevX - Software Development Resource

Changing a Layer Through a Link

Question: Can I change the text of my layer through a link? I’ve heard it’s impossible and that I have to change the visibility of the layer and replace it

DevX - Software Development Resource

Performing File Operations With the File Class

You can use the File class (see Tips: “Constructing a File Class” and “Manipulating File Names With the File Class”) to perform operations on files that reside on your operating

DevX - Software Development Resource

Manipulating File Names With the File Class

Java defines a File class (see Tip: “Constructing a File Class”) that you can use to manipulate the file name and perform file-related operations on the underlying file system (see

DevX - Software Development Resource

Constructing a File Class

Java defines a File class that represents a name of a file on your operating system’s file system. You can use the File class to manipulate the file name, which

DevX - Software Development Resource

Printing DHTML (CSS) in Netscape 4.0+

Question: I’ve put together an intranet site that uses JavaScript functions that put together a page. For example, the header section, body section, footer section, sidebar, and so on are

DevX - Software Development Resource

Variable Declaration

Question: I understand that Java variables can be declared public, private, or protected using a similar syntax as C/C++ where the access modifier is placed before the column of variables.