Hello i must Concat any Groups with any Channels
Group 1 to 11 are the Basic Groups, Group 12 to 22 are Groups with the same Structure.
I tink i make a Loop for all Groups and into this loop a second loop with the Channels in this Group with the
GroupChnCount to count the chanels in the Group
the Offset ist the difference to beginn the Second Groups
the Code
'-------------------------------------------------------------------------------
'-- VBS-Script-Datei
'-- Neu erstellt am 07.07.2015 16:58:58
'-- Ersteller:
'-- Kommentar:
'-------------------------------------------------------------------------------
OptionExplicit'Erzwingt die explizite Deklaration aller Variablen in einem Script.
Dim Groupindex,GroupindexHigh
Dim Kanalindex
Dim Endindex
Dim Offset
Offset=11
For Groupindex= 1to11'Group
Endindex=GroupChnCount(Groupindex)
GroupindexHigh=(Groupindex+Offset)
For Kanalindex= 1to Endindex
callchnconcat(cnoxget(Groupindex,Kanalindex),cnoxget(Groupindex,Kanalindex))
Next
Next'Group
greetings Thomas