Linux Alpha JDK availability

1998-06-09 Thread Abi Harbani
Does it really exist? I checked http://www.voicenet.com/~gatgul/JDK several times and never been successfully uncompress/untar the tgz file. The today's JDK in there has 1.3M in size. I think it's corrupted since it's a little small... Is there any other reliable source that I can go to grab t

FIFO's

1998-06-09 Thread James Cassidy
I'd like to access FIFO's with Java under Slackware linux 2.0.0. When I try to open a FileInputStream on the fifo file, things just stop. I'm using 1.1.6. I've read that: "An error in the green threads implementation (Solaris). Try running it with native threads (load the native threads add-on

Re: VB and Access == Java and ????

1998-06-09 Thread Carl_E_Tallis
From: Carl E Tallis@ERS_TYSONS on 06/09/98 12:34 PM Have you looked at Jeevan? It's a(nother) pure Java implementation of a DB. I haven't used it, but the demos are great. It's similar to the PSE solution that others have mentioned, but it seems simpler than ODI's product. [EMAIL PROT

Re: java 1.2 ??

1998-06-09 Thread Ron Yorston
cedric baudoin wrote: >is there any known date for java 1.2 ? Don't know about Linux, but the latest information on the Java Developer Connection is that JDK 1.2 beta 4 is due out 29 June and the final release will be 21 September. That'll be for Windows and Solaris. http://developer.java.sun

Re: Core dump trying to use JNI under Linux-alpha port

1998-06-09 Thread Uncle George
yup, My first attempt to fix this was to change the way the internal java stack was organised. stack items are 64 bits wide ( due to pointers ) rather than doubled and longs, which on a 32 bit world occupy 2 stack slots. So while i can store a double, long, and a pointer into a 64 bit alpha st

Re: can't execute java or other utils

1998-06-09 Thread Uncle George
sometimes it happens that the libs/loader libs are not found be the kern. this happened to me when i went from 4.1 to 5.0. never figured out why, but those executable were just not runnable on 5.0 :( B. Craig Taverner wrote: > > explicitly specified the file (i.e. "./java"). I always get "comm

Re: Netscape 4.05

1998-06-09 Thread Ulrich Kortenkamp
> "Azazel" == Azazel <[EMAIL PROTECTED]> writes: Azazel> I've just installed the JDK1.1 prerelease again and this Azazel> time I sorted out the problem that cropped up last time, Azazel> that I needed to have the Netscape archive Azazel> (${MOZILLA_HOME}/java/classes/java40.j

Re: Problem with AWT and swing

1998-06-09 Thread sml13
I may be wrong about this, but I believe AWT and Swing componenets are NOT supposed to be mixed like that (layered, that is), unless you want the AWT components to always be on top. This is because (correct me if I'm wrong, someone, but I vaguely recall reading this on one of those Swing tutu

Netscape 4.05

1998-06-09 Thread Azazel
I've just installed the JDK1.1 prerelease again and this time I sorted out the problem that cropped up last time, that I needed to have the Netscape archive (${MOZILLA_HOME}/java/classes/java40.jar) before the JDK archive in $CLASSPATH, - or so I thought. This had the unfortunate effect of confus

Re: RH5.0 and JDK1.1.?

1998-06-09 Thread Pete Hardie
Thanks to everyone who has told me what I wanted to know. I hope to spend some time this weekend upgrading everything. -- Pete Hardie | Goalie, DVSG Dart Team Scientific Atlanta| Digital Video Services Group |

Acclerator Key events

1998-06-09 Thread Chetan Kumar
Greetings, (Hello Mr Lei ! )AccleratorKey events methods are associated with Menuitems, but now that I have Menubar how do I set hot heys. I tried the same but it did not worked (Obvious ?). Help please... with thanks chetan . S E-mail [EMAIL PROTECTED] WEB PAGE - http://pcla

Re: Problem with AWT and swing

1998-06-09 Thread Ulrich Kortenkamp
> "Chetan" == Chetan Kumar <[EMAIL PROTECTED]> writes: Chetan> Now the problem is that when I activate the menu, the Chetan> pulldown menu come behind the canvas. i.e some item of the Chetan> menu are hidden behind the canvas. Hava a look at http://java.sun.com/products/jfc/swin

Re: RH5.0 and JDK1.1.?

1998-06-09 Thread Ulrich Kortenkamp
> "Azazel" == Azazel <[EMAIL PROTECTED]> writes: Azazel> Has anyone managed to get JDK1.1-complete preview version Azazel> of 4.05 working under RH 5.0/5.1? The Java was decidedly Azazel> flaky, when I installed it. I am running Netscape® Communicator 4.05

Re: java 1.2 ??

1998-06-09 Thread Azazel
According to the FAQ (http://www.place.org/~stevemw/java/FAQ/FAQ-java-linux.html): > 2.5 When is the JDK 1.2 Going to be Released for Linux? > > According to Steve Byrne on Monday, May 26th 1998: > > JavaSoft is trying very hard to get a license set up with an external person > to co

Re: RH5.0 and JDK1.1.?

1998-06-09 Thread Azazel
> > Also, is there a working Netscape for RH5.0? > > > > My copy is 4.05, and it works fine. Has anyone managed to get JDK1.1-complete preview version of 4.05 working under RH 5.0/5.1? The Java was decidedly flaky, when I installed it. Az. >-)=

java 1.2 ??

1998-06-09 Thread c . baudoin . alcatel
A: INTERNET--IBMMAIL De:cedric BAUDOIN ALCATEL ESPACE - DSPS/DESR - service simulation systeme tel:33.(0)5.61.19.68.17 email:c.baudoin.alcatel(a)e-mail.com Objet: java 1.2 ?? hello is there any known date for java 1.2 ? best regards, cedric baudoin c.baudoin.alcatel(a)e-mail.com salutations

Re: Problem with AWT and swing

1998-06-09 Thread Rani Pinchuk
Hello. Since the Canvas is heavyweight component (AWT component) it comes above the light components (Swing components) like your pulldown menu. In my opinion the main difference between Canvas and Panel is that Panel extends Container while Canvas doesn't. In Swing, however, JComponent exte

Re: Problem with AWT and swing

1998-06-09 Thread gaolei
Dear Kumar, I remember that long time ago, I also met the problem, and now I could not remember how I fixed this problem very clearly. Maybe I just change some add(xxx) to getContentPane().add(xxx). But I think that the reason of your problem is you add the canvas on the upper layer of the JMenu

Problem with AWT and swing

1998-06-09 Thread Chetan Kumar
Hello, it is same old problem, I am sorry if it is repeated. I tried this. 1) Create a pulldown menu, JMenu. 2) Create a canvas, I did not find swing component for canvas, if there is please letme know. 3) Add canvas to JPanel, 4) Add JPanel and JMenu to Jframe. Now the problem is that when I a

Mirror Downtime: Apology

1998-06-09 Thread Joshua Pollak
An upgrade to RedHat 5.1 went, shall we say, less smoothly than planned. However, RH is happy once again, and the pico.org mirrors live again. Joshua Pollak http://josh.pico.org