Re: Does Java thread can use multiprocessor?

2000-09-20 Thread Bill Halchin
Hi Urs, I would guess if you use the "native threads" VM then you will have your Java threads mapped to "clone" system calls (on Linux) and hence, runnning on (potentially) separate CPU's. You will have to download and install the native threads VM from blackdown. Green threads I think does a

Re: Question on MouseEvent

2000-09-20 Thread Joi Ellis
brEezE wrote: > > Hi, > I have a JWindow displayed below a button, similar to > a JComboBox. The problem is when the "parent" JFrame > is moved to other location, the JWindow is still > remain on the screen at the old location. How do i > hide the JWindow when I click/drag on the title bar of > t

Question on MouseEvent

2000-09-20 Thread brEezE
Hi, I have a JWindow displayed below a button, similar to a JComboBox. The problem is when the "parent" JFrame is moved to other location, the JWindow is still remain on the screen at the old location. How do i hide the JWindow when I click/drag on the title bar of the "parent" JFrame? I have noti