Hi everybody,
In my VBA program I need to pass quite a few parameters to a function, so the line might be too long to fit into screen.
Say, this is:
myFunc(param1,param2,param3,param4)
Can I do something like this:
myFunc(param1,
param2,
param3,
param4)
?
I tried ' _' and ' & _' at the end of the lines but they don't seem to work.
Anything wrong with such a syntax?
Thanks,
Alex
In my VBA program I need to pass quite a few parameters to a function, so the line might be too long to fit into screen.
Say, this is:
myFunc(param1,param2,param3,param4)
Can I do something like this:
myFunc(param1,
param2,
param3,
param4)
?
I tried ' _' and ' & _' at the end of the lines but they don't seem to work.
Anything wrong with such a syntax?
Thanks,
Alex