Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Gather fields to a memo
Message
From
16/10/2003 14:24:43
 
General information
Forum:
Visual FoxPro
Category:
Conferences & events
Miscellaneous
Thread ID:
00839391
Message ID:
00839429
Views:
29
This message has been marked as the solution to the initial question of the thread.
>Thanks for your program but only an e-mail address appears
>as final result:
>
>;xxxxxxxx.ibest.com.br

Oops! you should have noticed the error...

Here is the right code:
local lcEmails
lcEmails = ""

select Cients
scan for NOT empty( e_mail )
   lcEmails = lcEmails ;
    + iif( empty( lcEmails ), "", ";" ) ;
    + alltrim( e_mail )
endscan

select OtherTable
replace bulk_mail with lcEmails
I just missed adding the previous email in each loop.

Enjoy,
Previous
Reply
Map
View

Click here to load this message in the networking platform