06-16-2009, 06:19 AM
No. Possible only with dll functions.
Workarounds:
1.Optional arguments:
function [~s1] [~s2] [~s3] [~s4] ;;max 31
2. Pass array.
function ARRAY(str)&args
3. Pass multiline string, or XML or some other string that the function would split.
function ~args
str s
foreach s args
,...
4. Pass variable of user-defined type.
function FUNC10ARGS&a
Workarounds:
1.Optional arguments:
function [~s1] [~s2] [~s3] [~s4] ;;max 31
2. Pass array.
function ARRAY(str)&args
3. Pass multiline string, or XML or some other string that the function would split.
function ~args
str s
foreach s args
,...
4. Pass variable of user-defined type.
function FUNC10ARGS&a
