i want to check that all items, that I have in my repository, are available. If not, i want to log the name of the item that could not be found. But I don't know how to get the name which I have given the control in the repository.
- Code: Select all
foreach (Unknown item in rep.CXX7.ToolBar.Self.Children)
{
if (item.Valid)
MessageBox.Show(item.ToString());
}
Could anyone help me?
Regards, Alex