| View previous topic :: View next topic |
| Author |
Message |
nitin
Joined: 09 Nov 2006 Posts: 5
|
Posted: Fri Nov 10, 2006 8:04 am Post subject: how to select propertypage control |
|
Hi,
I can select form control with function to find it but
If i want to find PropertyGrid control then there is no
function to find it.
Is any other way to find it and retrieve?
Thanx,
Nitin. |
|
| Back to top |
|
 |
nitin
Joined: 09 Nov 2006 Posts: 5
|
Posted: Fri Nov 10, 2006 8:37 am Post subject: |
|
Hi,
I can do this like :
Control propertyGrid = form.FindControlName("propertyGrid1"); |
|
| Back to top |
|
 |
admin Site Admin
Joined: 05 Jul 2006 Posts: 351
|
Posted: Sun Nov 12, 2006 7:28 pm Post subject: |
|
In the next version (V1.0.0) you can also do the following:
Code: click into code to enlarge
PropertyGrid propertyGrid = form.FindPropertyGrid("propertyGrid1");
...
Jenö Herget
Ranorex Team |
|
| Back to top |
|
 |
|