anita Py

Greenhorn
+ Follow
since Apr 19, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by anita Py

Hi,

May be i dint make my self clear.

What i basically want is that the value which is being dragged say "XXX" is supposed to be displayed just below the cursor.

Please have a look at the attachment, that should be more helpful i guess..

In my previous post, i was assuming that when drag and drop is being handled, the small rectangular shape that appears below the mouse pointer is the clipboard.
Hence it might have been ambiguous..

13 years ago
Hi All,

I am facing some problem wrt capturing text. Let me try to explain.
I have a Jlist whose values can be re-ordered. The value that is selected currently is being dragged. and on dragging the selection should be displayed appropriately in the clipboard field which is visible in the right corner of the cursor.

Can anybody please help me with how to set the value in the clipboard.




13 years ago
Hi,
I am facing a problem w.r.t JSpinner..
I need to populate the spinner with double values and then based on a boolean value need to show the double value as either with a dot seperating the decimals or with a dash.
Here is an example::
assume the boolean value controlling :: isDash

input value is 1.56
if(isDash){
setSpinner with value as 1-56
}else{
setSpinner with value as 1.56
}

The problem is that inside the spinner is a JFormattedTextField and it resets any formatting changes done from the code ...
Somebody please help me regarding this...

Also if anybody has the source code for PointSpinner, please do share it...
13 years ago