Hello,
First of all, thank you for making xlslim available, it's very useful.
I am running xlSlim 3.3.1.0
I'm trying to run a function that takes 4 objects as arguments and returns another object as the result. If I build my objects separately from my function, no worries. Ex :
A1 = object1(arg1, arg2, ...)
A2 = object2(arg1, arg2, ...)
A3 = object3(arg1, arg2, ...)
A4 = object4(arg1, arg2, ...)
obj = function(A1, A2, A3, A4)
However, if I construct my objects in my function, it doesn't work. EX: function(object1(arg1, arg2, ...), object2(arg1, arg2, ...), object3(arg1, arg2, ...), object4(arg1, arg2, ...))
However, if I only construct a single object in my function then it works. Ex : function(object1(arg1, arg2, ...), A2, A3, A4)
Does xlslim allow several constructors to be called in the same function call?
Thank you for your reply,
kind regards
BODSON Romain