Hi there,

I know that this isn't specifically swing-related,
but rather an awt issue, but it slightly fits the
context, I think.
This has to be a fairly frequent issue, so hopefully
soemone could illuminate me on this...

If I try to change the drag cursor, I get very strange
results under Windows (it works fine under Linux). I'm
setting the cursor this way:

class bla implements ... DragSourceListener {
        ...
        ...
        public void dragEnter(DragSourceDragEvent e) {
                e.getDragSourceContext().setCursor(someCursor);
        }
        public void dragOver(DragSourceDragEvent e) {
                e.getDragSourceContext().setCursor(someCursor);
        }
        ...
        ...
}

This leads to sudden death of the application.
It exits, spitting out:
"an EXCEPTION_ACCESS_VIOLATION has been detected in 
native code outside the vm."
If I set the cursor on any other component first, this
workarounds the problem, but leads to nervous cursor
flicker.


I'm using the latest vm-build (Hotspot 1.3.0.x-C). Anyone
have any insights on this?

Thanks in advance 
Frank
_______________________________________________
Advanced-swing mailing list
[EMAIL PROTECTED]
http://eos.dk/mailman/listinfo/advanced-swing

Reply via email to