N
Nikolaos Kasparidis
Guest
Hello,
does anybody know if I can have multiple Tab fields one inside the
other? I am using Custom IC Design 5.0.33, and I get this message
*Error* hiiCopyScrollRegion: scrollRegion nested within itself: -
page1
when I attempt to execute the following code ...
Tab1 = hiCreateTabField(
?name 'Tab1
?tabs '("Label1" "Label1")
?tabPlacement 'top
?fields list(FormList1 FormList2)
)
Tab2 = hiCreateTabField(
?name 'Tab2
?tabs '("Label3" "Label4")
?tabPlacement 'top
?fields list(FormList3 FormList4)
)
Tab3 = hiCreateTabField(
?name 'Tab3
?tabs '("Tab1" "Tab2" "Label5")
?tabPlacement 'top
?fields list(list(list(Tab1 0:0 500:526))
list(list(Tab2 0:0 500:526))
FormList5)
)
I get the error when the 3rd hiCreateTabField executes.
just assume that FormList* is a list with form field objects given in
the 2D format. Does anybody see anything wrong in my code, or simply
it cannot be done
does anybody know if I can have multiple Tab fields one inside the
other? I am using Custom IC Design 5.0.33, and I get this message
*Error* hiiCopyScrollRegion: scrollRegion nested within itself: -
page1
when I attempt to execute the following code ...
Tab1 = hiCreateTabField(
?name 'Tab1
?tabs '("Label1" "Label1")
?tabPlacement 'top
?fields list(FormList1 FormList2)
)
Tab2 = hiCreateTabField(
?name 'Tab2
?tabs '("Label3" "Label4")
?tabPlacement 'top
?fields list(FormList3 FormList4)
)
Tab3 = hiCreateTabField(
?name 'Tab3
?tabs '("Tab1" "Tab2" "Label5")
?tabPlacement 'top
?fields list(list(list(Tab1 0:0 500:526))
list(list(Tab2 0:0 500:526))
FormList5)
)
I get the error when the 3rd hiCreateTabField executes.
just assume that FormList* is a list with form field objects given in
the 2D format. Does anybody see anything wrong in my code, or simply
it cannot be done