Ian, I suspect that your problem may be related to the rule that []DQ terminates if: a) none of the objects specified in its right argument exist (i.e. it...
Hello Everyone, I have a question regarding the Finnish APL idiom list. (The link to the list is http://www.pyr.fi/apl/texts/Idiot.htm.) Given the idiomatic...
I think the phrase "X"D1; Y"D1 " means Doubleword or floating-point. Given APL' s facility with numbers, I would just take it to mean numeric. ... From:...
Onyeama, given a series of observations Y vs X (2 vectors) this expression returns what would be expected to be seen at X (the Y values) IF we considered the...
HI: Does anyone know where I find the table of definitions of the: A1, B1, A2, D1, etc. that this idiomlist uses to identify arguments? I assume they mean Any...
Brooke Allen
brookea@...
Jun 1, 2004 4:16 pm
751
Here's what my printed idiom list from 1982 says: Naming conventions of data objects: X, Y arguments G, H parameters A, B intermediate results etc. Data...
All, I am considering purchasing the Samsung I700 Pocket PC phone specifically to run Pocket APL. It runs Windows 2002 Pocket PC Phone edition on an 300MHz...
Hi all, thought I would write and see what everyone thinks about the concept of an APL workspace. I don't know too much about the purpose of a workspace other...
Hi Carlos, In most cases, I would agree with you. However, there are situations, especially if several APL systems are running on a machine and competing with...
Dyalog differs between: The requested memory size (private bytes), defined by the maxws= environment parameter plus 2..3 MByte used by the exe,dlls, and...
Hi Alex, I can reproduce this if I localize []TRAP in foo. This is the intended behaviour, the way error trapping is defined, the system keeps searching up the...
Thanks Morten, I also found it in the help file: When an event occurs, the system searches for a trap definition for that event. The most local []TRAP value...
I will also say fragmentation of memory is less in case of static allocation. In case of dynamic allocation you will measure available memory by available...
Forum, Does anyone know how to start a external program and just continue exection (i.e. don't wait for output)? []CMD waits for output, even if I use the...
Seems to work OK in Dyalog APL/W Version 9.0.5 under win 98 Don't know about XP &c but how about []CMD&'program' putting it in another thread and forgetting...
Phil, I tried that, it didn't work. Thanks for the help, though. -Dan ... From: Phil Last [mailto:phil.last@...] Sent: Friday, June 04, 2004 3:01 PM...
Use the windows shell obejct. 'wsh'[]wc'OLEClient' 'WScript.Shell' a<=wsh.Run'notepad' or wsh.Exec'notepad' Norbert ... continue exection (i.e. don't wait for...
Use WinExec? []NA'I kernel32|WinExec <0T I4' then WinExec '"C:\notepad.exe"' 1 / Tomas ... exection (i.e. don't wait for output)? []CMD waits for output, even...
For the record, there are two distinct forms of []CMD. If you call []CMD with a character vector, it uses cmd.exe (the "DOS" command processor) to execute the...
I also think Norbert's solution is the best since it also allows you poll the Status property of the Exec object returned from the Shell.Exec method. Then if...
Hi Sorry that this is message is not APL related. All messages sent from Yahoo groups (such as Dyalogusers) to email addresses at compuserve.com are being...
Though I am (no longer) a compuserve user, I often have similar problems with yahoo group mails, out of the fact that many span mails are sent out by yahoo ...
Max, Thank you for your support. Would you be interested in giving a presentation on Control ?. I am sure that it would be of great interest to delegates. Best...
You can use the CursorObj property of the Edit object. 'f'[]WC'Form' 'f.e'[]WC'Edit' f.e.CursorObj<-1 Hover mouse over Edit object, then do it again with ...
In message <000001c44fff$7702e630$6402a8c0@graemexp>, Graeme Robertson <GraemeDR@...> writes ... I've tried that, and that changes the mouse cursor....