[Implemented] SelectElement() should have a return value
Posted: Thu Mar 18, 2010 9:43 am
Hi PB Team,
at the moment I have a program, where it is possible that I call SelectElement() with an
invalid index.
At the moment I have to useto check this before.
More elegant would be, if I can check the result of SelectElement() likeBest regards,
Bernd
at the moment I have a program, where it is possible that I call SelectElement() with an
invalid index.
At the moment I have to use
Code: Select all
if index < ListSize()
SelectElement(Test(), index)
More elegant would be, if I can check the result of SelectElement() like
Code: Select all
if SelectElement(Test(), index)
Bernd