Hello, a simple question please, Is it possible to use the with - end with statement with more than one objects simultaneously??? And how???
For example
With object1
.property1=object2.property1
.property2=object2.property2
.property3=object2.property2
etc...
end with
I would like to avoid writing object2.property1, object2.property2, object2.property3, object2.property4 etc...
I tried with object1, object2 or with object1 and object2 but it's not allowed. Is there a way or should I have to write it like the above example?
For example
With object1
.property1=object2.property1
.property2=object2.property2
.property3=object2.property2
etc...
end with
I would like to avoid writing object2.property1, object2.property2, object2.property3, object2.property4 etc...
I tried with object1, object2 or with object1 and object2 but it's not allowed. Is there a way or should I have to write it like the above example?