Huh? List Problem

BlitzMax Forums/BlitzMax Programming/Huh? List Problem

BLaBZ(Posted 2012) [#1]
I'm totally perplexed by this.

I'm trying to use
TObject.BuiltList

Within the loop TObject.BuiltList doesn't seem to contain any data, but before and after the loop it does

'CONTAINS DATA
		If TObject.BuiltList.Count() > 0 Then Notify TObject.BuiltList.Count() + "before"
		For Local Expression:QExpression = EachIn ExpressionList
			'NO DATA!?!??
			If TObject.BuiltList.Count() > 0 Then Notify TObject.BuiltList.Count() + " ITS IN!"
			Expression.Evaluate()
		Next
		'CONTAINS DATA
		If TObject.BuiltList.Count() > 0 Then Notify TObject.BuiltList.Count() + "after"



BLaBZ(Posted 2012) [#2]
Nvm...