Quick Question, I hadn't seen this Syntax in VB so I thought I'd check.
Using the Function name or "Function" as the return parameter.
Is this:
The same as this?
Never seen "Function = x" before now
Cheers
------------------
Paul Dwyer
Network Engineer
Aussie in Tokyo
(Paul282 at VB-World)
[This message has been edited by Paul Dwyer (edited January 30, 2001).]
Using the Function name or "Function" as the return parameter.
Is this:
Code:
Function MyFunct(Param1 as long, Param2 as long) as Long ' Do Some Stuff Function = 1 End Function
Code:
Function MyFunct(Param1 as long, Param2 as long) as Long ' Do Some Stuff MyFunct = 1 End Function
Cheers
------------------
Paul Dwyer
Network Engineer
Aussie in Tokyo
(Paul282 at VB-World)
[This message has been edited by Paul Dwyer (edited January 30, 2001).]
Comment