Search found 16 matches

by alexbalako
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 ...
by alexbalako
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
by alexbalako
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 ...
by alexbalako
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.
by alexbalako
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 ...
by alexbalako
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
by alexbalako
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 :)
by alexbalako
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'
by alexbalako
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.
by alexbalako
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 ...