pass arguments to function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a function with arguments and need to pass values of those arguments
to another function called from the first function. Can these arguments have
the same name in both places? Does this cause subsequent maintenance problems
or confusion troubleshooting errors?

Thanks so much!
 
Parameter names are unique to each function. Having the argument names be
the same will not cause any problems. Look at the declarations for the
various events in a form: the same parameter names are consistently reused.
 
Back
Top