Am 27.07.2011 um 19:48 schrieb Paul Levine:

> Hi,
> 
> The examples have the same problem. Is there a document/example project that
> explains in more detail what the changes are?

There is no document. I updated examples already.

the basic rule is that all those array classes are gone now in favor of Real 
Studio arrays.
so replace code like this

a=new abAddressbookMBS  
dim ga as ABGroupArrayMBS = a.groups
dim u as integer = ga.count-1
for i as integer = 0 to u
    dim g as ABGroupMBS = ga.item(i)
    ...
next

wit code like this:

a=new abAddressbookMBS                  
dim ga() as ABGroupMBS = a.groups
for each g as ABGroupMBS in ga
   ...
next

As you see new version is less code. And with using native arrays, it's much 
easier for people to learn and use.

Greetings
Christian

-- 
Read our blog about news on our plugins:

http://www.mbsplugins.de/

_______________________________________________
Mbsplugins_monkeybreadsoftware.info mailing list
[email protected]
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info

Reply via email to