This error is generated when ConfigureHomeWidget is intended to be called once, but in a select or ifthenelse statement with multiple instances. Such as
if A then
ConfigureHomeWidget("litstring1",...)
else
ConfigureHomeWidget("litstring2",...)
End if
Such as one might do to select the layout used by a widget.
I'm guessing the literal string has to be compiled into the service, so the compiler will only accept one instance of the ConfigureHomeWidget("litstring",...) per service.
Can this be changed to accept either a string variable or ifthenelse/select ?
if A then
ConfigureHomeWidget("litstring1",...)
else
ConfigureHomeWidget("litstring2",...)
End if
Such as one might do to select the layout used by a widget.
I'm guessing the literal string has to be compiled into the service, so the compiler will only accept one instance of the ConfigureHomeWidget("litstring",...) per service.
Can this be changed to accept either a string variable or ifthenelse/select ?