trying to move to the beginning of a search
$categories->Move(0) did not work, added the first record just the first record, kind of a,b,c,d now a,a,b,c,d

it worked only after applying
$categories->Move();
$categories->MoveNext();

is that the right behaviour?

thanks

Calixto