Hi,
Do you know how can we manipulate the Item parameter ?
' UserDataDictionary.Add (Key as String, Item As Long = 0)
-- I create my key
UserDataDictionary.Add "Ma clef d'identification", 1
-- I set data to my key
UserDataDictionary("Ma clef d'identification") = ("2")
-- I read all keys and datas from Data Dictionary
For Each key In UserDataDictionary.Keys
Output " Clef => " & key & " Donnée => " & CStr(UserDataDictionary(key))
Next
*************************************
Now I want use Item
-- If I set Item to number 2
UserDataDictionary.Add "Ma clef d'identification", 2
How I set Data Item 2 in Data Dictionnary?
How I read Key/Data Item 2 from Data Dictionnary?
Thank you