CompuServe Thread

#ARP-HELP

3 messages in this thread
#37771From: Ed BrawleyNov 17, 1993 7:01 PM
Here is part of an example by Langeveld that will not run: /* * First the file requester */ say getfile(50,50) say getfile(50,50,,,"Hello folks") say getfile(100,50,"ram:",,"hello there") say getfile(100,50,"ram:",test,"Pattern Gadget (2.0)",,"PATGAD") say getfile(100,50,"ram:",,"ARP requester",,"DOARP") say getfile(100,0,"ram:",,"Save Requester (2.0)",,"PATGAD+SAVE",,400,200,"*.txt") say getfile(100,50,"ram:",,"Multiple Select(2.0)",,"PATGAD+MULTISELECT",mystem) say mystem.0 do i = 1 to mystem.0 say mystem.i end –Ed
#37777From: John DraperNov 17, 1993 9:49 PM
OK… your message got a bit reformatted I think. I'll send it back here to make sure we are on the same wavelength. /* * First the file requester */ say getfile(50,50) say getfile(50,50,,,"Hello folks") say getfile(100,50,"ram:",,"hello there") say getfile(100,50,"ram:",test,"Pattern Gadget (2.0)",,"PATGAD") say getfile(100,50,"ram:",,"ARP requester",,"DOARP") say getfile(100,0,"ram:",,"Save Requester (2.0)",,"PATGAD+SAVE",,400,200,"*.txt") say getfile(100,50,"ram:",,"Multiple Select(2.0)",,"PATGAD+MULTISELECT",mystem.) say mystem.0 do i = 1 to mystem.0 say mystem.i end Hmm… looks like a couple of those lines will get wrap, too, so to save confusion, the lines start with the following… /*, *, */, say, say, say, say, say, say, say, say, do, say, end. Now, I use Khalids File REquester, and all seems to work fine, except for the MULTISELECT. I never use MULTISELECT, and I may be doing that wrong. At any rate, I'll play with it some. Which line has the error when you run it? -larry
#37783From: Andy FinkelNov 18, 1993 3:26 PM
Did you remember to addlib the rexxarplib.library ? andy