10-07-2017 07:26 AM
Hi,
I am trying to assign channel contents into variable using
Set Group = Data.Root.ActiveChannelGroup
And I get a error message saying 'Variable is undefined' .
Can anyone help me with this?
10-08-2017 09:15 AM
If
option explicit
is used in an VBS script you need to define the variable.
dim Group Set Group = Data.Root.ActiveChannelGroup