Hi
How I return several parameters a method ?
Printable View
Hi
How I return several parameters a method ?
You could return a UDT containing those parameters
or you could pass an array of those ByrefCode:type yourudt
a as integer
b() as string
end type
Function b() as yourudt
well, it's automatically byref ;)Code:Function a(b() as integer)