KeyNotFoundException
From Real Software Documentation
Class (inherits from RuntimeException)
You tried to access an item in a Dictionary using a key that is not in the Dictionary.
Examples
The following For loop produces a KeyNotFoundException error when the loop runs with the counter equal to 1. The value of 1 — which is a Variant, not an Integer — has just been removed.
Dim d as New Dictionary
Dim i as Integer
d.Value(0)="Clark Kent"
d.Value(1)="Lois Lane"
d.Value(2)="Jimmy Olsen"
d.Remove(1)
For i=0 to d.Count-1 //fails when i=1
ListBox1.Addrow d.value(i)
Next
Dim i as Integer
d.Value(0)="Clark Kent"
d.Value(1)="Lois Lane"
d.Value(2)="Jimmy Olsen"
d.Remove(1)
For i=0 to d.Count-1 //fails when i=1
ListBox1.Addrow d.value(i)
Next
To handle the error, add an Exception block to the end of the method, such as:
See Also
Dictionary, RuntimeException classes; Exception block.
