Re: Swing problem

2005-05-24 Thread Bruno Campos
Hi all, I am using blackdown(1.3.1) on Familiar (v0.8.1) distribution, on my ipaq 5500, but i have a small problem. I can run simple swing applications with some bottoms, labels etc, but not ComboBox or tabbed menus, if i try this error appears:   [EMAIL P

Re: Swing/AWT on ARM

2002-02-06 Thread shudo
> Basically, I can get the VM to do basic text-based apps (compiled on > 1.3.1sdk on linux/i386), but can't get even a simple AWT or Swing app > to run in the same manner. I can run a Swing based application at least. It's `IPAQDemo.jar' mentioned in the announce of J2SE for Linux/ARM: http://

Re: Swing jsdk1.3 not working!!!!!!

2000-11-13 Thread Nathan Meyers
Erick, Check to make sure you don't also have Kaffe installed, or, if you do, make sure that the SDK is in your path first. Nathan   erick wrote: Hi guys, how are you all,,  I just got my Mandrake 7.2 happening, and got the new jsdk1.3 so, it works fine with any package but swing, it says t

Re: Swing or AWT

2000-10-23 Thread Man Chi Ly
although I can't say it's the best introductory book out there, please go check out: http://www.bruceeckel.com/TIJ2/index.html You'll get more positive answers if the questions are related to _both_ Java _and_ Linux. The online Java Tutorial at java.sun.com isn't bad either. On Mon, 23 Oct 2000

Re: swing on suse linux on ldk1.2

2000-01-21 Thread Peter Pilgrim
[EMAIL PROTECTED] wrote: > > On Thu, 20 Jan 2000 [EMAIL PROTECTED] wrote: > > > does any one know why swing is not working on a suse linux box with > > jdk1.2? > > generally what do i need to do to run swing with jdk1.2 > > What version of SuSE are you using? When I tried the most recent versio

Re: swing on suse linux on ldk1.2

2000-01-20 Thread Peter Mount
On Thu, 20 Jan 2000 [EMAIL PROTECTED] wrote: > does any one know why swing is not working on a suse linux box with > jdk1.2? > generally what do i need to do to run swing with jdk1.2 What version of SuSE are you using? When I tried the most recent version from blackdown on my 6.3 box last week,

Re: Swing with ibm jdk 1.1.8

1999-11-09 Thread Daniel P. Zepeda
I think you have to set JAVA_HOME to /path/to/jdk118 Thus spake Pere Serra on Tue, 09 Nov 1999: > I've downloaded ibm jdk 1.1.8 and it works with text mode programs, but when I > try to run a swing application it doesn't work. I put the file rt.jar in the > classpath then java says Class not foun

Re: Swing with ibm jdk 1.1.8

1999-11-09 Thread Nathan Meyers
Pere Serra wrote: > > I've downloaded ibm jdk 1.1.8 and it works with text mode programs, but when I > try to run a swing application it doesn't work. I put the file rt.jar in the > classpath then java says Class not found: java.lang.System. > > Does anyone know what am I doing wrong ? You're t

Re: Swing with ibm jdk 1.1.8

1999-11-09 Thread Peter Graves
Try putting swingall.jar in your CLASSPATH, rather than rt.jar. Works for me. -Peter Pere Serra wrote: > > I've downloaded ibm jdk 1.1.8 and it works with text mode programs, but when I > try to run a swing application it doesn't work. I put the file rt.jar in the > classpath then java says Cl

Re: swing and syntax question

1999-09-28 Thread John N. Alegre
There always has to be one top level peer to connect to the video hardware. I think the correct is that Window, Dialog and Frame are heavyweight. I the awt every component was heavyweight. With Swing, Java is doing the drawing for button, scroller etc. john On 27-Sep-99 berry wrote: > > >> >

Re: swing and syntax question

1999-09-27 Thread Vartan Piroumian
Swing still has four heavyweight containers. These must have native peers. They must. At some point, there must be a window that has a corresponding native platform window (Motif, Windows, whatever). There must be some native window that can be displayed by the native platform. Usually this

Re: swing and syntax question

1999-09-27 Thread Michael Emmel
berry wrote: > > > Another question: > > > > > > With Swing classes, at what point is native code actually > > > called to do drwing . If you could tell me, I am wondering what classes > it > > > happens in and what is specifically happening. In 1.1 it would be > > > the peer classes. > > > > I

Re: swing and syntax question

1999-09-27 Thread berry
> > Another question: > > > > With Swing classes, at what point is native code actually > > called to do drwing . If you could tell me, I am wondering what classes it > > happens in and what is specifically happening. In 1.1 it would be > > the peer classes. > > I know that one : ) > swing uses

Re: swing and syntax question

1999-09-26 Thread Will Koffel
At 8:48 PM -0400 9/25/99, berry wrote: >Hi, > >I was wondering if anyone knows what this following >code means? > >public Rectangle getBounds() { >return JFrame.this.getBounds(); >} Hi Berry. I didn't feel like anyone has given a clear enough response here, so in case you still don't see

Re: swing and syntax question

1999-09-25 Thread alx
On Sat, 25 Sep 1999, berry wrote: > Hi, > > I was wondering if anyone knows what this following > code means? > > public Rectangle getBounds() { > return JFrame.this.getBounds(); > } Hmm... I would say it's getting the bounds of the frame containing the rectangle. It doesn't look like

Re: swing and syntax question

1999-09-25 Thread Michael Emmel
berry wrote: > Hi, > > I was wondering if anyone knows what this following > code means? > > public Rectangle getBounds() { > return JFrame.this.getBounds(); > } That sort of code is used in inner classes. One of the swing programmers seems to make a habit of it. If you have a lot of in

Re: Swing PLAF color properties?

1999-09-16 Thread Patrick Ohnewein
Check out UIManager.getColor(String) and for the keys check out http://www.gargoylesoftware.com/papers/plafdiff.html there are shown the differences, but I look to it very ofter to get the right keys! Hope this helps Patrick Jani Mikkonen wrote: > > Actually my question is not straing l

Re: Swing Problems

1999-09-15 Thread Jeff Galyan
Make sure you're using correct package naming in your Swing apps; i.e., javax.swing NOT com.sun.java.swing. --Jeff Robert Mullen wrote: > > Are the swing classes supported in the blackdown port of the 1.2 JDK? I can > write, compile and execute code properly if I don't use swing but anything >

Re: Swing Problems

1999-09-15 Thread Thomas M. Sasala
Linux JDK 1.2 is the same as all other JDK 1.2's. It wouldn't be called Java if it wasn't. Robert Mullen wrote: > > Are the swing classes supported in the blackdown port of the 1.2 JDK? I can > write, compile and execute code properly if I don't use swing but anything > that uses swing

Re: Swing Problems

1999-09-15 Thread peter pilgrim
[EMAIL PROTECTED] wrote: > Are the swing classes supported in the blackdown port of the 1.2 JDK? I can > write, compile and execute code properly if I don't use swing but anything > that uses swing bombs with and a class not found error. This includes the > demo's that came with the installation

Re: Swing version w/ 1.2 pre-2?

1999-08-23 Thread Peter Pilgrim
[EMAIL PROTECTED] wrote: > > I've been doing 1.1 programming with Swing 1.1.1 beta2, and now am > upgrading to Swing 1.2. I've noticed, though, that some of Swing's > newer features aren't there - so moving to 1.2 is actually a > "downgrade" as far as Swing is concerned. > > The feature that I

Re: Swing doesnt seem to work with 32bit X11 colour depth.

1999-08-14 Thread Nathan Meyers
Mark O'Donohue wrote: > > Hi > > I changed my X11 colour depth to 32bit and now swing doesn't run. I get > the following error message. JDK1.2 Graphics2D rendering works with depths and models that tend to be found on Solaris; XFree86 confuses it at many of high-depth settings it offers. Nath

Re: Swing Priority

1999-07-21 Thread Michael Emmel
BAZLEY Sebastian wrote: > In case anyone is interested, there is a useful description of such issues > in the O'Reilly book "Java Threads", chapter 6 "Java Thread Scheduling", > which discusses some popular scheduling implementations. > > A couple of suggestions (not tested): > > If you don't wan

RE: Swing Priority

1999-07-21 Thread BAZLEY Sebastian
In case anyone is interested, there is a useful description of such issues in the O'Reilly book "Java Threads", chapter 6 "Java Thread Scheduling", which discusses some popular scheduling implementations. A couple of suggestions (not tested): If you don't want to use MIN priority, you may be abl

Re: Swing API

1999-07-16 Thread Jeff Galyan
Who told you you can't use the Solaris Swing download on Linux? It's 100% Java, and works just fine on Linux. --Jeff Kontorotsui wrote: > > On 14-Jul-99 R MUTHUSWAMY wrote: > > i am using java1.1.7 and i want swing api's for linux. i have > > heard that i can't use the solaris files f

RE: Swing API

1999-07-14 Thread Kontorotsui
On 14-Jul-99 R MUTHUSWAMY wrote: > i am using java1.1.7 and i want swing api's for linux. i have > heard that i can't use the solaris files for swing. And also there is no > swing available for linux for earlier versions. I used Swing for JDK1.1.7 before switching to 1.2, you can find S

Re: Swing API

1999-07-14 Thread Mark O'Donohue
Hi Yep it works fine, you need the solaris download, extract the file swingall.jar and place it in your classpath. I believe the latest release swing 1.1 beta3 is the last that will be backported to run on jdk1.1 all others will run only on 1.2. There is doco at the swing connection which desc

Re: Swing API

1999-07-14 Thread Yoav . Lehiman
an/ECI Telecom) Subject: Re: Swing API On Wed, 14 Jul 1999, R MUTHUSWAMY wrote: >hi, > >i am using java1.1.7 and i want swing api's for linux. i have >heard that i can't use the solaris files for swing. And also there is no >swing available for linux for earlier ve

Re: Swing API

1999-07-14 Thread William Gallafent
On Wed, 14 Jul 1999, R MUTHUSWAMY wrote: >hi, > > i am using java1.1.7 and i want swing api's for linux. i have >heard that i can't use the solaris files for swing. And also there is no >swing available for linux for earlier versions. Tell me about the swing >details. First, you may want t

Re: Swing -- AWT dependencies

1999-07-08 Thread jools enticknap
>I was wondering to what extent Swing depends on the native AWT Toolkit in >the JVM. In (simplistic) theory the toolkit primarily needs to be able to >supply a particular platform's implementation of a frame, and a drawing >surface. In other words, the only heavyweight peers involved are for fram

Re: Swing on Linux

1999-06-11 Thread daly
there used to be a bug in JDK that loaded ALL of the font files before starting Swing. perchance the bug has resurfaced. there used to be a FONTS environment variable that controlled the loading location. the fix was to set up a fonts directory with a small number of fonts and point the environm

Re: Swing on Linux

1999-06-11 Thread Louis Tribble
Nelson Minar wrote: > > >How can I get the swing classes for jdk117v3 > > Are there any tricks to making the first Swing > windows you create come up faster, so it at least feels faster? The main thing I can suggest is to make sure you're not doing any heavy lifting before your first window _fi

Re: Swing on Linux

1999-06-11 Thread Seth M. Landsman
On Fri, Jun 11, 1999 at 12:07:12PM -0400, Nelson Minar wrote: > >How can I get the swing classes for jdk117v3 > > Go to http://java.sun.com/, find the Swing page, and download the > release. All you really need out of it is swingall.jar, put it in your > classpath and you're set. > > A bit more

Re: Swing on Linux

1999-06-11 Thread Nelson Minar
>How can I get the swing classes for jdk117v3 Go to http://java.sun.com/, find the Swing page, and download the release. All you really need out of it is swingall.jar, put it in your classpath and you're set. A bit more on the Swing front - I was confusing slowness on startup with general slowne

Re: Swing on Linux

1999-06-11 Thread Bob Cadenza
How can I get the swing classes for jdk117v3, I already have jdk1.2v2 can I just use the swing that comes with that? If so how/what do I move? _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Swing on Linux

1999-06-11 Thread Nelson Minar
>>I've just started looking at using Swing for my Java project. >Question: doesn't java 1.2 include the swing classes? If you're >"just start"-ing to look at swing, why not start with java 1.2 instead? Because I have 25,000 lines of code with scary classloader and RMI hacking that I haven't port

Re: Swing on Linux

1999-06-11 Thread Larry Gates
>I've just started looking at using Swing for my Java project. It seems >really really slow. Is anyone here seriously using Swing under Linux, >without a JIT? Is there some way to improve things? Do JITs make >enough difference to make it bearable? Question: doesn't java 1.2 include the swing cl

Re: Swing on Linux

1999-06-10 Thread Peter Graves
My experience is quite similar to Armen's. My Swing app is a programmer's editor that I use heavily on both Linux and NT. I too have found Linux JDK 117v3 green threads to be a very nice environment. In my experience, TYA helps significantly, and I've never seen it introduce any instability. N

Re: Swing on Linux

1999-06-10 Thread Armen Yampolsky
Nelson, We are working on a CORBA-based java client that is pretty weighty in terms of Swing components -- JSplitPane, bunches of JInternalFrames, etc., all on the screen at once. Working on Linux using JDK117 v3, no JIT, it is certainly bearable, IMO. It is slow, Java in general is slow, unfortu

Re: Swing on Linux

1999-06-10 Thread Cynthia Jeness
Nelson, I seriously use Swing under Linux for a Media Librarian system. The performance that I see under Linux is comparable to the other platforms that I have access to; i.e., OS/2, Solaris 7 and Win98. In fact, Swing under Linux runs better than under OS/2 because of the lack of the JIT. I t

Re: Swing on Linux

1999-06-10 Thread Seth M. Landsman
On Thu, Jun 10, 1999 at 07:45:49PM -0400, Nelson Minar wrote: > I've just started looking at using Swing for my Java project. It seems > really really slow. Is anyone here seriously using Swing under Linux, > without a JIT? Is there some way to improve things? Do JITs make > enough difference to m

RE: swing package

1999-05-28 Thread Peter Schuller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > I had thought that JFC was now part of the 1.2 standard release. It is, but the JDK in question is 1.1. / Peter Schuller - --- PGP userID: 0x5584BD98 or 'Peter Schuller <[EMAIL PROTECTED]>' E-Mail: [EMAIL PROTECTED] Web: http://hem.passagen.se/pe

Re: swing package

1999-05-28 Thread Nathan Meyers
PM > To: Justin Permar; Justin Permar > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: swing package > > Swing is a seperate package, available from Sun/Javasoft > (http://java.sun.com) > > Try the Swing-1.1.1 Beta 2 package. > > Peter > > Justin Pe

RE: swing package

1999-05-28 Thread ssalkin
:29 PM To: Justin Permar; Justin Permar Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: swing package Swing is a seperate package, available from Sun/Javasoft (http://java.sun.com) Try the Swing-1.1.1 Beta 2 package. Peter Justin Permar wrote: > > I downloaded the jdk 1.1.7 version

Re: swing package

1999-05-28 Thread Peter Eddy
Swing is a seperate package, available from Sun/Javasoft (http://java.sun.com) Try the Swing-1.1.1 Beta 2 package. Peter Justin Permar wrote: > > I downloaded the jdk 1.1.7 version 3 for linux (redhat, glibc). While > attempting to compile an applet, I imported the javax.swing package. > Unfo

Re: swing

1999-05-19 Thread James Seigel
Talk with people on advanced-java. J. Pooh Bear -- "I am just a bear of little brain" On Wed, 19 May 1999, Ozer Irfan wrote: > Hello > > How implements right click button in swing. > > Thanks > > bye > > > > > __ > Message env

Re: Swing

1999-05-17 Thread Wim Ceulemans
> does anyone know where I can find a copy of Swing >for Linux? I've downloaded JDK 1.1.7 but can't find >Swing. > Swing is 100% pure java Wim -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trou

Re: Swing

1999-05-17 Thread Ernst de Haan
Check out JavaSoft, 'cause Swing is Platform Independent =) The URI is: http://java.sun.com/products/jfc/ GreetinX++, Ernst Kristian Guillaumier wrote: > > Hi, > does anyone know where I can find a copy of Swing > for Linux? I've downloaded JDK 1.1.7 but can't find > Swing. > > Regards

Re: Swing

1999-05-17 Thread Chris Abbey
swing is pure java. http://java.sun.com/products/jfc/ should be a good start. At 08:26 PM 5/17/99 -0700, Kristian Guillaumier wrote: >Hi, > does anyone know where I can find a copy of Swing >for Linux? I've downloaded JDK 1.1.7 but can't find >Swing. !NEW!-=> <*> cabbey at home dot net http:/

Re: Swing never waits?

1999-05-09 Thread Jeff Galyan
Michael Durket wrote: > > I started up the SwingSet demo and noticed how slow it was. I ran > top and noticed that even when I was doing nothing (i.e. no mouse > moves, no selections, just sitting there) the demo was eating up > 16 MB of memory and 50-60% of my cpu. It seems as if the virtual > m

Re: Swing never waits?

1999-05-05 Thread Ted Neward
>This sounds suspicious. Is this conjecture or based on analyzing the Swing code? >There's always an AWT window under a top-level Swing window, and I would expect >Swing to be using AWT events to be tracking input devices. > A little conjecture, a little analysis. Swing uses the AWT event queue, t

Re: Swing never waits?

1999-05-05 Thread Nathan Meyers
Michael Emmel wrote: > I wish java soft would provide a simple debug switch for the EventLoop > > heres what I do > > take the instance and event class as args > > Toolkit.getDefaultToolkit().getSystemEventQueue().debug( myFrame, > MouseEvent.class ); //add more agres if needed lik

Re: Swing never waits?

1999-05-05 Thread Michael Emmel
Nathan Meyers wrote: > Ted Neward wrote: > > Because Swing is a fully lightweight library, it can't rely on any of the > > operating-system-specific constructs underneath the JVM to more efficiently > > make use of the CPU. Instead, it spins off a daemon thread to (basically) > > poll the OS for

Re: Swing never waits?

1999-05-05 Thread Peter Schuller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > Because Swing is a fully lightweight library, it can't rely on any of the > operating-system-specific constructs underneath the JVM to more efficiently > make use of the CPU. Instead, it spins off a daemon thread to (basically) > poll the OS for the

Re: Swing never waits?

1999-05-05 Thread Nathan Meyers
Ted Neward wrote: > Because Swing is a fully lightweight library, it can't rely on any of the > operating-system-specific constructs underneath the JVM to more efficiently > make use of the CPU. Instead, it spins off a daemon thread to (basically) > poll the OS for the mouse position and informati

Re: Swing never waits?

1999-05-05 Thread corey
> I've never measured the CPU occupation of an AWT app, though; might be > interesting to run an AWT example and see if it takes up the same amount of > CPU. If not, then Swing's obviously doing things in the background that an > AWT app's not. (Maybe just filtering the events through all the eve

Re: Swing never waits?

1999-05-05 Thread Ted Neward
>I started up the SwingSet demo and noticed how slow it was. I ran >top and noticed that even when I was doing nothing (i.e. no mouse >moves, no selections, just sitting there) the demo was eating up >16 MB of memory and 50-60% of my cpu. It seems as if the virtual >machine never waits (at least w

Re: Swing?

1999-03-21 Thread Jeff Galyan
You can get Swing from java.sun.com. It is 100% Java (no native code), so there is no need for the Java-Linux team (or anyone else) to port it. Peter vdW wrote: > > There is a link to your page from FreeBuilder suggesting that we can > download the following from your site (or at least find a l

Re: Swing?

1999-03-21 Thread Stephen Pitts
On Sun, Mar 21, 1999 at 05:53:07PM +1100, Peter vdW wrote: > There is a link to your page from FreeBuilder suggesting that we can > download the following from your site (or at least find a link to it > there): > > Swing 1.0.x (preferably 1.0.3) > > But I was unable to find a mention of it at al

RE: Swing 1.1 & Netscape Communicator?

1999-02-11 Thread Jim Caley
1999 08:36:31 -0500 > Subject: >Re: Swing 1.1 & Netscape Communicator? > > > On my RedHat machine, I replaced the soft link in /usr/bin with > a shell script which sets the classpath: > > #!/bin/bash > > export MOZILLA_HOME=/usr/lib/netscape > > for i i

Re: Swing 1.1 & Netscape Communicator?

1999-02-11 Thread pridemor
On my RedHat machine, I replaced the soft link in /usr/bin with a shell script which sets the classpath: #!/bin/bash export MOZILLA_HOME=/usr/lib/netscape for i in ${MOZILLA_HOME}/java/classes/*.jar do CP=${CP:-.}:$i done for i in /path/to/swing/*.jar do CP=${CP:-.}:$i done unset i

Re: swing

1999-02-03 Thread Christopher Hinds
Swing / JFC 1.1 is 100% pure java and therefore can be used with any JDK 1.1 complient JRE. You should be able to download the tar ball from sun directly. Cheers Chris Charlie Fulton wrote: > is swing available to use with your linux port? > > thanks, > > -Charlie. > > btw, great job on the por

Re: Swing Core Dump...?

1999-01-25 Thread TJ Saunders
Hmmm...The new kernel didn't require glibc, as it compiled and now boots fine using just libc5. As a double-check, I downloaded and reinstalled the Blackdown JDK1.1.5v6, which now works as well, Swing and all. That problem is solved, but it begs the question: what was it about the JDK1.1.6 tha

Re: Swing Core Dump...?

1999-01-23 Thread peter johnson
It's not xfree, per se. But your new kernel may require libc6 (glibc); this would mean you have to install the glibc version of JDK. If this is the problem, you may want to go ahead and install 1.1.7 while you're at it. TJ Saunders wrote: > Hello, all. Up until recently, I was doing just fi

Re: Swing Core Dump...?

1999-01-22 Thread David Harvill
I can tell you that it is /not/ because of the .36 kernel, at least by itself. I have used the .36 kernel for quite some time now, and not had any java problems with it at all, JDK 1,1,7va -dave

Re: Swing for Linux

1998-12-30 Thread Christopher Hinds
Java 2 ( AKA JDK 1.2 ) does have swing ( AKA JFC ) included as a standard extension ( "javax.*" ) package. For any other JDK 1.1.x release you can download the current version of JFC\swing from sun directly and use it because in is 100% pure java. I hope this clears it up for you. Cheers Chris :-

Re: Swing applications + TYA 1.2?

1998-12-14 Thread Gerald Preissler
Bryce McKinlay <[EMAIL PROTECTED]> writes: > I was going to send this to Albrecht Kleine (author of TYA), but can't seem to > resolve his mail address, so I'll post it here. Origional message follows: > > -- [error message sniped] > Environment: - Kernel 2.1.131ac8 - glibc 2.0.7-29 - J

Re: Swing applications + TYA 1.2? [update]

1998-12-13 Thread Bryce McKinlay
Michael Emmel wrote: > I know the method I crash thre often. It inits the gui. > If the sleep work it means he has a race in his Jit. By sleeping your app it > gives the Jit a chance to run through the new code. > That a big method and hes not through jitting it before other stuff gets > cal

Re: swing-1.1beta3

1998-12-03 Thread Pavel Tolkachev
[EMAIL PROTECTED] wrote: > > I'm having some problems to install swing-1.1beta3 on RH5.2. > > 1. I installed jdk in /java/jdk117_v1a/ > 2. I downloaded swing11-beta3.tar.z into /java > 3. tar xvzf swing11-beta3.tar.z created directory /java/swing-1.1beta3 + 60 > html files own by user uucp and

Re: swing-1.1beta3

1998-12-03 Thread ÇÑ»óÇõ
[EMAIL PROTECTED] wrote: > I'm having some problems to install swing-1.1beta3 on RH5.2. > > 1. I installed jdk in /java/jdk117_v1a/ > 2. I downloaded swing11-beta3.tar.z into /java > 3. tar xvzf swing11-beta3.tar.z created directory /java/swing-1.1beta3 + 60 > html files own by user uucp and

Re: swing-1.1beta3

1998-12-03 Thread peter . pilgrim
Until JDK 1.2 arrives for Linux you include the path to swing.jar in your CLASSPATH explicitly a la export SWING_HOME=/usr/local/swing-1.1-beta3 export CLASSPATH=.${SWING_HOME}/swingall.jar Pete __ Reply Separator _ Subject: swing-1.

Re: Swing on Blackdown jdk1.1.6

1998-11-14 Thread David Warnock
** Reply to message from [EMAIL PROTECTED] on Sat, 14 Nov 1998 00:25:31 EST > I got an app from someone. It included swing.jar.I > "un-jarred" it. But seriously.. should it be in the > same directory subtree under "src" with "lang" "io" > and other stuff? Or should it be in "l

Re: swing 4 linux

1998-11-11 Thread Martin Sorgatz
alex andrejin wrote: hi! i would like to know if there is a swing version for linux and where i could get it. thanks, alex a. __ Get Your Private, Free Email at http://www.hotmail.com Hi! There is no linux version of swing. As swing is 100% java

Re: Swing 1.0.3

1998-10-21 Thread Miguel Mateos Lopez
> // assuming bash or korn shell > > Pete > >and Stop apologising for your English >because it is good. > > !muy bien! Mi apprendido Espanyol. > > __________ Reply Separator _ &g

Re: Swing 1.0.3

1998-10-20 Thread peter . pilgrim
grade by December. The second phase will support Swing beta 1.3 with the javax.swing.* et el. I will update my web. I think this is better solution. Pete __ Reply Separator _ Subject: Re: Swing

Re: Swing 1.0.3

1998-10-20 Thread mlorton
> setenv JAVA_HOME /home/jdk116_v5 > setenv SWING_HOME /home/swing-1.1beta3 ^ > java.lang.NoClassDefFoundError: com/sun/java/swing/ImageIcon > at xenon.xsql.editor.Xsql.(Xsql.java:142) > at xenon.xsql.editor.Xsql.main(Xsql.java:670) You are

Swing1.1 beta 3 [was Re: Swing 1.0.3]

1998-10-20 Thread peter . pilgrim
_ Subject: Re: Swing 1.0.3 Author: Peter Pilgrim at London Date:20/10/98 12:17 Aaaah, Schei**er!! Rainer you are quite correct: http://java.sun.com/products/jfc/CHANGES.txt-1.1beta3

Re: Swing 1.0.3

1998-10-20 Thread peter . pilgrim
javax.swing.undo The following package names are unchanged: com.sun.java.swing.plaf.motif com.sun.java.swing.plaf.windows = Bug Fixes = __ Reply Separator _ Subject: Re: Swing 1.0.3 Author

Re: Swing 1.0.3

1998-10-20 Thread peter . pilgrim
lem I will put in the next release notes. Pete __ Reply Separator _________ Subject: Re: Swing 1.0.3 Author: duan ([EMAIL PROTECTED]) at lon-mime Date:20/10/98 08:28 hi i seem to have that problem too. I am trying to use Xsql which req

Re: Swing 1.0.3

1998-10-20 Thread Rudhuwan Abu Bakar
sorry about that ok here it is setenv JAVA_HOME /home/jdk116_v5 setenv SWING_HOME /home/swing-1.1beta3 setenv CLASSPATH .:/usr/java/habanero/ristra:/usr/java/habanero/ristra/demos:/usr/java/habanero/ ristra/tools:/home/jdk116_v5/lib/classes.zip:/home/swing-1.1beta3/swingall.jar: /home/swing-1

Re: Swing 1.0.3

1998-10-20 Thread peter . pilgrim
Separator _ Subject: Re: Swing 1.0.3 Author: tyrano ([EMAIL PROTECTED]) at lon-mime Date:19/10/98 17:58 Hi!! I have some problems with the file swing.jar. When I compile an example, the compiler returns errors. It doesn't find out inc

Re: Swing 1.0.3

1998-10-20 Thread Rainer Werlein
On Tue, 20 Oct 1998 15:28:10 +0800 (MYT), Rudhuwan Abu Bakar wrote: > >hi > >i seem to have that problem too. > >I am trying to use Xsql which required swing.jar.Although i already put it >the full path in there,it seems that the program cannot find the >swing.jar.By the way I am using Swing 1.1B

Re: Swing 1.0.3

1998-10-20 Thread Ernst de Haan
Rudhuwan Abu Bakar wrote: > i seem to have that problem too. It's a good thing to describe the _exact_ problem. What is your CLASSPATH setting? What is your swing home directory? What is your JDK home directory? What is the exact message you get? Plz, if you want an answer, make sure the que

Re: Swing 1.0.3

1998-10-20 Thread Rudhuwan Abu Bakar
hi i seem to have that problem too. I am trying to use Xsql which required swing.jar.Although i already put it the full path in there,it seems that the program cannot find the swing.jar.By the way I am using Swing 1.1Beta3.Is it because of the beta version?The thing is that only me got that pro

Re: Swing 1.0.3

1998-10-20 Thread Ernst de Haan
Miguel Mateos Lopez wrote: > Hi!! Hi to you too. > I have some problems with the file swing.jar. When I compile an example, > the compiler returns errors. It doesn't find out included packages in > swing.jar. CLASSPATH is OK. Please include the error messages :^| And are you sure you want

Re: Swing 1.0.3

1998-10-20 Thread Alexander Davydenko
Troy Wu wrote: > On Mon, 19 Oct 1998, Miguel Mateos Lopez wrote: > > I have some problems with the file swing.jar. When I compile an example, > the compiler returns errors. It doesn't find out included packages in > swing.jar. CLASSPATH is OK. > > Are you putting the full classpath

Re: Swing 1.0.3

1998-10-20 Thread Miguel Mateos Lopez
On Tue, 20 Oct 1998, Miguel Mateos Lopez wrote: Yes, I'm putting the full path. I'm same problem with xml.jar. Thank you for your help. On Mon, 19 Oct 1998, Troy Wu wrote: > On Mon, 19 Oct 1998, Miguel Mateos Lopez wrote: > > I have some problems with the file swing.ja

Re: Swing 1.0.3

1998-10-19 Thread Troy Wu
On Mon, 19 Oct 1998, Miguel Mateos Lopez wrote: I have some problems with the file swing.jar. When I compile an example, the compiler returns errors. It doesn't find out included packages in swing.jar. CLASSPATH is OK. Are you putting the full classpath; i.e.: C

Re: Swing and Threads

1998-10-11 Thread Gerald Gutierrez
> Short answer the UI used a single DPSContext you were free to create as many as > you wanted. Thre creation is expensive > I never used more than two. > The Contexts were individually thread safe. So you can eather create a new Context > or manage your default one. > You were gasp given a ch

Re: Swing and Threads

1998-10-11 Thread Michael Emmel
Gerald Gutierrez wrote: > > > Well that illustrates my point. A developer should not have to do that. > > > The Swing team should provide the queue interface it should not have to be > > > cobbled together by every developer that wants to write a complex graphics > > > program. > > > I never had

Re: Swing and Threads

1998-10-11 Thread Gerald Gutierrez
> > Well that illustrates my point. A developer should not have to do that. > > The Swing team should provide the queue interface it should not have to be > > cobbled together by every developer that wants to write a complex graphics > > program. > > I never had any problems with Display Postscri

Re: Swing and Threads

1998-10-11 Thread Dan Kegel
Dave Postill wrote: > On 7 Oct 1998 16:40:34 GMT, [EMAIL PROTECTED] (Mohd) wrote: > | I have a swing application which needs to start two threads. The threads use > | Runnable classes. When I start the threads from inside my Swing application, > | The application hangs completely. I know the probl

Re: Swing error

1998-10-01 Thread Cynthia Jeness
Syed Mubin wrote: > ___ > ___ > Syed Mubeen Tata Institute of Fundamental Research, > [EMAIL PROTECTED] P.B #1234, > 80-334-5615 or 4062 or 3035 IISc Campus, > Resi :3452848 Banga

Re: Swing menu problem

1998-10-01 Thread Jason Dillon
I stand corrected. I don't know what I was thinking exactly. I tried this again with v4a and it works fine. I guess it has been one of those days. My apologies for any headaches I may have caused. Thanks you Juergen for catching my mistake. Unfortunately I am still having Socket problems wit

Re: Swing menu problem

1998-09-30 Thread Juergen Kreileder
> Jason Dillon writes: Jason> I have sent mail to [EMAIL PROTECTED] describing Jason> the problem. I included this code to test the menus as Jason> well: [...] Jason, I've tried your example with swing-1.0.3, swing-1.1beta2 and various jdk versions. v4a, v5 work fine, only v2

Re: Swing menu problem

1998-09-30 Thread Jason Dillon
I have sent mail to [EMAIL PROTECTED] describing the problem. I included this code to test the menus as well: import java.awt.*; import java.awt.event.*; import com.sun.java.swing.*; import com.sun.java.swing.event.*; public class Test extends JFrame { public static void main (String ar

Re: Swing menu problem

1998-09-30 Thread Jason Dillon
I am using Window Maker (0.20.1). I do not have this problem with fvwm or fvwm2. Thanks. --jason On 30-Sep-98 Kevin B. Hendricks wrote: > Hi, > > The offset menu problem has been fixed in v4a (and v3). If you are still > seeing it with v4a, please let me know what window manager you are usi

Re: Swing menu problem

1998-09-30 Thread Kevin B. Hendricks
Hi, The offset menu problem has been fixed in v4a (and v3). If you are still seeing it with v4a, please let me know what window manager you are using. Juergen Kreileder, one of the Blackdown porters, has done lots of testing on this issue (and other awt related issues with window managers) and

Re: Swing: Can't find class ClassName

1998-09-22 Thread Michael Sinz
On Tue, 22 Sep 1998 14:16:39 -0700, William Tchen wrote: >Thanks for your suggestion, but I think the CLASSPATH variable on my system >is properly set (which includes >swingall.jar), otherwise I can't compile a file that refer to Swing classes. >My CLASSPATH is: > >CLASSPATH=.:/JAVA/jdk1.1.6/lib/

Re: Swing: Can't find class ClassName

1998-09-22 Thread William Tchen
Gordon Chamberlin wrote: > > William Tchen wrote: > > > > Hi, > > I have a question concerning JFC. I'm using blackdown's jdk1.1.6v2 on > >. > > Anyone got some idea? Please give some suggestion, it is greatly > > appreciated. > > William Tran > > > I believe you have to explicitly pl

  1   2   >