RE: OT: Mailing list control

1999-09-02 Thread jerry
From: "Dimitris Terzis" <[EMAIL PROTECTED]> Date: Thu, 2 Sep 1999 21:40:06 +0100 >I have no connection to the blackdown people but, as a volunteer in some >social activities, I believe we should be a bit more tolerant... I appreciate what blackdown is doing. But it's a bit frustrating to not k

RE: OT: Mailing list control

1999-09-02 Thread Dimitris Terzis
Guys... I have no connection to the blackdown people but, as a volunteer in some social activities, I believe we should be a bit more tolerant... Regarding the issue of "read-only" lists presented in this thread, I can't understand why there are still out there at the first place! For the exchan

Re: Popup Trigger

1999-09-02 Thread Wolfgang Muees
Am Wed, 01 Sep 1999 schrieb Michael Emmel: > What is the popup mouse event trigger under Linux I tried a few combos > nothing would set the popup flag ??? > > Mike you have have to insert MouseEvent.isPopupTrigger() BOTH in mousePressed() and mouseReleased() to get the Popup for Windows AND L

Re: OT: Mailing list control

1999-09-02 Thread Armen Yampolsky
I also had difficulty at one point with another aspect of the list -- none of my posts would make it through. I had a correspondence with a fellow named Karl Asha in which we finally figured out that it was because I was subscribed to the digest rather than the full list, but still it surprised me

Re: AlphaWorks not responding?

1999-09-02 Thread Ulli Kortenkamp
> "Justin" == Justin Lawler <[EMAIL PROTECTED]> writes: Justin> Hi all, has anybody had trouble connecting to Alphaworks, Justin> as i hevent been able to connect for more than a month Justin> now. And if it is down, is there anywhere else i could get Justin> the IBM port of t

Re: Native thread behaviour

1999-09-02 Thread Nathan Meyers
Dimitris Terzis wrote: > > Hi guys... > > Playing with native methods, I have created a very basic program that > creates a TCP/IP socket from Java by using the corresponding C call (i.e., > socket()). You are sending your output through two different mechanisms. The System.out.print mechanism

System.out oddity

1999-09-02 Thread John Reynolds
Hi all, I suddenly started to get the following when trying to compile files. [johnr@medoc ~]$ java -green -version Warning: JIT compiler "sunwjit" not found. Will use interpreter. java version "1.2" Classic VM (build Linux_JDK_1.2_pre-release-v2, green threads, nojit) [johnr@medoc ~]$ cd /usr/s

Re: [OFF-TOPIC] Drawing Package Required For Java Linux Web Graphics

1999-09-02 Thread peter pilgrim
[EMAIL PROTECTED] wrote: > Here's the URL. Seems pretty busy, I'll try to download it tonight. > > http://www.sun.com/dot-com/staroffice.html > Thanks Now I am going to roll with killustrator-0.6.tar.gz (standalone version) Peter P ---

AlphaWorks not responding?

1999-09-02 Thread Justin Lawler
Hi all, has anybody had trouble connecting to Alphaworks, as i hevent been able to connect for more than a month now. And if it is down, is there anywhere else i could get the IBM port of the JDK? thanks, Justin. -- To UNSUBS

Native thread behaviour

1999-09-02 Thread Dimitris Terzis
Hi guys... Playing with native methods, I have created a very basic program that creates a TCP/IP socket from Java by using the corresponding C call (i.e., socket()). My code (excluding error handling parts) is something like: // File NativeSocketApplication.java public class NativeSocketApplic

RE: compiling files

1999-09-02 Thread Harold Andrews
Without any "import" statements, I'm a little surprised it compiled file2.java. Try adding import file2; to file1.java, and import file3; to file2.java. See if that helps. -Andy > -Original Message- > From: ALPESH KOTHARI [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 02,

Who do you have to know...

1999-09-02 Thread Tod Matola
Hello, Excuse me for being thick, but I felt like I could help (not an easy thing to extend an offer for (My free time (my wife's not happy with the lack there of)). But I have been look for a way to contribute to linux and I thought help Blackdown would be killer. So I gather up some motivatio

Re: listining action from child frame

1999-09-02 Thread Thomas M. Sasala
Add an event listener for the child window within the main window: childwindow.addActionListener(parentWindow) You'll have to play with it to get the correct syntax. Also, comp.lang.java would be a better place for this question. -Tom ALPESH KOTHARI wrote: >

Re: OT: Mailing list control

1999-09-02 Thread Thomas M. Sasala
With some mailing lists, you have to confirm before you actually start getting mail. I don't know why anyone would not want positive confirmation. -T Nathan Meyers wrote: > > Charles Forsythe wrote: > > > > Hey, is it possible to setup "read-only" participants? You know, so t

listining action from child frame

1999-09-02 Thread ALPESH KOTHARI
Hello all, I have got a main window and a child window. I want to listen the action of the button pressed from the child window and take necessary action in the main window. What should I do? Also, if some reference of Web, or book is available please let me know. With regards, alpesh === KOT

compiling files

1999-09-02 Thread ALPESH KOTHARI
Hello All, I am using JDK1.2 pre v2 on RH6.0. I am facing a typical problem. Consider the situation: file1.java class file1{ public file1(){ xx=new file2(); } } file2.java class file2(){ public file2(){ yy=new file3(); } } file3.java class file3(){ public file3(){ } } Now, when i c