K
Karen
I have a function which I call. I pass several variables to the function and I want to also get a variable passed back from the function.
This works fine now for passing variables to the function:
Call ComboAdd(NewData, "TestContactTable", "TradeorSkillType", TradeorSkillType)
After the function has done it's work I want to get back from the function a variable that I can use to determine which of two operations were done.
Can I pass several variables to a function and get back one value to act on?
Karen
This works fine now for passing variables to the function:
Call ComboAdd(NewData, "TestContactTable", "TradeorSkillType", TradeorSkillType)
After the function has done it's work I want to get back from the function a variable that I can use to determine which of two operations were done.
Can I pass several variables to a function and get back one value to act on?
Karen