Pass a String Var to a Function

  • Thread starter Thread starter DDBeards
  • Start date Start date
D

DDBeards

This may be an easy one, but I am going nuts with it. I have a routine that
builds a string "em_body". I want to pass this built string to function
called "email_build".

email_build(embod as string) is the function.

I called it with email_build(em_body) and fails do to mismatch, and of
course if I call it with email_build("em_body") all I get is the words
em_body, not the value.

Please help

Chris
 
Back
Top