02-21-2020 03:37 PM
I have made a list of channels and would like to move that list from Group1 to a new group that I want to create & name Group2. I know how to move channels but not sure how to move a list?
02-24-2020 11:38 AM
dim lst, i
set lst = Data.CreateElementList()
Call lst.Add(Data.Root.ChannelGroups(1).Channels("Head Pressure"))
Call lst.Add(Data.Root.ChannelGroups(1).Channels("Ambient"))
For i = 1 To lst.Count Step 1
Data.Root.ChannelGroups(2).Channels.AddChannel(lst.Item(i))
Next