| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 years, 4 months |
| seen | yesterday | |
| stats | profile views | 87 |
|
1d |
comment |
First database desktop application Maybe use a DockingFramework: stackoverflow.com/questions/304874/… |
|
Jun 13 |
revised |
Swing JProgressBar for time spent in method added 25 characters in body |
|
Jun 13 |
answered | Swing JProgressBar for time spent in method |
|
Jun 13 |
comment |
Swing JProgressBar for time spent in method You sould update the gui in the EventDispatchThread and do the work in another thread otherwise your GUI freezes up. |
|
Jun 13 |
comment |
A challenge in String concatenation with Font You should concatenate the unicode symbol for rupee, not the Font object. Use the Font object to decorate your TableCellRenderer. |
|
Jun 9 |
comment |
What is the best solution for Singleton Pattern? @EngineerDollery do you have any arguments besides "it is stupid"? I think you could see a singleton as a special case of enum, that has just one value. loki explained the advantages in his answer. |
|
Jun 9 |
comment |
What is the best solution for Singleton Pattern? see also stackoverflow.com/questions/5759596/… |
|
Jun 8 |
comment |
Finding random numbers and a pattern from them You know that Math.random() returns a double between 0 and 1? Maybe try java.util.Random.nextInt()? |
|
May 31 |
comment |
Show jlabel when select an item in jcombobox RTFM: docs.oracle.com/javase/tutorial/uiswing/components/… |
|
May 29 |
comment |
How to change the “About” window in my Java program for Mac OS X? I think there's a .property file somewhere that contains the information |
|
May 29 |
comment |
GUI FileViewer program file loading problems Is it possible that the fileName variable is still empty at the time you call new FileReader(fileName)? I would still recommend to add the System.out before calling new FileReader(). |
|
May 29 |
comment |
GUI FileViewer program file loading problems Can you print out the absolute name of the file? Something like: System.out.println(new File(fileName).getAbsolutePath()); |
|
May 29 |
comment |
GUI FileViewer program file loading problems Could you post the StackTrace of the Exception? |
|
May 29 |
comment |
JNLP FileSaveService opens a file open dialog @AndrewThompson you were right, I should have checked with the newest JDK much earlier... |
|
May 29 |
accepted | JNLP FileSaveService opens a file open dialog |
|
May 29 |
answered | JNLP FileSaveService opens a file open dialog |
|
May 28 |
comment |
JNLP FileSaveService opens a file open dialog When I run the code in the example in the link, I see 3 times an open dialog. What did you see? |
|
May 22 |
comment |
Java GUI JScrollPane Take a look at stackoverflow.com/questions/10016879/… |
|
May 22 |
comment |
Java GUI JScrollPane Only use invalidate if your JPanel was showing before... |
|
May 22 |
comment |
Java GUI JScrollPane I think the scrollpane just grows and grows. It depends on the LayoutManager you're using in the JPanel. Try to set a maximum Size scroll.setMaximumSize(). |