Forum: Java Aug 20th, 2007 |
| Replies: 6 Views: 1,492 use the following at the end of your code
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
in.readLine();
it will pause your command prompt and wait for an input. |
Forum: Java Aug 16th, 2007 |
| Replies: 4 Views: 925 ? what is the project or do you want project ideas ? |
Forum: Java Jul 9th, 2007 |
| Replies: 8 Views: 3,632 just like you have your make table array method in a seperate method which is then called to get the current array you can do the same with creating the table
in your code you will have the INIT()... |
Forum: Java Jul 8th, 2007 |
| Replies: 8 Views: 3,632 im pretty certain you will have to recall the 'table.setmodel' again. As it is not dynamically updating from the array it just sets the table to the data given at the tume the table is created.... |
Forum: Java Jun 9th, 2007 |
| Replies: 2 Views: 3,332 is there any available free calendar swing components available or am i going to have to make one from scratch? |
Forum: Java Jun 3rd, 2007 |
| Replies: 17 Views: 1,889 i have no clue of how to do this in JAVA but i am 99% certain you will not have to be logged in to do this you just use the userID value in the POST method which dani web send via a hidden input box... |
Forum: Java May 19th, 2007 |
| Replies: 2 Views: 915 cheers, thats really helped. i didnt actually know it existed. |
Forum: Java May 19th, 2007 |
| Replies: 4 Views: 1,956 |
Forum: Java May 17th, 2007 |
| Replies: 2 Views: 915 i have a GUI application that needs to check that it is connected to a database every 30 - 60 secs. can this be done with java threads or do i need to look somewhere different. obviously i need the... |
Forum: Java May 17th, 2007 |
| Replies: 4 Views: 1,956 |
Forum: Java May 17th, 2007 |
| Replies: 2 Views: 2,215 formatted text field supplys all you need to do this ?
it will defnatel do what you want it to.
if you have a go and post code then we can show you what your doing wrong. |
Forum: Java May 14th, 2007 |
| Replies: 4 Views: 1,956 right MS Access is balls compared to other DB's i know but im working on a project which already uses an Access DB. Now after writing the following eclipse gives me a lovely error which im yet to... |
Forum: Java May 14th, 2007 |
| Replies: 3 Views: 2,292 i dont understand what you mean by needing a value for the stick() etc. why do you need to run stick at the start ? cant you just say stick(-1) and run a check in stick to see if -1 was entered and... |
Forum: Java May 14th, 2007 |
| Replies: 3 Views: 2,292 ok what format are you storing the images of the cards or are you drawing them using java ?
if you are loading them in, then you have two options. load them all at runtime of your GUI this way you... |
Forum: Java May 5th, 2007 |
| Replies: 3 Views: 3,185 no there is no method to do this. But im pretty sure you could override the JProgressBar class to do what you want it to. As of tutorials for this online im unsure where to point you. |
Forum: Java May 4th, 2007 |
| Replies: 4 Views: 920 |
Forum: Java May 4th, 2007 |
| Replies: 2 Views: 3,948 ok obviously im not gonna do this all for you, but the best way of doing this is creating an object for each person which would contain all there details 'name, pledge etc' then you could do anything... |
Forum: Java Apr 30th, 2007 |
| Replies: 1 Views: 7,064 Theres no doubting that using Java Swing is time consuming on load times. So heres a demo splash screen to keep your users captivated.
You will need two classes for this example
i.e.... |
Forum: Java Apr 30th, 2007 |
| Replies: 4 Views: 1,880 |
Forum: Java Apr 29th, 2007 |
| Replies: 4 Views: 1,880 it would be alot better if you would have planned this into the method before hand but the easiest way to do this that i can see is to wrap the entire code with :
boolean okFlag = false;
while... |