04-09-2019 08:55 AM
Hallo, I need to check if a channel has a property with a given name, and in case create it. I try the following code but did not work, any hint?
If oChn.Properties("prop_name").Exist = TRUE Then
04-09-2019 02:23 PM
If oChn.Properties.Exists("prop_name") Then
No need to clutter with " = TRUE " unless it is easier for you to read