Forum: Java Jan 3rd, 2009 |
| Replies: 6 Views: 606 Yah I was just curious. I already got the SCJA certification, and I wanted to know where I fall in the pool of SCJA certified people (relative to everyone's age). But I guess Sun doesnt publishish... |
Forum: Java Jan 2nd, 2009 |
| Replies: 6 Views: 606 Is it documented?
Or have you heard anything?
just curious...
thanks :) |
Forum: Java Aug 29th, 2008 |
| Replies: 2 Views: 1,070 I have this code:
try
{
robot = new Robot();
robot.mouseMove(0,900);
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
... |
Forum: Java Aug 29th, 2008 |
| Replies: 1 Views: 2,133 I need to open a .txt file from a website. I tried this code:
int len = 0;
FileReader fr = new FileReader("http://www.cinndev.com/testFile.txt");
BufferedReader... |
Forum: Website Reviews Aug 2nd, 2008 |
| Replies: 0 Views: 483 I've been working on a pet project that involves collecting user-generated cell reception data and plotting it on a map. The data points are currently available only for TMobile, as that is the... |
Forum: PHP Dec 25th, 2007 |
| Replies: 3 Views: 2,823 Thanks for your help! There is no database for me to use (I'm using a free web host).
Also, I'm not getting any error message. Instead, it is just not deleting anything from the file. I will try... |
Forum: PHP Dec 24th, 2007 |
| Replies: 3 Views: 2,823 Hi,
I'm trying to fully automate my website, and I'm trying to delete a line from a file that matches the line in a given String.
For example, I have a txt file named toApprove.txt containing a... |
Forum: Java Aug 21st, 2007 |
| Replies: 15 Views: 2,702 Actually, the game is played like this:
*The computer lights up 1 button.
*All buttons go dark
*The player clicks the button the computer lit
*The computer re-lights the original button, and then... |
Forum: Java Aug 21st, 2007 |
| Replies: 15 Views: 2,702 The first time, there is only one blink in the sequence. The next time, there are two blinks... and so on.
Only the first blink works correctly |
Forum: Java Aug 21st, 2007 |
| Replies: 15 Views: 2,702 I tried that, but it did not work. The odd thing is that it works on the first round... but not any of the others.
Thanks for your help! |
Forum: Java Aug 21st, 2007 |
| Replies: 15 Views: 2,702 Thanks, but I'm pretty sure that is not the problem. I think the problem has to do with the JFrame or JButtons not updating... Thanks! |
Forum: Java Aug 21st, 2007 |
| Replies: 15 Views: 2,702 Hi,
I am trying to create a simon-says type game, where there are four icons of different colors. One icon lights up. The user clicks it. Next, a new icon lights up. The user clicks the... |
Forum: Java Jun 27th, 2007 |
| Replies: 12 Views: 8,335 I don't know how I missed that :-O
Sorry!!! :)
But thanks for helping because it worked! |
Forum: Java Jun 25th, 2007 |
| Replies: 12 Views: 8,335 Ahh... now this makes sense :) Thank you.
I want to use pixel locations because my next project is a game where I draw images and they get moved by the keyboard. Therefore, I think it is easier... |
Forum: Java Jun 25th, 2007 |
| Replies: 12 Views: 8,335 Those do not use pixel locations. They simply use a grid that the user defines. I need to use pixel locations. |
Forum: Java Jun 25th, 2007 |
| Replies: 12 Views: 8,335 And why not use a NullLayout? It's an official Java class, so what is wrong with it? Is it just personal preference?
Also, I have seen many, many, many projects/games use this style.
What... |
Forum: Java Jun 24th, 2007 |
| Replies: 12 Views: 8,335 I want to use setBounds, ao what layout should I use? SetBounds doesn't seem to work with a FlowLayout.
Thanks! |
Forum: Java Jun 23rd, 2007 |
| Replies: 12 Views: 8,335 Hi,
I am making tic tac toe, and I basically have it all working, except the GUI has a few bugs. Right now, I am not using a layout. I am using "setBounds" instead.
When a player wins, an image... |
Forum: Java Jan 24th, 2006 |
| Replies: 18 Views: 9,149 I'll help you with your program, but you need to show some effort! At least create the GUI and TRY to send commands to command prompt. Then I'll be glad to help. |
Forum: Java Dec 23rd, 2005 |
| Replies: 9 Views: 2,210 Am I doing something wrong or have you guys just not seen this thread? |
Forum: Website Reviews Dec 21st, 2005 |
| Replies: 4 Views: 1,476 Hi,
Would you mind reviewing cinnamonresearchanddevelopment.com? Do you like the layout/logos? Thanks. |
Forum: Website Reviews Dec 13th, 2005 |
| Replies: 2 Views: 1,452 |
Forum: Website Reviews Dec 10th, 2005 |
| Replies: 1 Views: 1,183 Will someone please review them? |
Forum: Java Dec 10th, 2005 |
| Replies: 9 Views: 2,210 Hi Guys,
Sorry I haven't gotten back to you sooner. OK - I used the println function to narrow down the problem. It seems like in the process client/server connections the program freezes. The... |
Forum: Java Dec 4th, 2005 |
| Replies: 9 Views: 2,210 Hi,
It seems like it still doesn't work. All the buttons somehow become disabled after I click connect and they both connect.
Any suggestions? Thanks. |
Forum: Java Dec 4th, 2005 |
| Replies: 9 Views: 2,210 Sorry I didn't specify the question and thank you very much for helping me.
The reason it didn't work is because the default value says the server is selected, but my server variable says... |
Forum: Java Dec 3rd, 2005 |
| Replies: 9 Views: 2,210 Can someone PLEASE help?
Thanks. |
Forum: Website Reviews Dec 1st, 2005 |
| Replies: 1 Views: 1,183 Here are my sites:
http://www.cinnamonresearchanddevelopment.com
http://www.anthroeducation.com
Thanks! |
Forum: Java Nov 28th, 2005 |
| Replies: 7 Views: 6,003 Also, make sure you added the actionlistener to the component. |
Forum: Java Nov 27th, 2005 |
| Replies: 7 Views: 6,003 In the action performed method, include all of your current code inside of an if statement that checks which button was clicked.
Example:
if(e.getSource==<name of button>)
{
//CODE GOES HERE.
} |
Forum: Java Nov 26th, 2005 |
| Replies: 9 Views: 2,210 Hi Everyone,
I'm trying to create an instant messaging program, but for some reason the client and server won't connect. My code is below. Thanks in advanced for helping me.
By the way, the... |
Forum: Java Nov 26th, 2005 |
| Replies: 5 Views: 1,505 Whoa!!! That's awesome! How did you do that? |
Forum: Java Nov 25th, 2005 |
| Replies: 5 Views: 1,505 Thanks for your reply, but I'm actually a liitle more experienced with Java than that - I've made a full multiplayer/single player w/ AI tictactoe game. |
Forum: Java Nov 25th, 2005 |
| Replies: 5 Views: 1,284 How would you create your own look & feel? |
Forum: Java Nov 24th, 2005 |
| Replies: 5 Views: 1,505 Hi Everyone,
I want to program something cool (no this isn't for school, just for fun), but I don't know what to program. I wanted to make something that would be fun to make and use, but not too... |
Forum: Search Engine Optimization Nov 12th, 2005 |
| Replies: 13 Views: 4,344 Hi Everyone,
I'm webmaster of two sites
I've submitted << snipped >> to google >100 times, and it still isn't listed! I submmitted through this site:... |
Forum: Website Reviews Nov 10th, 2005 |
| Replies: 7 Views: 1,945 Hi Guys,
I updated both sites, so what do you think of them now?
Thanks. |
Forum: PHP Oct 25th, 2005 |
| Replies: 2 Views: 1,524 Yes, a free one like Yahoo or GMail. |
Forum: PHP Oct 24th, 2005 |
| Replies: 2 Views: 1,524 Does anybody have any ideas on how to make your own email program? Could you use the mail function and restrict access? |
Forum: Website Reviews Oct 22nd, 2005 |
| Replies: 7 Views: 1,945 Here are my sites:
anthroeducation.com (http://
http://www.anthroeducation.com)
and
cinnamonresearchanddevelopment.com (http://www.
http://www.cinnamonresearchanddevelopment.com) |