ContributionsMost RecentMost LikesSolutionsRe: Work with C++ std::vector Hi, Alex. In application, I tested, some data (for example information about buttons) is contained only in std::vector. If I want to click to some button, I need information about it bounds and caption. I want something like this: For example in programm: std::vector<ButtonInfo*> buttons; In JavaScript code: var caption = 'Save'; var btnRect = null; for(var i = 0; i < buttons.size(); i++) { if (buttons.at(i).caption == caption) { btnRect = buttons.at(i).rect; break; } } Re: Work with C++ std::vector Yes, I did. If I checked Basic View in Object Spy, I did not see "zMyPair" in Fileds. Work with C++ std::vector Hello. I am testing desktop application, wich using C++ std::vector. But I see in Object Spy only "zMyPair" (in fields) and "push_back" (in methods). How can I execute method "at" or "size"? Solved