in reply to Calling a TK Method by reference

$res = \$results;

Now you have a reference to a listbox reference. To use this one, you have to dereference $res again:

$$res->method(...)

But as joost already said, it's not needed to use the extra reference here.