demo of NetRexx IDE

classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

demo of NetRexx IDE

Chip Davis-2
We are looking for someone to do a short demonstration of NetRexx
application development tools for the Rexx Symposium.  We've got
several Object Rexx IDE demos lined up, and it would be nice to show
off NetRexx too.

Mike feels that VisualAge for NetRexx will not be ready for prime
time, and I personally know of no one who has had the time to
explore devPad or Visual NetRexx.  Those are the only ones I know of,
are there any other IDEs for NetRexx?

I you think you might be interested in doing a short (an hour or so)
demonstration of one or several NetRexx application development
tools (we're not talking in-depth, here, just show off some of the
neat features for cranking out code) please contact me for more
details.

For more information about the Ninth International Rexx Symposium,
check out the Rexx Language Association webpage at www.rexxla.org or
contact [hidden email] if you have questions.

Thanks,

-Chip Davis-

The Rexx Language Association  
POBox 14472  Research Triangle Park NC 27709-4472
http://www.rexxla.org    mailto://[hidden email]
"A smart language designed for real people, and vice versa."
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Re: demo of NetRexx IDE

mcbrides
>We are looking for someone to do a short demonstration of NetRexx
>application development tools for the Rexx Symposium.  We've got
>several Object Rexx IDE demos lined up, and it would be nice to show
>off NetRexx too.
>
>Mike feels that VisualAge for NetRexx will not be ready for prime
>time, and I personally know of no one who has had the time to
>explore devPad or Visual NetRexx.  Those are the only ones I know of,
>are there any other IDEs for NetRexx?
>

WINGEDIT is an excellent IDE that understands NetRexx. Their homepage is at
www.wingsoft.com. Real nice people there...


--

/-------------------------------------\
| Jerry McBride                       |
|                                     |
|                ([hidden email]  |
\-------------------------------------/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

TEXT MODE anyone?

mcbrides
Anyone else here writing text mode applications using NetRexx?  I'd like to
compare notes and bugs in writing CLI, NR1130 and JDK114+031998.

Anyone?

Basically, I'd like to work out a problem of my apps loosing STDIN on occasion.
I'm convinced it's a JDK problem, but I'd like to compare notes.

Compiling this this script to test.class:

-- Test Script
--
--
  say'Enter some text'                -- prompt the user
  text=ask                            -- get his/her input
  say''                               -- space it out
  say'You entered this text:' text    -- parrot the text

In OS/2, if the above script is run via "JAVA -NORESTART TEST" the screen is
updated, but no keyboard input is accepted. If I run it via "JAVA test", and
clicking from the PM to the running app, it will accept input just fine.

I have set the environment variable JAVA_CONSOLE to "JAVA_CONSOLE=" and it
still looses STDIN. Running a Java program (not written via NetRexx) shows the
same results.

Aside from this last bug-a-boo, the JDK114 with the 031998 updat has been nearly
flawless.


--

/-------------------------------------\
| Jerry McBride                       |
|                                     |
|                ([hidden email]  |
\-------------------------------------/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Re: TEXT MODE anyone?

mcbrides
Ahh, Thanks for the backup, Tony. No, I haven't had the need to toggle anything
in system.properties, so I've left alone. You think, maybe, something is
getting touched by the "-norestart" switch? That'll make interesting
programming... <G>

Also, sorry for causing so much confusion over there. <G> It's only a text mode
app... <G>

>Behavior on my machine is the same, Jerry...
>
>I can run test.class just fine as a java app (java test [enter]
>).
>
>But once I set java_console = 1, nothing works.  The program
>bombs, and I can not switch back to where I started by entering
>set java_console=0 or set java_console="".
>
>I did not try to re-initialize my System.properties, however.  I
>just
>re-booted and cursed you and your email...  Only kidding :-)
>
>Anyway, did you try running a stub program that re-reads
>and initializes the system properties?
>
>Tony Dahlman
>
>
>-- Test Script
>--
>--
>  say'Enter some text'                -- prompt the user
>  text=ask                            -- get his/her input
>  say''                               -- space it out
>  say'You entered this text:' text    -- parrot the text
>
>In OS/2, if the above script is run via "JAVA -NORESTART TEST"
>the screen is
>updated, but no keyboard input is accepted. If I run it via
>"JAVA test", and
>clicking from the PM to the running app, it will accept input
>just fine.
>
>I have set the environment variable JAVA_CONSOLE to
>"JAVA_CONSOLE=" and it
>still looses STDIN. Running a Java program (not written via
>NetRexx) shows the
>same results.
>
>Aside from this last bug-a-boo, the JDK114 with the 031998 updat
>has been nearly
>flawless.
>
>
>--
>
>/-------------------------------------\
>| Jerry McBride                       |
>|                                     |
>|                ([hidden email]  |
>\-------------------------------------/
>
>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>~~~~~~~~~~~~
>To unsubscribe from this mailing list ( ibm-netrexx ), please
>send a note to
>[hidden email]
>with the following message in the body of the note
>unsubscribe ibm-netrexx <e-mail address>
>
>
>
>
>
>
>
>

--

/-------------------------------------\
| Jerry McBride                       |
|                                     |
|                ([hidden email]  |
\-------------------------------------/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Multiple return values

kikuti
In reply to this post by mcbrides
Hi NetRexxers,
If I could find someone who can answer my humble NetRexx question.

In Basic , I could

LET a=2
LET b=3
CALL CALC(a, b, added, substracted)
PRINT added, substracted


In C, I could

calc(2, 3, &added, &substs)

or something like that.


I can do with only one return value in NetRexx, but with more than one
return values,

added=calc(2,3)
say added

could someone help me?

kikuti

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Re: Multiple return values

Bruce Weise

May not be the best way, but the following comes to mind:

parse value calc(2, 3) with added subtracted





From: [hidden email] on 04/14/98 10:17 PM ZE9


To:   [hidden email]
cc:
Subject:  Multiple return values




Hi NetRexxers,
If I could find someone who can answer my humble NetRexx question.
In Basic , I could
LET a=2
LET b=3
CALL CALC(a, b, added, substracted)
PRINT added, substracted

In C, I could
calc(2, 3, &added, &substs)
or something like that.

I can do with only one return value in NetRexx, but with more than one
return values,
added=calc(2,3)
say added
could someone help me?
kikuti
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note
to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>





~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>