Dictionary_Find GPF
Dictionary_Find GPFs in ThinBASIC 1.9.4.0
Hi,
it seems the Dictionary is a bit broken in ThinBASIC 1.9.4.0, the following example GPFs for me on Dictionary_Find:
Uses "Dictionary"
DWord dict = Dictionary_Create(64, TRUE)
Dictionary_Add(dict, "Item", "Something")
MsgBox 0, Dictionary_Find(dict, "Item")
The issue also affects the dictionary class, where I get GPF on dict.Find again:
Uses "Dictionary"
Dim dict As cDictionary
dict = New cDictionary(64, TRUE)
dict.Add("Item", "Something")
MsgBox 0, dict.Find("Item")
Petr