Hi everyone,
if you try this example:
you'll notice that AMEMBERS() function retrieves an ordered array but do you know any trick to avoid this?, I want my object's properties as it is.
thanks!
A team is only pieces that you exchange until you finish the work, it is efficient, it works.
if you try this example:
Code:
CLEAR
obj = CREATEOBJECT("Empty")
ADDPROPERTY(obj, "c", "c content")
ADDPROPERTY(obj, "b", "b content")
ADDPROPERTY(obj, "a", "a content")
AMEMBERS(aProp, obj)
DISPLAY MEMORY LIKE aProp
you'll notice that AMEMBERS() function retrieves an ordered array but do you know any trick to avoid this?, I want my object's properties as it is.
thanks!
A team is only pieces that you exchange until you finish the work, it is efficient, it works.