Forum: Java Oct 12th, 2009 |
| Replies: 2 Views: 169 |
Forum: HTML and CSS Jul 6th, 2009 |
| Replies: 2 Views: 486 Here's how you'd create a list:
<select name="jlist" onlick="function()" size="3">
<option value="A">Item A</option>
<option value="B">Item B</option>
<option value="C">Item C</option>... |
Forum: Java Jul 21st, 2008 |
| Replies: 11 Views: 2,409 Here's a good project for you to work on, a spell checker. |
Forum: Java Feb 27th, 2008 |
| Replies: 2 Views: 1,298 Create your own custom TableCellRenderer, then set the background color of whatever the component is that you're returning for rendering.
Component c = whatever your component is
(rowIndex %2 ==... |
Forum: Java Jan 31st, 2008 |
| Replies: 3 Views: 6,069 This is usually the first site I point people to when they want to make a java music player.
http://www.javazoom.net/index.shtml |
Forum: Game Development Jan 18th, 2008 |
| Replies: 1 Views: 1,578 Look at the A* (a-star) algorithm. It's commonly used for path-finding.
Here's the article that myself and a lot of others I know have used to learn A* path-finding.... |
Forum: Java Jan 4th, 2008 |
| Replies: 5 Views: 665 Actually, this should all be done in 1 thread. I'm guessing you have multiple objects on screen that you want to appear to move at the same time? You would update the positions of all the objects,... |
Forum: Game Development Aug 13th, 2007 |
| Replies: 20 Views: 7,611 I like 3D Studio Max best, my friend prefers Maya. It basically comes down to which package we've invested our time in learning. Pretty much most packages are capable of the same things. I know a... |
Forum: Java Jul 3rd, 2007 |
| Replies: 33 Views: 33,355 Sorry piyali, I only understand English grammar. Since nobody is aware of Google, I decided to be a nice guy and find some resources for all of you.
... |
Forum: Game Development Dec 30th, 2006 |
| Replies: 15 Views: 5,163 NT4? IE2? How old is your computer?
If you just want to get your idea out and not worry about all the picky details of coding an engine, take a look at darkbasic:... |
Forum: Storage Dec 1st, 2006 |
| Replies: 1 Views: 1,256 It could just need defragged, but if this is a fresh drive then those websites just might be right. You could've bought a faulty drive. Go to the manufacturer's website and see if they have a... |
Forum: Java Aug 11th, 2006 |
| Replies: 14 Views: 2,563 write a chat program, that's something nobody else is doing! |
Forum: PHP Apr 13th, 2005 |
| Replies: 3 Views: 2,555 I came across a very good one the other day on sourceforge called Geshi.
http://qbnz.com/highlighter/ |
Forum: Java Oct 12th, 2004 |
| Replies: 1 Views: 7,312 how is the table data represented? Is it from a Vector? To make things simple, you could just save the Vector by use of serialization. When you change the table's data and/or column headers, you have... |