Re: Re: How to cut and paste from an applet to a Windows clipboard?
Posted By:
Umesh_Gajendragadkar
Posted On:
Tuesday, July 17, 2001 05:06 PM
I can get it working on NT but not on
SUN Solaris.
The Solaris clipboard pastes some garbage after the selected text.
Re: How to cut and paste from an applet to a Windows clipboard?
Posted By:
Vanasri_Upadhye
Posted On:
Friday, April 6, 2001 01:12 PM
There is way you have to digital sign the applet and then use
Clipboard clipcopy = getToolkit().getSystemClipboard();
StringSelection ss = new StringSelection(test.getText());
clipcopy.setContents(ss,ss);