Wish GetView by name

Cableguy

Expert
Licensed User
Longtime User
Hi Erel

We have in most "parent" able views methods to get child views by index... it would be very helpfull to have a getViewByName.
This way we could do something like...

For x = 0 to 10
dim xViex as view = Main.getViewByName("myView"&x)
xView.anyproperty = anyvalue
Next
 
Top