Search found 16 matches
- Mon Oct 03, 2011 1:49 am
- Forum: Language
- Topic: Automated GUI Tests or []DQ considered harmful
- Replies: 2
- Views: 9912
Re: Automated GUI Tests or []DQ considered harmful
Paul, On my recent project that lasted 3 years I found it very useful to write cover functions for system functions. if you would replace []DQ with cover it would be easy to write your automated test or find other ways of running your code for example: - batch run - encapsulate your app into windows ...
- Tue Jun 07, 2011 8:20 pm
- Forum: Object Oriented Programming
- Topic: Extending Keyed properties of a class.
- Replies: 2
- Views: 13719
Re: Extending Keyed properties of a class.
Erik, Thank you for pointing the issue. :Class CollectionProperty :Field private Instance items ∇ Constructor :Implements Constructor :Access Public items←⎕NEW #.Collection ∇ :Property Default Items :access Public ∇ Z←get argument Z←items ∇ :EndProperty :EndClass
- Tue Jun 07, 2011 7:09 pm
- Forum: Object Oriented Programming
- Topic: Extending Keyed properties of a class.
- Replies: 2
- Views: 13719
Extending Keyed properties of a class.
I had planned to make a small presentation in different place in regards of this topic, but it did not go beyond draft. Looking into .NET object model you may find syntax for collections, which is not obvious how to implement in Dyalog APL (it's indeed simple): 1.Object.Items[“myEntry”] - To get Ins ...
- Tue Apr 12, 2011 3:04 am
- Forum: Object Oriented Programming
- Topic: :Include doesn't include variables (or objects)?
- Replies: 9
- Views: 29435
Re: :Include doesn't include variables (or objects)?
Shame on me.
I have assumed too much and also learned now.
Thank you.
I have assumed too much and also learned now.
Thank you.
- Thu Apr 07, 2011 7:32 pm
- Forum: Object Oriented Programming
- Topic: :Include doesn't include variables (or objects)?
- Replies: 9
- Views: 29435
Re: :Include doesn't include variables (or objects)?
Hi Erik, :Include is a control structure implementing []PATH. []PATH is similar to PATH in OS, which is also not giving you access to data files. Problem of functions being accessed with []PATH lookup is namespace scope of function execution. Functions executed with []PATH lookup will be executed ...
- Thu Jan 06, 2011 4:53 pm
- Forum: Language
- Topic: Data representation
- Replies: 5
- Views: 18799
Re: Data representation
In 12.1.0
Code: Select all
⎕dr 1
83
⎕dr 1⍴1
11
⎕dr 2⍴1
11
⎕dr 1↑1 1
11
⎕dr 1↑2⍴1
11
⎕dr 1↑2⍴1 1
11
- Wed Jan 05, 2011 8:31 pm
- Forum: Language
- Topic: Copying all objects in a namespace
- Replies: 7
- Views: 24976
Re: Copying all objects in a namespace
Phil, I know the difference and not arguing with your solution, but wander if that is what was asked in original question :)
- Mon Jan 03, 2011 6:29 pm
- Forum: Language
- Topic: Copying all objects in a namespace
- Replies: 7
- Views: 24976
Re: Copying all objects in a namespace
Now I am confused.
Why next will not work?
)cs Target
#.Target
)copy SourceWS Source.namespace
or:
'Source.namespace' Target.⎕CY 'SourceWS'
Why next will not work?
)cs Target
#.Target
)copy SourceWS Source.namespace
or:
'Source.namespace' Target.⎕CY 'SourceWS'
- Thu Oct 07, 2010 6:00 pm
- Forum: Microsoft.NET
- Topic: Receiving HTML from AJAX appl
- Replies: 7
- Views: 22372
Re: Receiving HTML from AJAX appl
Niels,
You may try to use Internet explorer ActiveX control which will execute java script for you on a page.
Than pool HTML from it.
You may try to use Internet explorer ActiveX control which will execute java script for you on a page.
Than pool HTML from it.
- Thu Oct 07, 2010 5:56 pm
- Forum: APL Chat
- Topic: Packaging APL Runtime Systems
- Replies: 6
- Views: 16858
Re: Packaging APL Runtime Systems
I've been using InstallShield in several places. Sometime it was giving me headache creating installation package, which would not run on specific Windows configurations. It would be listed as "known issue" and will not be fixed by vendor for some time. Larger the company - slower it moves. I cannot ...