Since when? I don't really remember this being defined anywhere, except in places like grade 8 math where they say stuff like, "just ignore sqrt(-1)" even though you can actually do it.1. functions only return EXACTLY one value.
If you want a vb function that returns more than one value:If you want a mathematical fn that returns more than one value "f:=x->x^0.5;"VB Code:
Private Type Point x As Long y As Long z As Long End Type Private Function SomeFn() As Point ' A fn that returns more than one value! SomeFn.x = 3 SomeFn.y = -2 SomeFn.z = 10 End Function
Or am I missing something that others seem to know about?
Destined




Reply With Quote