Hi
I am storing name and texts of controls (Label, Button, ComboBox, ListBox, etc.) into a dictionary.
With ContainsKey, I am able to find the texts of Labels, Buttons, and RadioButtons. However, I am getting problem to find the items of ComboBox. Appreciate if you have an idea.
If _dic.ContainsKey(selectedControl.Name) Then
Debug.Print("I found the text """ & _dic(selectedControl.Name) & """")