AnyUserNameWillDo
New Member
- Joined
- Jul 10, 2013
- Messages
- 2
Hi,
The boolean expression for my While statement uses a return value from a function that I also need to use from within the statement block.
While ( (valueToUse=FromFunction())>-1)
DoSomethingElse(valueToUse)
Wend
The problem can be resolved with a ByRef parameter set to the return value, but what is the correct syntax.
Thanks
The boolean expression for my While statement uses a return value from a function that I also need to use from within the statement block.
While ( (valueToUse=FromFunction())>-1)
DoSomethingElse(valueToUse)
Wend
The problem can be resolved with a ByRef parameter set to the return value, but what is the correct syntax.
Thanks
Last edited: