O que são parâmetros ByRef?
E se ByRef for especificado, os argumentos serão enviados como referência quando a função ou procedimento for chamado.
Exemplo
<!DOCTYPE html>
<html>
<body>
<script language = "vbscript" type = "text/vbscript">
Function fnadd(ByRef num1, ByRef num2)
num1 = 4
num2 = 5
End Function
Dim x,y
x = 6
y = 4
res = fnadd(x,y)
document.write("The value of x is " & x & "<br />")
document.write("The value of y is " & y & "<br />")
</script>
</body>
</html>
A função acima usa o parâmetro xey como referência. Portanto, após a execução da função, os valores são alterados.
Se a função acima for salva como .html e executada no IE, a saída será a seguinte -
The value of x is 4
The value of y is 5