Re: Thread.yield() on 2.4

2001-02-08 Thread Dimitris Vyzovitis
On Thu, 8 Feb 2001, Joseph Shraibman wrote: > Is it just me or does Thread.yield() not work anymore with the 2.4.0 > kernel? Works fine for me (kernel 2.4.1, ibm jdk-1.3 build cx130-2815). Use the attached file for a quick test. -- dimitris mailto:[EMAIL PROTECTED] public class test_

Thread.yield() on 2.4

2001-02-08 Thread Joseph Shraibman
Is it just me or does Thread.yield() not work anymore with the 2.4.0 kernel? -- Joseph Shraibman [EMAIL PROTECTED] Increase signal to noise ratio. http://www.targabot.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a

RE: Messed up swing windows

2001-02-08 Thread Joi Ellis
On Thu, 8 Feb 2001, Martin, Stephen wrote: > I have a situation right now where I am experienceing it more often than not > when > trying to bring up a JOptionPane. I've tried a number of things, such as > making sure that > I do in the SwingEvent Thread, making sure I do it not in the Swing even

Re: Messed up swing windows

2001-02-08 Thread Robert S Laramee
> > I often have a problem where my Swing windows get created messed up. I've > > attached > > a couple of gifs to show what I mean. This usually (if not always) happens > > with a > > frame or dialog is being created and is not 100% reproducible. My guess > > would be that > > it is the result o

RE: Messed up swing windows

2001-02-08 Thread Martin, Stephen
I have a situation right now where I am experienceing it more often than not when trying to bring up a JOptionPane. I've tried a number of things, such as making sure that I do in the SwingEvent Thread, making sure I do it not in the Swing event thread, calling yield before i create the dialog, al

Re: Messed up swing windows

2001-02-08 Thread Miloslaw Smyk
"Martin, Stephen" wrote: > > I often have a problem where my Swing windows get created messed up. I've > attached > a couple of gifs to show what I mean. This usually (if not always) happens > with a > frame or dialog is being created and is not 100% reproducible. My guess > would be that > it is

Re: Servlet API classes - where to place them?

2001-02-08 Thread Jacob Nikom
Thank you Nathan, I use Tomcat server. However, I still need to compile my servlet with Java servlet package. Here I found some unexpected installation feature. I placed servlet-2_2b.zip on my CLASSPATH and it did not work wherever I placed it. After some trials, I unzipped it and to my surprise

Re: Servlet API classes - where to place them?

2001-02-08 Thread Nathan Meyers
On Thu, Feb 08, 2001 at 12:16:46PM -0500, Jacob Nikom wrote: > Hi, > > I started to work with servlets and found that I need to download > Servlet API classes - servlet-2_2b.zip package. I have few questions > about this package. Servlets run fine on Linux. The question is what you are trying to

Servlet API classes - where to place them?

2001-02-08 Thread Jacob Nikom
Hi, I started to work with servlets and found that I need to download Servlet API classes - servlet-2_2b.zip package. I have few questions about this package. 1. Does it run on Linux? 2. Where jdk directory structure I have to place it in: a) /jdk/jre/lib/ext b) should I create /jdk/jre/li

Messed up swing windows

2001-02-08 Thread Martin, Stephen
I often have a problem where my Swing windows get created messed up. I've attached a couple of gifs to show what I mean. This usually (if not always) happens with a frame or dialog is being created and is not 100% reproducible. My guess would be that it is the result of a race condition but I have

RE: font problem

2001-02-08 Thread Jesse Stockall
"Font specified in font.properties not found [--zapf dingbats-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]" If this is (or similar to) the error you are getting the fix is simple. Copy "symbol.ttf" to the /j2re1.3/lib/fonts directory add the following line to "fonts.dir" "symbol.ttf

classpath

2001-02-08 Thread soonho
Hi all,   I create a JVM inside my C code. but when running, it said that Can't find Prog Class as what i witten in my c code.   cls = (*env)->FindClass(env, "Prog");    if (cls == 0) {    fprintf(stderr, "Can't find Prog class\n");    exit(1);   How to set the classpath until c know