I have multiple JTextAreas on my application. When a user presses button, i need to know which textarea has keyboard focus. hasFocus is not working. is there...
Rahul Kumar
rahulk@...
Dec 3, 2001 5:16 am
2671
Hi All. in case you would like to see it, pls visit the http://www.mutualinstrument.com/Easier/FAQ/Tree/tree.html Alexander Gusev. ...
Alexander Gusev
alex@...
Dec 3, 2001 9:49 am
2672
Dear All In my applet program, I am using Jdialog to diplay info. I have set the JApplet as the parent to the JDialog. But i want to set my icon for the ...
Samivelu, Srinivasan
srinivasan.samivelu@...
Dec 4, 2001 6:46 am
2673
Dear All I am using JTextArea in my program. The textarea is non editable. And when I press the tab key i want the focus to be moved to the next focussable...
Samivelu, Srinivasan
srinivasan.samivelu@...
Dec 5, 2001 2:54 am
2674
Does this work? Frame f = JOptionPane.getFrameForComponent(this); ImageIcon icon = new ImageIcon(/* load image */); f.setIconImage(icon.getImage()); ... From:...
Farwell, Paul
PFarwell@...
Dec 5, 2001 3:54 pm
2675
I'm running 1.3.1 on win2k. I want to put multiple versions (plain text, html, ?) of the same content on the system clipboard for use by native apps. Creating...
Joel Kamentz
Joel.Kamentz@...
Dec 6, 2001 12:17 am
2676
Hi paul, I am passing the applet parent to the dialog by calling the following function. public JConnectionDialog extends JDialog { public...
Samivelu, Srinivasan
srinivasan.samivelu@...
Dec 6, 2001 3:41 am
2677
... You should scale the background image to the size of the JDesktopPane in its paint method instead. There is an overloaded drawImage() that helps with...
Frank D. Greco
fgreco@...
Dec 6, 2001 2:18 pm
2678
Dear Steve Barrett Thanks for the solution. but i wanted something like this. In a panel i have two textarea fields and four textfields when i traverse the...
Samivelu, Srinivasan
srinivasan.samivelu@...
Dec 6, 2001 3:10 pm
2679
... From: advanced-swing-request@... [mailto:advanced-swing-request@...] Sent: Friday, December 07, 2001 4:33 PM To: advanced-swing@... Subject:...
Preeti Pujni
preetip@...
Dec 7, 2001 11:11 am
2680
Here is a problem Some characters (eg. ';') are not properly copied onto a JTextPane from a word document on windows NT/2000. Works fine on windows 95/98. I am...
Samir
samirrandive@...
Dec 7, 2001 5:18 pm
2681
I am making a diagramming tool. Need to make links between JInternalPanes. These links could be diagonal, not just vertical/horizaontal. Can one make such...
Rahul Kumar
rahulk@...
Dec 10, 2001 1:28 pm
2682
Any tips on using JMS with Swing wrt threading issues? Given that published events could potentially call Swing methods in multiple threads simultaneously, ...
Frank D. Greco
fgreco@...
Dec 10, 2001 3:06 pm
2683
Hi , I have an application which has a GUI . The application works properly on Windows NT but when installed on Unix the GUI changes . Some Text gets truncated...
Preeti Pujni
preetip@...
Dec 11, 2001 6:02 am
2684
Hi all! Are some body knows how work with big documents in JTextPane? The big document contain more than 1 Mb. I've tryed to write java.io.Reader for...
Onopin Mikhal
onopin.m.v@...
Dec 11, 2001 8:52 am
2685
Dear All I have dialog where there are four text fields and three buttons - Default, Ok , Cancel buttons. When the dialog opens i want set focus for the cancel...
Samivelu, Srinivasan
srinivasan.samivelu@...
Dec 13, 2001 4:37 am
2686
Well, I know way that will almost certainly work and a way that might work. Focus management has been buggy in Java from the start. You would think this...
Bill Tschumy
bill@...
Dec 13, 2001 5:15 am
2687
... To quote my German teacher: "And you meant to say..." SwingUtilities.invokeLater(myRunnable). Other than that, you're right on... In fact, this is the...
Paul Brinkley
laugh@...
Dec 13, 2001 1:52 pm
2688
We would like to render a whole row in a JTable from one component rather than in cells. For example, we'd ... Any hints? Michael Hollander Senior Software...
michael hollander
untler@...
Dec 13, 2001 9:14 pm
2689
... Yow. I don't think you can do this with JTable. JTable has built-in support for things like column rearranging and resizing, which doesn't make as much...
Paul Brinkley
laugh@...
Dec 13, 2001 10:05 pm
2690
Have a look at http://www2.gol.com/users/tame/swing/examples/SwingExamples.html JTable Examples 4 for a Multi-Span Cell. Lots of interesting stuff here. -- ...
Marie Alm
malm@...
Dec 13, 2001 10:29 pm
2691
Hi, I am trying to play a ".au" file from an application with jdk 1.3 and am getting exception IllegalArgumentException while doing AudioSystem.getLine(). Now...
Bharat Dighe
bdighe@...
Dec 14, 2001 5:43 am
2692
Have recvd no reply on this... Pls help. I have several JTextareas. When a user presses a button I need to know which one has focus. Have tried hasFocus() but...
Rahul Kumar
rahulk@...
Dec 14, 2001 11:19 am
2693
Probably by the time your actionPerformed() method is called as the result of the button click, the focus has already been transferred to the button. There...
Bill Tschumy
bill@...
Dec 14, 2001 2:28 pm
2694
Dear All In my applet program, All fields are taking Arial as the default font. But JTextArea alone takes courier as its default font. I am not setting the...
Samivelu, Srinivasan
srinivasan.samivelu@...
Dec 17, 2001 3:34 am
2695
... _______________________________________________ Advanced-swing mailing list Advanced-swing@... http://eos.dk/mailman/listinfo/advanced-swing...
yuli7
yuli7@...
Dec 17, 2001 3:45 pm
2696
Hi, On trying to play ".au" files on AIX, it results in OutOfMemory. Foll. is the exception it gives and then results in OutOfMemory : audioOpen could not open...
Bharat Dighe
bdighe@...
Dec 18, 2001 7:23 am
2697
I want to pop up a dialog box indicating to the user that they have to wait till a particular process finishes. When the process finishes, I close the dialog...
Reinstein, Lenny
Leonard.Reinstein@...
Dec 20, 2001 2:39 am
2698
Are you calling dialog.show() on the same thread of execution used by your 'process'? Are you using SwingWorker (or some equivalent threading technique) to run...
Farwell, Paul
PFarwell@...
Dec 20, 2001 2:49 am
2699
No. Should I? I do in sequence. My dialog does not change during the process' execution. So, I want to pop up the dialog with the message and stay there. When...