Andrew
2009-08-31 19:09:41 UTC
Ex:
// Form Code
dim z as integer
z = 0
function1(z)
// Function code
function function1(byval x as integer) as integer
dim a, b, c as integer
a = x + 1
b = x + 2
c = x + 3
return(a)
return(b)
return(c)
end function
***************************************
from the given example, I was able to retrieve the first return value (which is a) with this code in the form
label1.text = function1(z)
obviously, the result is 1
Now, how will I ever retrieve b and c?
Please help me!!!!