Forum Discussion
ivan_sy
13 years agoContributor
script 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
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