Hello
I seek to find the information written with vlax-ldata, but by using the dictionaries, this with an aim of being able to recover this information via objectdbx
For example, if I make
(vlax-ldata-put "Test" "01" "A_String")
I find the dictionary with
(setq dict (vla-item (vla-get-dictionaries (vla-get-activedocument (vlax-get-acad-object))) "Test"))
A (vla-get-count dict) return 1
if I make
(vlax-ldata-put "Test" "02" "A_Secund_String")
A (vla-get-count dict) return 2
Therefore, information is well stored in the dictionary.
But I don't find the values “A_String” and “A_Secund_String”
I do one (vla-getxdata (vla-item dict “01”) “” 'aa 'bb) and aa-> Nil, bb - > Nil

Thanks
@+