G
Guest
Hello,
What is the best and correct way to pass data between Private Sub's?
What is the best and correct way to pass data between Private Sub's?
Mark said:What is the best and correct way to pass data between Private Sub's?
That changes things. If you need to pass values back and forth, you
either have to work with FUNCTIONs and not SUBs (FUNCTIONS execute code
and return the values you designate, SUB simply execute code).