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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 1138 - 1167 of 1480   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1138
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to ...
Smörk
smoerk@...
Send Email
Feb 17, 2001
2:16 pm
1139
I've experienced the same problems as described on the Netrexx-Homepage. I've found out that it has something to do with the many java.exe versions, that Sun's...
Andreas Zieritz
zieritz@...
Send Email
Feb 21, 2001
2:11 pm
1140
I'm an person with advanced experience in classic rexx trying to bootstrap into the world of oo programming, netrexx and its benefits. As a first project I'd...
Tim Stephen
stephen@...
Send Email
Feb 21, 2001
3:32 pm
1141
Hello MIke, I am happy to report that I did now succeed to boots-trap my REXX --> NetRexx converter from CMS compiled REXX to NetRexx. As a matter of fact, I...
Thomas.Schneider@...
Send Email
Feb 28, 2001
8:29 pm
1142
Hi Marshall, The reason it worked was because you were running jEdit using the JVM (java.exe) from the c:\program file\JavaSoft directory. When you do this the...
Satguru P. Srivastava
srivastava.satguru@...
Send Email
Mar 2, 2001
5:33 am
1143
Registration for the 2001 Rexx Symposium is now open. Why not attend and share your NetRexx experiences with the Rexx community? The symposium runs from 30...
MFC@...
Send Email
Mar 11, 2001
1:48 pm
1144
Is jEdit now majority editor of choice? There have been plugs for free THE and pay-for Kedit (which I like) and I might expect at least one vote for LPEX...
Roy.Gardiner@...
Send Email
Mar 12, 2001
5:35 pm
1145
I use NetBeans with a NetRexx module for compilation that I've written. No colour syntax highlighting yet though. -- dIon Gillard, Multitask Consulting Work:...
dion@...
Send Email
Mar 13, 2001
4:46 am
1146
Hello Mike, it would be nice if 'ask' would allow an optional 'prompt string' as a parameter, for example ... loop forever file=ask('please enter a filename...
Thomas.Schneider@...
Send Email
Mar 15, 2001
12:12 pm
1147
Yes. Would be a nice feature. Thanks Satguru ... From: <Thomas.Schneider@...> To: <mfc@...> Cc: <ibm-netrexx@...> Sent: Thursday,...
Satguru P. Srivastava
srivastava.satguru@...
Send Email
Mar 16, 2001
1:55 am
1148
Hi, I have uploaded a new version (0.03) of the jEdit NetRexx plugin to my site at http://sites.netscape.net/ssatguru. The new version includes the netrexx...
Satguru P. Srivastava
srivastava.satguru@...
Send Email
Mar 16, 2001
5:34 am
1149
... Well, you can already define this simple function: method ask(label) static say label'\-' return ask It will do what you ask for. (Granted, you have to...
Martin Lafaix
lafaix@...
Send Email
Mar 16, 2001
12:38 pm
1150
Hi, Thanks to Patric Bechtel I just found out that the I had bundled a slightly older version of the NetRexx Compiler with the new 0.03 version of the...
Satguru P. Srivastava
srivastava.satguru@...
Send Email
Mar 17, 2001
5:30 am
1151
Couple of points regrading 'ask' 1) One can define ones own 'ask()' method but then that tends to clutter up the code without adding much value to the code. 2)...
Satguru P. Srivastava
srivastava.satguru@...
Send Email
Mar 17, 2001
5:40 pm
1152
I made 'ask' a special name to ease migration from the Rexx 'pull'. For example, one might write: say 'Please enter two numbers: \-' parse ask number1...
MFC@...
Send Email
Mar 18, 2001
8:46 pm
1153
Yes I see that. How about leaving 'ask' as it is but have a RexxIO.Ask(prompt=Rexx) method. Thus if somebody wanted to use 'ask' as a function/method he could...
Satguru P. Srivastava
srivastava.satguru@...
Send Email
Mar 19, 2001
6:03 am
1154
Well, I still have reservations about mixing output and input in same function. And next someone will want a choice of output stream for the prompt......
MFC@...
Send Email
Mar 19, 2001
7:08 pm
1155
Hello Mike & al, I wonder wether there is a LOG-file feature available for a running NetRexx Program. The NetRexx compiler produces a file 'NetRexxC.log' for...
Thomas.Schneider@...
Send Email
Mar 21, 2001
1:53 pm
1156
Hello Dion & al, ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list ( ibm-netrexx ),...
Thomas.Schneider@...
Send Email
Mar 21, 2001
6:04 pm
1157 Thomas.Schneider@...
Send Email
Mar 21, 2001
6:04 pm
1158
A quick look at the generated java code, or use javap on the generated class, should show what is being generated. I woul not expect a type of Rexx to be...
mfc@...
Send Email
Mar 22, 2001
5:30 pm
1159
I have a uploaded a new version of NetRexxJe plugin The new version is Version 0.04 and has following changes ... 1)Added code to compile Java Programs . Now...
Satguru P. Srivastava
srivastava.satguru@...
Send Email
Mar 30, 2001
1:03 am
1160
How can I get the value of specific DOS Environment variables like 'classpath' or 'path' from a running NetRexx/Java program ? I did try :...
Thomas.Schneider@...
Send Email
Apr 4, 2001
10:02 am
1161
Java used to have a built-in way to do that, but then someone pointed out that (a) there wasn't a cross-platform meaning for the concept and (b) things like...
MFC@...
Send Email
Apr 4, 2001
11:15 am
1162
You won't get all the DOS environment variables directly but if 'classpath' and 'path' are all that you are interested in try out the following ...
Satguru Srivastava
SatguruSrivastava@...
Send Email
Apr 4, 2001
2:55 pm
1163
Hello there, the method described by Satguru Srivastava is the one which works perfectly for my needs. A small remark to executing SYSTEM commands from...
Thomas.Schneider@...
Send Email
Apr 4, 2001
5:20 pm
1164
When I try to download the 2.01 documentation (NetRexxD.zip), the file is truncated (752KB - the web page says 771). -- Colin Paul Adams Preston Lancashire ...
Colin Paul Adams
colin@...
Send Email
Apr 15, 2001
8:18 am
1165
In another language it is possible to instantiate a set of classes and then "store" them (or their addresses) in a HashSet/Collection. This is particularly...
Tim & Mary Weatherstone
weatherstone@...
Send Email
May 8, 2001
9:29 am
1166
The retrieval methods for collections (including Hashtable, for example) in Java return the items as type Object. To 'restore' them to their proper type, use...
MFC@...
Send Email
May 8, 2001
10:58 am
1167
... From: "Davage, Marcus" <Marcus.Davage@...> To: "NetRexx-L (E-mail)" <ibm-netrexx@...> Sent: Tuesday, May 08, 2001 1:17 PM Subject:...
Kai Schmidt
serkom@...
Send Email
May 8, 2001
2:58 pm
Messages 1138 - 1167 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