Hi everybody,
Thanks to Nico.D, we can change dynamically the select tab in a mimic:
We can now change the active tab using VBA or SCADA BASIC.
Regarding VBA : the property is SelectedTab (first tab is 1, both Get and Set)
Private Sub SelectTab(dim TabIndex as Integer)
SelectedTab = TabIndex
End Sub
Private Sub PromptSelectedTab()
MsgBox SelectedTab
End Sub
Regarding SCADA BASIC: The new mode is SelectTab
sub SelectTab()
Window("SelectTab", ,
, );
end sub
Don't forget.


