I'm trying to save into a variable the parameters list that I receive in a Function. For example:
Function fTest(xVal1 as Integer, xVal2 as Integer) as String
wListParams = "xVal1:" & xVal 1 & "#" & "xVal2:" & xVal2
End Function
I want to use this list if an error occurs and send a mail.
What I'm looking it's a way for to build this String without writing every case in every function (more than 1000).
Please help!
Thanks!!!
Functionand the line that saysEnd Function, so you can't access them from anywhere else. If you want to use them, you have to use them there. What exactly are you attempting to do?without writing every case in every function, so we can get the pattern.