Hello!
I'm trying to resize my Application under test doing something like this:
Ranorex.Form APPWindow = "/form[@controlname=APP]";
Ranorex.Control myControl = TaktWindow.As<Control>();
myControl.SetPropertyValue("Size", new Size(300, 200));
but it´s not working,
Ranorex tells that Control is an ambiguous reference. How can i do that?