TLink and list again !

BlitzMax Forums/BlitzMax Beginners Area/TLink and list again !

hub(Posted 2006) [#1]
Hi !
could you help me with this code ?
Thanks !



i want display
rx = 13
ry = 13
rx = 15
ry = 18


Diablo(Posted 2006) [#2]


i dont really use links that much but from what i gather you needed to make sure that the link was not null (which you did,but...) which caused an error on link_mylist.nextlink() because link_mylist was null. I added a line where it sets it to first whenever you add an item (not the best way). also to get the object handle that the link refers to you use .value() and just cast it.

Having said all that, wouldn't be easir to do this:



hub(Posted 2006) [#3]
Thanks diablo !