-
Function inside a Function
Hi all !
I'll be thankful if somebody can clear this concept... Its quite beginner level question. but It has become a permanent psychlogical tension for me... 
Can I define a function inside a function. e.g;
function abc()
function xyz()
....some code.....
End Function
End Function
I googled this but can't find any related topic.
Please gimme some solution and make my life easy !
-
No
You'll get a syntax error.
-
But of course you can call a function from within a function:
function abc()
myvar = xyz()
abc = myvar
end function
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks