What's Here?
- Members: 307,125
- Replies: 841,825
- Topics: 140,679
- Snippets: 4,468
- Tutorials: 1,165
- Total Online: 2,061
- Members: 129
- Guests: 1,932
|
'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
in (Last Comment: , Views: 11,341)
in (Last Comment: , Views: 11,061)
in (Last Comment: , Views: 10,172)
in (Last Comment: , Views: 22,051)
in (Last Comment: , Views: 14,040)
in (Last Comment: , Views: 7,729)
in (Last Comment: , Views: 7,123)
|
|
Code Snippets
|
 |
|
|
Submitted: July 16, 2007
Views: 5082
Use this code to create an alarm or a task manager.
|
|
|
 |
|
|
Submitted: July 11, 2007
Views: 15396
this code uses PlainDocument type to allow only number input in a JTextField. This way you can define your own patterns and more
|
|
|
 |
|
|
Submitted: July 19, 2007
Views: 3791
Want to resize an array, apppend an item, insert an item, delete some offsets? This class will perform all that for you!
|
|
|
 |
|
|
Submitted: January 13, 2007
Views: 13919
Use this function to change the screen resolution.
|
|
|
 |
|
|
Submitted: August 3, 2007
Views: 1980
this code shows you how to close a JDialog in Java using the Escape key.
|
|
|
 |
|
|
Submitted: August 15, 2007
Views: 1075
how to make a number have as many decimals as you want, like 4.42000 and so on.
|
|
|
 |
|
|
Submitted: July 10, 2007
Views: 6457
Convert a double to a currency. Example: 0,4 will become 0,40, and so on.
|
|
|
 |
|
|
Submitted: July 10, 2007
Views: 11863
how to convert from Image to BufferedImage, useful for image editing.
|
|
|
 |
|
|
Submitted: December 28, 2006
Views: 8377
These functions will detect if a string is alpha, or if a string is alphanumeric.
|
|
|
 |
|
|
Submitted: October 29, 2008
Views: 463
This object uses the Java2D API to generate a graph with many customizable parameters. It is used like any Swing component. The parameters can be changed dynamically.
|
|
|
 |
|
|
Submitted: July 10, 2007
Views: 1933
i wanted to make my own IM client, this code can connect you to the server (you will see the popup in the corner of the screen)!
|
|
|
 |
|
|
Submitted: December 18, 2006
Views: 15528
These 6 functions are used to convert a type of number to another type. The functions are:
bin2dec: Binary -> Decimal
bin2hex: Binary -> Hex
dec2bin: Decimal ->Binary
dec2hex: Decimal -> Hex
hex2bin: Hex -> Binary
hex2dec: Hex -> Decimal
|
|
|
 |
|
|
Submitted: October 21, 2006
Views: 4235
The FtpRemoveDirectory function in wininet.dll is not recursive, meaning it won't work if the directory is not empty. Just do not declare this function, and use this user-defined function instead :)
|
|
|
 |
|
|
Submitted: October 22, 2007
Views: 401
When you have a SQL statement to search for some rows in a table, you sometimes need a search form to perform a search. Then, by the click of a button, a single search parameter changes... Here's a class used as a filter to search for whatever you like!
|
|
|
 |
|
|
Submitted: July 28, 2007
Views: 563
Here's the REAL way to set the tab focus order in a JFrame (decide the order the components are focused with the TAB key)
|
|
|
 |
|
|
Submitted: August 1, 2006
Views: 4918
A ajax script that shows and updates the server's date and time.
|
|
|
 |
|
|
Submitted: April 9, 2007
Views: 4150
This class generates timestamps (the number of seconds since Jan 1st, 1970) and can fetch all elements from these timestamps. The timestamp is exactly the same as PHP's time() function. Really a calendar class itself, it's a must! With its static static variables and its method, all time operations can be done with the Timestamp class!
|
|
|
 |
|
|
Submitted: July 10, 2007
Views: 828
the JTable control is like Excel, but what if we want a list view to display a list of items? We need to apply many instructions to format it.
|
|
|
 |
|
|
Submitted: May 31, 2007
Views: 1793
This code wraps a strings in multiple lines and allows you to specify how many characters on each line. It does not cut in the middle of a word, well it wraps it the real way!
|
|
|
| |