School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!
Welcome to Dream.In.Code
Become an Expert!

Join 306,746 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 2,018 people online right now. Registration is fast and FREE... Join Now!



's Contributions
Below are the tutorials, code snippets, and resources has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Code Snippets
Submitted: July 22, 2009        Views: 777
You have to remember the numbers displayed
Deck of cards in Java by pbl
Submitted: March 8, 2009        Views: 459
These two classes hold a Deck of 52 Cards You get reset/shuffle the deck and pick up a number od cards randomly
Game of Life in Java by pbl
Submitted: October 8, 2009        Views: 443
Done for a DIC Good example of Swing.Timer and how to use JLabels in a GridLayout
Submitted: September 28, 2009        Views: 198
Asked many times in this forum how to make a login form and then show another JFrame when the user input is correct
HourGlass Panel in Java by pbl
Submitted: October 27, 2009        Views: 89
Asked by a customer who wanted an animated HourGlass into a JPanel. I made this for him. As I didn't even charged him for it I guess there are no copyright problem.
Submitted: September 30, 2009        Views: 263
How to write code that can be run as an Application or a JApplet at se smae time
Submitted: April 15, 2008        Views: 404
May be you want the Icon displayed in a JTree. Here is an example (the shortest I could make) showing how to do this.
Submitted: January 31, 2009        Views: 1044
Generates Random Loto Numbers from a range of numbers
Submitted: April 15, 2008        Views: 6130
How to implement a MouseListener over a JLabel
Snake Game in Java by pbl
Submitted: July 27, 2009        Views: 295
A small snake game using JLabels
Sudoku generator in Java by pbl
Submitted: April 12, 2009        Views: 1660
Generates a Sudoku grid of the size passed as parameter. First call the constructor with the size of the region. Then call generate() with a boolean if you want trace or not. Enjoy and thanks DT31
Submitted: April 28, 2008        Views: 9515
A simple Client/Server demo program. The server waits for connection and starts a thread when there is a connection request from a client. The server receives a String from the client and returns it to the client in uppercase.