It should... if the Function is in Public Scope
Often I declare as Public for testing and go back to Private after the
procedure is proofed.
--
Jack Leach
www.tristatemachine.com
"I haven''t failed, I''ve found ten thousand ways that don''t work."
-Thomas Edison (1847-1931)
"Wavequation" wrote:
> This is a stupid question, but I am writing and testing a function.
> Shouldn't I be able to type the function name, include any values, and
> pressing enter, have the result printed in the immediate window?
> as a simple example
>
> function Test(strTest as string) as string
> test = strTest
> end function
>
> Then typing:
> Test("Test String")
> in the immediate window should yield:
> Test String
> Directely below it