Ian Thompson #1 Is there a way of evaluating what Type TObject is storing?PCode...If TObject = MyType1 do this blah else if TObject = MyType2 do this ...
REDi #2 You can use type casting to find out what type an object contains ... If MyType1(object) blah else if MyType2(object) ...