Tip Bank

DevX - Software Development Resource

Creating a Dialog Box

Question: I’ve been to sites where dialog boxes appear. How can I create one?I also want to ask users for their names, and then to be able to tell how

DevX - Software Development Resource

Appending to a File

Question: How can I append to a file in Java?The file is ASCII. It exists. The program hasrights to the file. I just need to add to the endof the

DevX - Software Development Resource

Creating Applet to Ping IP Address

Question: I would like to create a very simple applet that pings anIP address and returns a message stating whether that IP is alive. Icouldn’t find any straightforward answers to

DevX - Software Development Resource

How do I implement classic algorithms in C?

Question: Where can I find algorithms and data structures, techniques and programs that will better show me how they can be implemented using ANSI C? Other areas include Hashing, Heaps,

DevX - Software Development Resource

Equivalent of void myRoutine in Java?

Question: I know that in order to pass something byreference, you pass an already-created objectand let the subroutine modify the contents ofthat object. Unfortunately, the Integer, String,etc. objects don’t allow