ContributionsMost RecentMost LikesSolutionsRe: Unable to find DotNetBar controlThank you Allen! The suggested approach works perfectly. BR, OlexandrRe: Unable to find DotNetBar controlPlease find a sample application in attachment. Here is the script I tried to find the button and it didn't work for me: Dim PropArray, ValuesArray Dim RibbonBar Set RibbonBar= Sys.Process("SampleDNB").WinFormsObject("Form1").WinFormsObject("MainRibbon").WinFormsObject("OrganizationRibbonPanel").WinFormsObject("OrganizationCreateBar") Dim Button PropArray = Array("Text") ValuesArray = Array("Test1") Set Button=RibbonBar.Find(PropArray,ValuesArray,1) Log.Message Button.Exists Re: Unable to find DotNetBar controlHi David, Thank you for your reply. What property(ies) and value(s) did you use to find ItemContainer using Find method? BR, Olexandr Unable to find DotNetBar controlWe are using DotNetbar controls from here: http://www.devcomponents.com/dotnetbar/download.aspx Our application is using ribbon controls from the package. The ribbon controls have the next hieararchy -RibbonControl --RibbonPanel --RibbonBar --ItemContainer --Buttons and other simple controls My problem is that TestComplete doesn't see ItemContainer control and anything below it. The buttons on it are not searchable by Find\FindChildren methods. Controls.Count property of RibbonBar always returns 0. Is there a workaround to this issue?