03-29-2016 02:25 AM
I would like to search for all tab's inside a tab, giving this condition
1. There is one parent tab and uncertain number of child tab
2. Every page of parent tab definitely has one child tab
3. Every page of parent tab has others type of controls
My purpose is to collect all the child tab's page reference number
It seem like after the class name property, the type reference do not match
I also attach the vi
Thank you
Solved! Go to Solution.
03-29-2016 02:45 AM
Hi sound,
It seem like after the class name property, the type reference do not match
Yes.
With "CtlsOnPage" property you get "unspecific" references as all possible types of controls are referenced here. After filtering the references you need (which you need to do properly!) you should use "ToMoreSpecificReference" and convert the reference to a tab-type reference!
03-29-2016 08:03 PM - edited 03-29-2016 08:15 PM
Hello GerdW
what if each tab has their own type reference, what should i use for class target input?
03-30-2016 05:21 AM
It should be a tab control. The heirarchy goes Generic->GObject->Control->Page Selector->Tab Control.
03-30-2016 07:55 PM
Helllo cross,
You are right, everything is working now
now i can softcode everyting, kudo given to both of you, thank you very much