[most of message cut for clarity, see original for context]

> Now, I have an internally developed function
> (the internal of which are hidden from me) which
> processes the email addresses. This takes as one
> of it's parameters an array of strings.
> So before I call the function I say:
> @AddrList = ("$Department", "$AddrToCheck");

Why are you placing those variables in double quotes?  That interpolates the
variables, and I don't think that is REALLY what you want to do.  Try using
the line:

@AddrList = ($Department,$AddrToCheck);

                                /\/\ark


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to