Forum: Java Feb 13th, 2006 |
| Replies: 4 Views: 6,124 Got it!!, It doesnt recognize things like Function keys and shift etc in teh KeyTyped method, it only sees those keys seperatly in the KeyPressed or KeyReleased Methods. |
Forum: Java Feb 13th, 2006 |
| Replies: 4 Views: 6,124 unfortunatly its not tryin gto pick up the shift as a modifyer, it needs to recognize when just the shift key is pressed. the cheat code is like, 'press x,y,z,z,y,left shift, return' and they need to... |
Forum: Java Feb 10th, 2006 |
| Replies: 4 Views: 6,124 Hi
Just wondering if anyone can help. I have a gui and have assigned a KeyListener to it, It recognizes keyboard input for standard keys but doesnt seem to recognise special keys like shift and... |
Forum: Java May 4th, 2005 |
| Replies: 6 Views: 3,455 You will need to download the appropriate JDBC package to use with access and add it to your classpath so it can pick up the database. Do one of the many JDBC tuts out there and im sure you will... |
Forum: Java May 3rd, 2005 |
| Replies: 12 Views: 14,511 I have built a java web crawler/spider before with a front end resembling google for a previous uni project and I would say it is a moderate program to try and do, not overly difficult but a definate... |
Forum: Java May 3rd, 2005 |
| Replies: 7 Views: 1,716 Why would you want to break a decrypted file??
Can you not just open it?? lol |
Forum: Java May 3rd, 2005 |
| Replies: 1 Views: 1,442 http://java.sun.com/xml/tutorial_intro.html
or
http://www.cafeconleche.org/books/xmljava/chapters/
People will help you more if you can show you have tried.... |
Forum: Java May 3rd, 2005 |
| Replies: 15 Views: 5,658 I remember trying that in the app i wrote, i dont think it will work, as the caret position can be on the text area but not necessarily in the view. If it does work it would be interesting to know fo... |
Forum: PHP May 3rd, 2005 |
| Replies: 3 Views: 1,582 the html is fine, what is in the cutenews/show_news.php file? The problem will most likley be in there. It may be that it is just trying to read the info from the wrong place |
Forum: PHP May 3rd, 2005 |
| Replies: 2 Views: 1,582 require (or require_once) is usually used when you have database connections in seperate files. This stops it duplicating any connections |
Forum: Java May 3rd, 2005 |
| Replies: 15 Views: 5,658 I had exaclty the same problem when i made a chat system for uni using a JEditorPane in a scroll window, its one of those problems which is really annoying. Im not sure if I actually fixed it but i... |
Forum: Java Apr 26th, 2005 |
| Replies: 6 Views: 1,580 |
Forum: Java Apr 25th, 2005 |
| Replies: 14 Views: 2,026 hahaha, Yes I know aswell, two answers in your hand now... :D |
Forum: Java Apr 25th, 2005 |
| Replies: 11 Views: 1,844 there are hundred of password crackers out there made by software houses for legitmate reasons, use one of those, but if you want to learn how to do it then this problby isnt the place as jwenting... |
Forum: Java Apr 25th, 2005 |
| Replies: 10 Views: 2,252 I use eclipse, its free and very good.
eclipse.org |
Forum: Java Apr 21st, 2005 |
| Replies: 8 Views: 1,489 I think i will look further into propertychangeevents |
Forum: Java Apr 21st, 2005 |
| Replies: 8 Views: 1,489 well in i want the main thread to basically wath the gui it creates and as soon as the bool in the gui flips to true i want it to dispose of the log in window and open the main app window, i have... |
Forum: Java Apr 21st, 2005 |
| Replies: 8 Views: 1,489 i already have the set and get methods, the problem is the true bool is an attrib of the gui and you cant return values from a gui. so an if statement wouldnt work either, i need the main thread to... |
Forum: Java Apr 20th, 2005 |
| Replies: 8 Views: 1,489 Is there anyway to listen to a bool value? I have a login window that has a loggedIn boolean value, I need to watch that value in the main thread so when it changes to true it returns to the main... |
Forum: Java Apr 19th, 2005 |
| Replies: 4 Views: 1,636 Why dont you try making an mp3 plyer, its easy to actually play the mp3s using java classes, then you could use file io to scan a folder for mp3s, you could have playlists and loads of other stuff.... |
Forum: Java Apr 19th, 2005 |
| Replies: 1 Views: 3,588 Right, I have an app that basically copies images from a digi camera to the hdd, the user logs in and then it copies the images accross to the hdd and creates some thumbs and brings up a screen which... |
Forum: Java Apr 18th, 2005 |
| Replies: 15 Views: 3,660 but the 2 patters you are showing are the same, might help if you show us what you actually want?? |
Forum: Java Apr 18th, 2005 |
| Replies: 4 Views: 18,861 Im using eclise and exporting it as a jar file. Its fairly easy to do.
The URL thing doesnt work, I am not sure how it is supposed to work anyway, how is it supposed to access a jar file that... |
Forum: Java Apr 14th, 2005 |
| Replies: 2 Views: 1,879 because you have mad a bomb array but you are not telling it which element to Getpos on...
you would need something like this for you method
static boolean IsItABomb(int X, int Y, int... |
Forum: Java Apr 14th, 2005 |
| Replies: 4 Views: 18,861 Right, my program ran perfectly fine with the line
JLabel headerImage = new JLabel(new ImageIcon(img));
But as soon as i put it into a JAR file it has problems, i have searched the inet for... |