Search found 2 matches

by RG@CSG
Mon Nov 27, 2006 9:41 am
Forum: Automation API
Topic: State of a window
Replies: 3
Views: 3793

State of a window

Hi Jenö, here I post some code hoping it could help: pToolStripEl = pControl->Element->FindChild( Ranorex::Role::ToolBar, "toolStrip1" ); nIndex = 0; pButtonEl = nullptr; while ( pElement = pTableElement->FindChild( Ranorex::Role::RowHeader, String::Format( "Row {0}", nIndex ) ) ) { // Click the row...
by RG@CSG
Fri Nov 24, 2006 3:06 pm
Forum: Automation API
Topic: State of a window
Replies: 3
Views: 3793

State of a window

Hi, I've found a problem working with a window belonging an application of mine written in C++.NET; so I'm using RanorexNet.dll I got the element of the window this way: pSubWindow = pForm->Element->FindChild( Ranorex::Role::Client, "XXX" ); pButtonEl = pSubWindow->FindChild( Ranorex::Role::PushButt...