seeĀ https://www.quickmacros.com/help/QM_Help...PS.html#L2
for more information on how to pass and receive
example from qm help
Function Example
Need more information to to advise further.
for more information on how to pass and receive
example from qm help
Function Example
lpstr s1="c:\md\t.txt"
str s2
int i
i=sub.fileext(s1 s2)
out "%i %s" i s2
#sub fileext
function lpstr'f str&e
int i=findcr(f '.')
if(i>=0) e.get(f i)
else e=""
ret i
Need more information to to advise further.