Create or replace function
.vbscript (%FUNC%)
vs_code = ScriptInputArray(0)
if (instr(vs_code, "_") > 0) then
ScriptResult = vs_code & "suffix"
else
ScriptResult = vs_code
end if
.endvbscript
... my code
End;
My attempts failed. The 2 lines with ".vbscript" and
".endvbscript" are gone but the rest of the vbs code
remains.
If it is possible, please tell me what I am doing wrong.
Thanks in advance,
Daniel