RE: Gnome - RH6.0 - Netscape - Java - Audio

1999-08-24 Thread Nobby Knox
Hi Dennis. I don't have anything clever to say about Java on RH6.0, but I can tell you something about Netscape 5.0 (Mozilla). A beta of Mozilla (Netscape 5.0) will be released within the next few months. I heard someone say that November will see the availability of the beta (milestone release

Re: JDK1.1.7 on RH 6.0

1999-08-24 Thread Jim Hazen
You need to make sure you're using the glibc version of the JDK. Try the version located in: ftp://metalab.unc.edu/pub/linux/devel/lang/java/blackdown.org/JDK-1.1.7/i386/glibc/v3/ -Jim > I just come to upgrade my Linux RH 5.2 to RH 6.0 > After this operation my Java does not work any more, whe

JDK1.1.7 on RH 6.0

1999-08-24 Thread Bernardo Paz Betancourt
Hello, I just come to upgrade my Linux RH 5.2 to RH 6.0 After this operation my Java does not work any more, when I try to compile or execute a recive the message: $ javac lolo.java $ /home/paz/jdk117_v1a/bin/i586/green_threads/java: error in loading shared libraries: /home/paz/jdk117_v1a/lib/i

RE: how to catch stdout

1999-08-24 Thread David Chen
Thanks for all the replies to my question. Most of suggestions focus on starting the C program as a separate process then using pipes to communicate between the C and the Java program. I have to add 3 conditions here which I didn't clearly explained in my previous mail. Condition 1: I am using

Re: adding components dynamically

1999-08-24 Thread Nathan Meyers
Try calling invalidate() and then validate() on the component you're inserting into. Nathan Yohans Mendoza wrote: > > hi all, > > I have this applet in which the user presses a button and a nuew panel get > inserted into one of the areas of the applet. > The problem is that when I call repain

Java plugin Activator

1999-08-24 Thread Andy Bacon
Where can I get the NEtscape Java Activator Plugin for Linux? THe Blackdown activator page is not avaialble. Thanks Andy Bacon Get your own FREE, personal Netscape WebMail account today at http://webmail.netscape.com. ---

adding components dynamically

1999-08-24 Thread Yohans Mendoza
hi all, I have this applet in which the user presses a button and a nuew panel get inserted into one of the areas of the applet. The problem is that when I call repaint() the panel is not added, I have to resize the window of the applet to be able to see the new panel added. Do I need to overrid

TableModel

1999-08-24 Thread Frank Apap
How do i create a simple table model that will contain 3 strings as columns, and can easy have rows added to it? -- Frank Apap -- -- To UNSUBSCRIBE, email to [EMAIL P

Re: how to catch stdout

1999-08-24 Thread Michael Christiansen
If you are running the C program within the Java app, you start the C app with the class Runtime. This creates a Proces, and you have acces to the C app's stdin / out as ioStreams. Capture this and send to your text component, whatever... Mike David Chen wrote: > Hi all, > > I have a general Ja

Re: how to catch stdout

1999-08-24 Thread Gregory Steuck
> "David" == David Chen <[EMAIL PROTECTED]> writes: David> In the pre-developed project there are a lot of printf David> functions. Now I have to show the outputs of printf in a David> swing text fileld. The question is how can I do this without David> touching the pre-writt

Re: how to catch stdout

1999-08-24 Thread andrey
AFAIK if you use jni it doesn't create separate process. The problem is to capture output of the same process. For Unix-only solution I would try to create named pipe, redirect java process's output to that pipe and see if I can read it from inside the program. It's just an idea. I haven't tried

Re: how to catch stdout

1999-08-24 Thread jerry
Here's one way of trapping stdout from an unrelated program. I'm pretty sure there's better way, but this works in Blackdown 1.2v1. Process process = Runtime.getRuntime().exec("yourprogram"); process.waitFor(); // getInputStream() returns the input stream connected to the norm

how to catch stdout

1999-08-24 Thread David Chen
Hi all, I have a general Java question. I was asked to make a Java GUI interface for a pre-developed project which was written in C. The C programs provided a set of APIs. I constructed the GUI using swing and made the jni program. It's functionlly working. In the pre-developed project there

RE: Poll: Which Java/Linux IDE?

1999-08-24 Thread Chris LeDantec
I am going to take this opportunity to give a bit of information about NetBeans Developer. www.netbeans.com Within the month (so by the end of this week) we will be releasing the public beta of our 3.0 product. Currently, for those bleeding-edge addicts, you can download pre-beta Developer 3.0

RE: Problems installing JDK 1.1.7 and JDK 1.2 pre-v2

1999-08-24 Thread BAZLEY Sebastian
> -Original Message- > From: Dimitris Terzis [mailto:[EMAIL PROTECTED]] > Sent: 23 August 1999 14:53 > To: 'Java-Linux mailing list' > Subject: RE: Problems installing JDK 1.1.7 and JDK 1.2 pre-v2 [snip] > What happened is that, to download the tar files, I used an > NT machine, > link

Unidentified subject!

1999-08-24 Thread R MUTHUSWAMY
hi, i have written a program to display a bulk of images in a one by one manner. but in the compilation it is showing a Type Expected error in the if(donecount == tracked) line. can anybody tell me the reason for the error. i got the same type of error in other program earlier which