Description:
The REXX command language.
|
|
|
VBA question
|
| |
Hallo,
I use the following code:
' Check AH position
If SumAH > 0 And (IsEmpty(Range("AA10")) Or Factor * SumAH > Range("AA10")) Then
Range("AA10") = Factor * SumAH
End If
If Range("AA10") > 0 And SumAH < Range("AA10") Then
Beep
End If
' Check KPN position... more »
|
|
How to Collaborate on SourceForge
|
| |
Do we have a summary how one would go and collaborate on ooRexx on SourceForge?
Which Version Control client is suggested?
Any etiquette to follow?
Write access needed?
Other pitfalls to avoid?
|
|
Interrupted ooRexx Program Shows Internal Name
|
| |
Sometimes, when interrupted (Ctrl+C), ooRexx won't show the name of the actual ooRexx program, but some internal name instead (there's no /work.ooRexx directory on the system this sample code is running on).
Is this intended?
44 *-* call stream File,'C','OPEN READ'
Error 4 running C:\work.ooRexx\wc\main.4.1.2\W in32Rel\StreamClasses.orx line 277... more »
|
|
ooRexx 4.1.3 beta
|
| |
All,
The ooRexx Project is announcing the start of the beta phase for
ooRexx 4.1.3.
This is a bug fix only release, with about 12 to 15 bug fixes. The
release for ooRexx 4.1.3 is tentatively scheduled for the middle of
June.
The beta for 4.1.3 is available on SourceForge at:
[link]... more »
|
|
My favourite functions, #1 Plural()
|
| |
I revel in the pleasure that I get from adding really useful routines to my library (subroutines.rex) for use in Object Rexx.
Hoping to spread some of this pleasure around, I'm going to describe a few of the functions, starting with plural()
I really dislike programs which generate statements such as:... more »
|
|
Set: hasItem vs. hasIndex
|
| |
Recently I've been hit by a large run-time penalty when I was using hasItem() to check for the existence of items in a large Set (~500.000 items).
Checking for the existence of 1.000 items with hasItem() took 20+ seconds.
Checking the same with hasIndex() took less than 0.01 seconds.
While I do understand that in the general case, hasItem() may take longer than hasIndex(): in the case of Set, shouldn't those two methods behave the same?... more »
|
|
Bisoprolol Fumarate Manufacturers
|
| |
We have a dedicated quality control laboratory equipped with all the
sophisticated quality control equipment to check various
specifications of active pharmaceutical ingredients and bulk drugs. We
believe that quality has to be the part of overall operations of the
company, hence we have tried to build in quality processes in our... more »
|
|
Object Rexx multiple version coexistence
|
| |
It's possible install more OORexx versions on the same computer (e.g. versions 3.2 and 4)?
Clearly the right interpreter has to be addressed by explicit directory reference, but I'm not sure if the interpreters share some common file/library that could cause the exclusion of the other versions.... more »
|
|
Method to decide whether to return copy, or modify receiver
|
| |
Can a method find out whether it is expected to return a (modified) copy of the receiver, or if it should directly modify the receiver?
I'd like to code e. g. a method "transpose" that, when called with
"Trans=Matrix~transpose"
it would return a copy of the transposed matrix, but when called with... more »
|
|
|