bostonfrog
Programmer
When I call a function in a sub, how do I return to the next line in the sub after processing the function? I've always written forms where a function is called, but never yet where I went back to the sub. Sorry for my ignorance.
For example:
For example:
Code:
cmdButton_Click()
call function1
' more lines of code, return to this line after function.
End sub
function1()
'process whatever
'How do you return to the next line in the sub that called it?
end function