THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 18/03/2003 at 07:28, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.012
Platform: Windows ;
Language(s) : C++ ;
---------
Not a bug, but a doc mistake:
BaseSelect Class, IsSelected() variable example is:
LONG seg=0,a,b,i;
while (bs->GetRange(seg++,&a,&b)
{
for (i=a; i<=b)
{
// ... do something - i is the selected element
}
}
But it should be this to work at all:
LONG seg=0,a,b,i;
while (bs->GetRange(seg++,&a,&b))
{
for (i=a; i<=b;i++)
{
// ... do something - i is the selected element
}
}
Haven´t I already reported this some time ago?...