<SIGH> at last I got around resetting those email adresses... Why do I say that? Well, I've been writing here once before ;-)... Then the email-address was...
Hannu E K Nevalainen ...
garbage_collector@...
Jul 1, 2002 10:28 pm
2774
Hello Hannu ... Thanks for the effort, but this is what I want to do, which (regretably) isn't covered in your routine. Here is a simple explination of what I...
Andrew Bruno
abruno@...
Jul 2, 2002 8:46 am
2775
Try something like this ... /* */ global.i.1 ="this is 1" global.i.2 ="this is 2" global.i.3 ="this is 3" a=test("i",1) say a exit test: procedure expose...
ListServers, my RxMUI script that provides mailing list server command support for YAM, is now available with an ARexx command interface. If you'd care to try...
Robert A. Sisk
RSisk@...
Jul 2, 2002 10:23 am
2777
... /**/ OPTIONS RESULTS x.0 = 4 DO i = 1 to x.0 x.i = 'This is line' i END TwoStems = "x. y." CALL CopyStems("x", "y") DO i = 1 TO y.0 SAY 'y.' || i || ' ='...
Hello Bernd ... Thanks. I shall read it and try to learn. I'll have to try and understand the: CopyStems: INTERPRET 'PROCEDURE EXPOSE' TwoStems line and how it...
Andrew Bruno
abruno@...
Jul 3, 2002 8:24 am
2779
Hi, This is a little script which allows you to write e-mails when YAM is not loaded. Ok, that seems a bit silly, but if you don't want to be bothered loading...
Andrew Bruno
abruno@...
Jul 3, 2002 8:28 am
2780
... it's very easy :) If you know the stem names it would be: CopyStems: PROCEDURE EXPOSE stem1. stem2. so the two stems would be global, if you need diverent...
Hello Bernd ... Thanks Bernd. I know all these things are "out there" in the books/docs. But sometimes (though recently people could argue alot) it is hard to...
Andrew Bruno
abruno@...
Jul 4, 2002 6:12 am
2782
Hello, I'm writing an arexx script so that I can use Yam to sort through a large collection of old emails. I had thought to set the archive bit of each file to...
Garry Griggs said, ... Have you loaded rexxsupport.library? Error 15 is function not found, and it's in the support library. Cheers Neil -- RAM = Rarely...
Hi, I won't post the changes, unless anyone wants them. What I did was change part of the code so that the filename is used for the TO: field and the SUBJECT...
Andrew Bruno
abruno@...
Jul 6, 2002 6:09 am
2785
My world-famous RxMUI script for generating subscribe and other mailing list command messages for YAM has now acquired, in addition to its ARexx command...
Robert A. Sisk
RSisk@...
Jul 7, 2002 9:03 am
2786
Hello Neil On 05-Jul-02, Neil Bothwick wrote: NB> Garry Griggs said, NB>> however any attempt on my part to include the STATEF function results NB>> in error...
Hi, In a script I am "hacking" I want 4 temp files open. Depending on data read in, depends on what file the data is written. So, for instance: Data line is...
Andrew Bruno
abruno@...
Jul 20, 2002 1:59 am
2788
... i' m not sure where your problem is. my logic: do until end of (read) data Data read in Header Y/N? If yes, set file (variable) to new name determined from...
Hello opi ... Ok, try this as a BAD example.... /* */ OPTIONS RESULTS CALL OPEN('foo1','D:file1','W') CALL OPEN('foo2','D:file2','W') ECHO "enter which file...
Andrew Bruno
abruno@...
Jul 20, 2002 11:03 am
2790
... This should be: CALL WRITELN(file, "this is a test") ... -- CU, Bernd Gollesch /'''\ Europa, Austria, Styria A 1200 - 060/50MHz...
Hello Bernd ... THANKS! Regards -- <ßßßßßß> Barney loves to grin Andrew Bruno abruno@......
Andrew Bruno
abruno@...
Jul 20, 2002 11:34 am
2792
Andrew Bruno said, ... writeln() takes a filehandle as the first argument, not the file name. call writeln(foo1, 'some text') Cheers Neil -- SCSI: System Can't...
Hello, How to get a text hidden in stem.output ? Or how to use it as argument for other Arexx command ? -- Copyright (c) by Darek A.D. 2002 Amiga 040/33MHz...
... if file='D:file1' then fh=foo1 if file='D:file2' then fh=foo2 ... /*change it to */ call writeln(fh, "this is a test") ... I think this is what you need....
Blasio Muscat
blasio@...
Jul 20, 2002 4:22 pm
2795
Another way to solve the problem: (NOT COMPLETE; just to give you an idea...) filenames='File1 File2 File3' out.0=words(FileNames) do i=1 for out.0 if...
Hannu E K Nevalainen ...
garbage_collector@...
Jul 20, 2002 9:53 pm
2796
... What are you attempting to do? CLI 1> rx "stem.output='Test!';say writeln('Contents:' stem.output) Contents: Test! 16 CLI 1> _ You can't "hand over" a...
Hannu E K Nevalainen ...
garbage_collector@...
Jul 20, 2002 9:53 pm
2797
Hello Neil ... In all the programs I have written and seen/looked at it is formatted as: writeln('foo1','some text') But this is only a statement. I don't...
Andrew Bruno
abruno@...
Jul 20, 2002 11:53 pm
2798
... you should understand foo1 is an Variable - named somehow and 'foo1' or "foo1" is an Name named foo1! Regards, OPI ...
Hello Blasio ... Nearly. Others have helped me. In your example it will always be fh=f002 as file1 and file2 are BOTH opened and so both exist. But anyway,...
Andrew Bruno
abruno@...
Jul 21, 2002 12:15 am
2800
Hello opi ... Na. I didn't understand that to be brutally honest. I don't know what started my doing this, but as it worked, I never felt the need to question...
Andrew Bruno
abruno@...
Jul 21, 2002 12:23 am
2801
... call writeln('foo1', "text") call writeln(foo1, "text") this two lines are differnet, because in the first line you hand over a text called 'foo1' and in...
... [snip] ... Not really. The two lines above compare the input (file) to the file names. Whether the file is open or not does not affect the comparison....