Forum Discussion
2 Replies
- ivan_syContributorscript 1:
Function Func1()
' code here
x = GenerateRandomString(100)
End Function
script 2:
Function GenerateRandomString(intSeed)
' code here that will generate Result
GenerateRandomString = Result
End Function
-----------
x in Func1 will be replaced with the result of GenerateRandomString - ivan_syContributor