Can anyone simply tell me how to use the Highlighter in a cell of a jTable? What I want to do is to highlight the containing text of the cell automaticlly when...
Jeff Ko
jeffko32@...
Jul 7, 2003 8:58 am
3339
Continue the last posted message: It will be very helpful if sample code can be provided. Thankyou very much. Jeffko32 ...
Jeff Ko
jeffko32@...
Jul 7, 2003 9:00 am
3340
Hi. Sorry, my english is bad (is very ...telegraphic), I speak spanish. I have a JTable with custom editors (JPanel with a JTextField inside). This JTable is...
Martin Capote
mcapote@...
Jul 10, 2003 3:13 pm
3341
Please see http://forum.java.sun.com/thread.jsp?forum=57&thread=422324 -- http://www.lafros.com 01922/+441922 644 223 ...
Rob Dickens
rob.dickens@...
Jul 14, 2003 2:54 pm
3342
Hi, I am trying to render a tiled OffScreen image onto a JPanel one tile at a time. It works fine if I use the AWT Canvas or it even works if its a JPanel...
Praveen Kysetti
emergesecure@...
Jul 24, 2003 7:29 pm
3343
Hi, I have a JTable in which I use JList as row header. I also alternate colors of rows between gray and white. Now I need to color some of the rows of JList...
Aleksandr Kravets
akravets@...
Jul 29, 2003 9:30 pm
3344
I'm writing a JTree app that could potentially load a lot of data, perhaps a few mb, which can take 5-10 seconds to process all of it. To improve the user...
Erik Ostermueller
eostermueller@...
Jul 30, 2003 5:40 pm
3345
... You can use that node class or your own. A couple of key points you want to understand are: * I'm assuming that you're using DefaultTreeModel and...
Prescott, Ralph
ralph_prescott@...
Jul 30, 2003 7:55 pm
3346
Hi, When I call JFrame from my Applet, JFrame appears with a status bar saying 'Java Applet Window'. Is there a way to get rid off this status bar? thanks, ...
Aleksandr Kravets
akravets@...
Jul 30, 2003 9:22 pm
3347
The only way to get rid of the status bar message (that I am aware of) is to sign your applets. Sun has done this by design for any heavyweight window as a...
Farwell, Paul
PFarwell@...
Jul 30, 2003 9:28 pm
3348
Strange, because when my applet downloads a jar file, there is no status bar. Is that frame also regular JFrame or something else? ... ...
Aleksandr Kravets
akravets@...
Jul 30, 2003 9:32 pm
3349
The essence of things appears to be in having the AWTPermission with the target name "showWindowWithoutWarningBanner". Signing an applet gives it...
Joel Kamentz
Joel.Kamentz@...
Jul 30, 2003 9:35 pm
3350
I believe the rule is that the status bar will appear for a heavyweight window displayed in a unsigned applet. It doesn't matter whether the window is a...
Farwell, Paul
PFarwell@...
Jul 30, 2003 9:38 pm
3351
Got it. Thanks! ... _______________________________________________ Advanced-swing mailing list Advanced-swing@... ...
Aleksandr Kravets
akravets@...
Jul 30, 2003 9:40 pm
3352
Your code has some inefficiencies. However, a likely cause is that, to determine whether a row should be red or not, you search through a list, but you don't...
Joel Kamentz
Joel.Kamentz@...
Jul 30, 2003 9:50 pm
3353
Hi, When my Applet loads a JFrame, a user can click inside an Applet and JFrame will hide. Is there a way to keep JFrame visible until user closes it and if...
Aleksandr Kravets
akravets@...
Jul 31, 2003 1:45 pm
3354
Why not use a Jdialog instead? ... From: Aleksandr Kravets [mailto:akravets@...] Sent: Thursday, July 31, 2003 9:46 AM To: Swing Forum Subject:...
David Barron
David.Barron@...
Jul 31, 2003 1:49 pm
3355
Maybe JDialog will not be modal even if you say it to be modal. therefore you can attach your dialog to the browsers frame use Container cont = 'your applet'; ...
Salvador Richter
Salvador.Richter@...
Jul 31, 2003 2:00 pm
3356
thanks Salvador, But where exectly do I have to put this code? Alex ... _______________________________________________ Advanced-swing mailing list ...
Aleksandr Kravets
akravets@...
Jul 31, 2003 2:06 pm
3357
Hi Alex, you have to use JDialog instead of JFrame and then do it like this public Frame getBrowserFrame() { Container cont = 'your applet'; while(cont !=...
Salvador Richter
Salvador.Richter@...
Jul 31, 2003 2:24 pm
3358
thanks! ... _______________________________________________ Advanced-swing mailing list Advanced-swing@... http://eos.dk/mailman/listinfo/advanced-swing...
Aleksandr Kravets
akravets@...
Jul 31, 2003 2:30 pm
3359
Thanks, rmp and Pat. Your suggestions are going to be a great help. --Erik O. ... __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free,...
Erik Ostermueller
eostermueller@...
Jul 31, 2003 4:39 pm
3360
Hi, In our application, we came across a problem while implementing context sensitive help... we are using the Java help..and when the html file (help...
Manoj Varghese K
ManojV@...
Aug 1, 2003 5:09 am
3361
Hello, I need to format a String that I get from database which is in form 04/03/03 to 4/3/2003. When formatting today's date, I do the following: ...
Aleksandr Kravets
akravets@...
Aug 5, 2003 3:06 pm
3362
Actually got it working sort of... When I parse date string I have it as 04/03/03 so when done parsing I get year parsed as 0003 not 2003... ...
Aleksandr Kravets
akravets@...
Aug 5, 2003 3:22 pm
3363
Got it. Thanks! ... _______________________________________________ Advanced-swing mailing list Advanced-swing@... ...
Aleksandr Kravets
akravets@...
Aug 5, 2003 3:41 pm
3364
Hi, I have a pipe-delimited file that I want to read from. As I read each line of file, I tokenize it and put each token in an Object[][]. Everything works...
webtekie@...
Aug 6, 2003 3:45 pm
3365
... Do you really need to create a brand new Boolean for each element, or do you just merely need to have true and false for each? If so, why not just use...
Frank D. Greco
fgreco@...
Aug 7, 2003 3:25 am
3366
Thanks Frank, So is MappedByteBuffer is really that fast? Also, I tried your suggestion of using predefined Boolean object -- seems to save at most 3 seconds. ...