Search the web
Sign In
New User? Sign Up
ibm-netrexx
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 683 - 713 of 1480   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
683
Is there any way to subclass a class which has no no-arg constructor (class blafasel())? And is it a limitation of NetRexx, that such a constructor is ...
K.-P. Kirchdoerfer
kapeka@...
Send Email
Aug 8, 1999
5:30 pm
684
Does anyone know if there is a trick to compiling a NetRexx file whose pathname contains a space (e.g. like "D:\Program Files\bin\netrexx\myCoolStuff.nrx")? ...
Anthony B. Coates
abcoates@...
Send Email
Aug 8, 1999
11:23 pm
685
... Yes -- you always need a call to a constructor of the superclass. NetRexx adds one automatically for you if you don't specify one, but the only one it can...
MFC@...
Send Email
Aug 9, 1999
9:44 am
686
Hmm, javac didn't allow compilation of files with spaces in their names, but I see that in 1.2 that's now allowed (using "...."). I'll add this to wishlist...
MFC@...
Send Email
Aug 9, 1999
12:48 pm
687
... Ok, I've got it. Thanks to Mike and Dion for immediate response and help. kp -- K.P.Kirchdoerfer Voice: +49 431 15479 24116 Kiel...
K.-P. Kirchdoerfer
kapeka@...
Send Email
Aug 9, 1999
11:25 pm
688
** Reply to message from MFC@... on Mon, 9 Aug 1999 12:06:02 +0100 ... Ah, but that isn't really the issue. I can call ...
Anthony B. Coates
abcoates@...
Send Email
Aug 11, 1999
2:09 pm
689
More thinking of adding the String[] option to the 'direct call' main method. Seems more useful :-) (Have already enhanced to allow quoted names in that call,...
MFC@...
Send Email
Aug 11, 1999
3:58 pm
690
... If you are in a hurry, and if you are developing an application (not an applet), you can register your own security manager, and catch the System.exit call...
Martin Lafaix
lafaix@...
Send Email
Aug 12, 1999
8:49 am
691
It's getting late around these parts, but I just had to talk about my great "discovery"... BigDecimal... ;') I gotta' say thanks for this one. All this time I...
Jerry McBride
mcbrides@...
Send Email
Aug 25, 1999
12:42 pm
693
See: http://www.whatis.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mike Cowlishaw, IBM Fellow mailto:mfc@... --...
MFC@...
Send Email
Aug 27, 1999
9:32 am
694
Hi! Can anyone help me with this simple application!? It just shows a window with one button - thats OK! Now i wish to show a counter that increases by 1 every...
Janne Rudwall
janne.rudwall@...
Send Email
Aug 29, 1999
7:59 pm
695
I'm looking for a jikes-version for OS/2, it's a pity they don't have it on alphaworks. Has someone else compiled it? -- Servus, Andreas ...
Andreas Zieritz
zieritz@...
Send Email
Sep 1, 1999
10:07 am
696
... Jikes for OS/2 is at: http://www.ozemail.com.au/~jgprice. I beleive it's at version 1.01. -- ...
Jerry McBride
mcbrides@...
Send Email
Sep 1, 1999
1:17 pm
697
NetRexx 1.151 is now available from: http://www2.hursley.ibm.com/netrexx This refresh has some minor enhancements: * The 'direct call from Java' entry points...
MFC@...
Send Email
Sep 3, 1999
1:24 pm
698
Now that NetRexx 1.151 has been released, I would like to announce a small utility that works with 1.151: 'nr', a batch script utility. NetRexx is a great...
Anthony B. Coates
abcoates@...
Send Email
Sep 5, 1999
7:50 am
699
The NetRexxR.zip is placed in the directory c:\WINNT\Java\classes The classpath (regedit) variable is updated with C:\WINNT\Java\Classes\NetRexxR.zip but I...
Gunnar_Berthelsen@...
Send Email
Sep 8, 1999
4:29 pm
700
... The Java runtime is case-sensitive .. make sure that the classpath variable has exactly the same names at each level (classes, not Classes, for example). -...
MFC@...
Send Email
Sep 8, 1999
6:36 pm
701
Hi Gunnar, Has the path statement been updated to point to the sublibrary where the NetRexxR classes are ? Best Regards, Bob <:-)> ... ...
bob.keller@...
Send Email
Sep 8, 1999
6:46 pm
702
I have run some testcases with interesting results. First, the code... ********************************* class test method main(s=String[]) static test() ...
Andreas Zieritz
zieritz@...
Send Email
Sep 9, 1999
8:05 am
703
... You can set Rexx precision as desired, for example: numeric digits 200 which should be plenty :-) The default precision is 9 digits. ... The code you...
MFC@...
Send Email
Sep 9, 1999
8:36 am
704
Hi Andreas! Latest version: http://www.ozemail.com.au/~jgprice/jikes102_os2.zip John Price is doing this regularly. When it's updated, he announces on...
Dr Tony Dahlman
adahlman@...
Send Email
Sep 13, 1999
3:27 am
705
... One more question. What do you mean with 'decimal'. Does that mean that all kind of explict declared variables (Rexx, int, long, double...) are converted...
Andreas Zieritz
zieritz@...
Send Email
Sep 13, 1999
7:21 am
706
... Yes, that's right .. all arithmetic is done using the Rexx class (which provides a decimal floating point arithmetic). The options for it are controlled...
MFC@...
Send Email
Sep 13, 1999
1:01 pm
707
Some times ago, I made some proposals for NetRexx. My two intentions in doing so were to (1) propose some enhancements and (2) get some comments and possibly...
Martin Lafaix
lafaix@...
Send Email
Sep 14, 1999
8:24 pm
708
Wow, next you'll be asking for Continuations. http://www.math.grin.edu/~rebelsky/Courses/CS302/99S/Outlines/outline.07.html#continuations -HJC ...
Henry J. Cobb
hcobb@...
Send Email
Sep 14, 1999
10:12 pm
709
Excuse my less than perfect knowledge in Java. How do I code the following in netrexx? <java on> IConsumer consumer1 = (IConsumer) Factory.create(...
Bjorn Gustafsson
bjorne-g@...
Send Email
Sep 15, 1999
7:34 pm
710
Hi! I get the following when i try to run my applet from my web-server error: java.lang.NoClassDefFoundError: co In co i connect to my DB2. I have my applet in...
Janne Rudwall
janne.rudwall@...
Send Email
Sep 15, 1999
7:53 pm
711
The Java: <java> IConsumer consumer1 = (IConsumer) Factory.create( "examples.space.Consumer", new Object[]{ "jack" }); </java> would become (untested): ...
MFC@...
Send Email
Sep 15, 1999
9:06 pm
712
... Or ... [Object (String "jack")] ... if the NetRexx class is not a binary one. Martin, nitpicker in chief -- lafaix@... Team OS/2 ...
Martin Lafaix
lafaix@...
Send Email
Sep 15, 1999
9:11 pm
713
Thats what made it work. Thanks a lot! ... From: Martin Lafaix <lafaix@...> To: Netrexx Mailing List <ibm-netrexx@...> Date: den 15 september...
Bjorn Gustafsson
bjorne-g@...
Send Email
Sep 23, 1999
1:02 pm
Messages 683 - 713 of 1480   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help