I use c# and c++ builder, and have big application with many menus, buttons, check boxses, and also with many forms. When trying to use one of functionality of those objects I use standard user method by clicking on button, clicking on menus and choose some submenu options, etc...
But now I want to use faster method to use functionality of objects, want to create search for objects. That means if I type name of some button and press enter, that those event become same as i click on same button. I don't want to clicking on buttons, and menus anymore cause it take me too much time to find it.
So I create new form which appear on shortcut and have inside listbox that will be using for search all objects, but I don't know what code to put inside that listbox show me all object names?
How to connect listbox with all objects which is inside project?