Como estas?

1999-02-14 Thread sdcdc dcsdsfc
http://salman.nu/ministerio/ __ Get Your Private, Free Email at http://www.hotmail.com

Re: Mailing List

1999-02-14 Thread JONATHAN HEMINGWAY
> I would like to be taken off your mailing list.

Re: CLASSPATH variable too large ?

1999-02-14 Thread Moses DeJong
On Mon, 15 Feb 1999, Ken A Redergard wrote: > I have a large amount of .jar files in the library directory, and that > leads to a very large CLASSPATH variable. > > The seems that java (java version "1.1.7") won't accept the > classpath when it reaches a certain amount of characters. I currentl

CLASSPATH variable too large ?

1999-02-14 Thread Ken A Redergard
I have a large amount of .jar files in the library directory, and that leads to a very large CLASSPATH variable. The seems that java (java version "1.1.7") won't accept the classpath when it reaches a certain amount of characters. I currently have 331 characters in the path, and when I run a .cl

Re: simple imput from command line

1999-02-14 Thread Daniel W. Dulitz x108
cobra writes: > IF my question is too silly please ignore it. Well, you sent it twice. It's pretty silly, and it's off topic, but now I'm worried that if everyone ignores it you'll keep sending it. > I'd need a translation for basic : INPUT "AGE";A import java.io.*; public int getIntegerF

simple imput from command line

1999-02-14 Thread cobra
Hope I'm not disturbing too much, probably I'm off topic but I'd need a simple way to imput a number (integer) from keyboard  while a program is running in Java (JINI) I'd need a translation for basic : INPUT "AGE";A   I'm able to do it from command line arg but not inside a program   IF

Mailing List

1999-02-14 Thread Jazzmother
I would like to be removed from your mailing list.

simple imput from command line

1999-02-14 Thread cobra
Hope I'm not disturbing too much, probably I'm off topic but I'd need a simple way to imput a number (integer) from keyboard  while a program is running in Java (JINI) I'd need a translation for basic : INPUT "AGE";A   I'm able to do it from command line arg but not inside a program   IF

Re: java programming

1999-02-14 Thread Moses DeJong
On Sun, 14 Feb 1999, alexander lang wrote: > Hi all. > > Does anyone know if one is allowed to initialize static final variables > within the "try" clause of a static initializer block? > > (eg. > static final int x; > static{ > try > { > x =

Re: java programming

1999-02-14 Thread Daniel W. Dulitz x108
alexander lang writes: > Does anyone know if one is allowed to initialize static final variables > within the "try" clause of a static initializer block? > > (eg. > static final int x; > static{ > try > { > x = 5; > } > catch(exc

java programming

1999-02-14 Thread alexander lang
Hi all. Does anyone know if one is allowed to initialize static final variables within the "try" clause of a static initializer block? (eg. static final int x; static{ try { x = 5; } catch(exception e) {...and s

Mailing List

1999-02-14 Thread Jazzmother
I would like to be taken off your mailing list.

Automated C to Java conversion

1999-02-14 Thread Bernd Kreimeier
I am looking for a Linux tool to generate Java source from C. I am aware of C2J/C2J++. What I need would have to be used repeatedly - the code will be maintained in C. Changing the C code once to match converters restrictions is feasible. Any recommendations? Commercial products included?

Re: createImage() always returns null

1999-02-14 Thread David Wall
Chris wrote: >is the Panel already visible? > >If not, then show() it before getting a Image! Or just do an addNotify() before...this gets the peers started

Re: Problem : can't find class

1999-02-14 Thread Christopher Rowan
Common mistake. You need to have . (current directory) in your PATH. See the leading dot on the example below: CLASSPATH=.:/usr/local/java/lib/classes.zip:/usr/local/java/jsdk/lib/jsdk.jar Vinay Pai wrote: > > Hello, > > I am having the following problem when I try to execute a java progra

Re: Problem : can't find class

1999-02-14 Thread Chris Huebsch
Hello, try adding a "." to the classpath. CLASSPATH=.:/usr/local/java/lib/classes.zip:/usr/local/java/jsdk/lib/jsdk.jar Chris Vinay Pai wrote: > > Hello, > > I am having the following problem when I try to execute a java program , > says : > can't find class test ... > The classpath variab

Problem : can't find class

1999-02-14 Thread Vinay Pai
Hello, I am having the following problem when I try to execute a java program , says : can't find class test This happens although the file test.class and test.java are in the same directory from where I am executing java. I am however able to compile java programs without any problems. Also I c

Re: createImage() always returns null

1999-02-14 Thread Chris Huebsch
Hello, is the Panel already visible? If not, then show() it before getting a Image! greetings Chris Manfred Bartz wrote: > > I want to create an off-screen image in a Swing application. > The program compiles without errors, but createImage() always > returns null. > > The only examples f

createImage() always returns null

1999-02-14 Thread Manfred Bartz
I want to create an off-screen image in a Swing application. The program compiles without errors, but createImage() always returns null. The only examples from the tutorial that contain createImage() are applets (not swing applications) and seem to work fine. For verification, I included the