Improvment - Dynamic mimic tab

1 Posts
1 Users
0 Likes
15 Views
f.boissie
(@f-boissiearcinfo-com)
Posts: 44
Member Moderator
Topic starter
 

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.

 
Posted : 04/08/2015 8:46 pm