ComponentInstance name and Group name
-
Hi everyone !
I have found how to correct my code !!
It's was just an error of algorithm.
At first time I had this condition :
chose.name[0] != 95
And I would like to have this :
chose.name[0] != 95 || chose.definition.name[0] != 95
but it doesn't work ...
The solution is :
chose.name[0] != 95 && chose.definition.name[0] != 95
As I said, I'm beginning !
Thanks to all! especially TIG
Advertisement