dstorey
2006-07-11, 04:25 PM
Has anyone come across this problem? It seems there's been a change made to the functionality of VLAX-LDATA-LIST in 2007.
Try this:
(vlax-ldata-put "my_dict" "my_key" "TEST")
Now retrieve the list:
(vlax-ldata-list "my_dict")
In 2006 the result is (("my_key" . "TEST")), but in 2007 all I get is (("m" . "TEST")) although (vlax-ldata-get "my_dict" "my_key") correctly retrieves the data.
I can't find any mention of this change in the Vlisp documentation, and I can't imagine why they would alter this function - any ideas?
Thanks in advance,
David Storey
Try this:
(vlax-ldata-put "my_dict" "my_key" "TEST")
Now retrieve the list:
(vlax-ldata-list "my_dict")
In 2006 the result is (("my_key" . "TEST")), but in 2007 all I get is (("m" . "TEST")) although (vlax-ldata-get "my_dict" "my_key") correctly retrieves the data.
I can't find any mention of this change in the Vlisp documentation, and I can't imagine why they would alter this function - any ideas?
Thanks in advance,
David Storey