Question
How can I make the function parameters in the main program automatically same as in the library?
I have multiple parameters in my library function like this:
function creatStyle(paraStn, tabStn, contiParaStn, bodyParaStn, headerParaStn, bodyStn, headerStn, contiStn, footerStn, capLStn, capCStn, capCSDhtn)I have multiple main programs, and every time I've changed a parameter in the library, I have to go and change each of them, forgetting parts and getting errors that will make me look for half a day.
Is there any way to make:
creatStyle(......) ;with
function creatStyle(......) ;always be automation consistent.
I change the parameters of the function in the library, and it is automatically updated in the main program.
