>I use firstname$ + ³.² + lastname$ + <companyemail.suffix> to create an
> email address. The first two variables are also used as the signoff
[quoted text clipped - 17 lines]
>
> SenderEmail$ = firstName$ + ³.² + lastName$ + ³@² + ³TexEmailEnd.value
Change it to this
SenderEmail$ = LCase$(firstName$ & "." & lastName$ & "@" &
TexEmailEnd.value)
I always recommend using & for string concatenation rather than +.

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
Sol Apache - 17 Dec 2006 14:07 GMT
Hi Jonathan
Thank you very much. It¹s very simple, once I know what to do...
Sol
On 17/12/06 13:07, in article eVhfr9dIHHA.1816@TK2MSFTNGP06.phx.gbl,
>> I use firstname$ + ³.² + lastname$ + <companyemail.suffix> to create an
>> email address. The first two variables are also used as the signoff
[quoted text clipped - 24 lines]
>
> I always recommend using & for string concatenation rather than +.