07-24-2016, 11:11 AM
Supposed that an IStringMap variable has to be as "-", as in the following example :
Function tempf03
Function tempf03 is called several times by :
Function tempf04
I wonder whether there exists a simpler way to check if IStringMap is already declared in temp03.
I understand that another way might have been by declaring sub-function "Add" with flag "v" :
Function tempf05
Any advice is mostly welcome. Many thanks in advance.
Function tempf03
IStringMap- label._create
label.Flags=1
err
,label.GetList(_s)
,out _s
,label.RemoveAll
sub.Add
#sub Add
IStringMap- label
label.Add("item1" "value1")
Function tempf03 is called several times by :
Function tempf04
I wonder whether there exists a simpler way to check if IStringMap is already declared in temp03.
I understand that another way might have been by declaring sub-function "Add" with flag "v" :
Function tempf05
IStringMap label._create
sub.Add
label.GetList(_s)
out _s
#sub Add v
label.Add("item1" "value1")
Any advice is mostly welcome. Many thanks in advance.