Can anyone point me to some examples for using blatt with VFP? Also a
recommendation or two for a reasonable priced 3rd party smtp/pop3
library would be appreciated.
Thanks.
-Lew

Re: Blatt examples by steve

steve
Sat May 14 06:25:51 CDT 2005

On Fri, 13 May 2005 15:06:40 -0400, Lew wrote:

> Can anyone point me to some examples for using blatt with VFP? Also a
> recommendation or two for a reasonable priced 3rd party smtp/pop3
> library would be appreciated.
> Thanks.
> -Lew

Try:

http://www.tedroche.com/Present/2002/emailwooutlook.html

LOCAL lcMessage as String, ;

liResult as Integer && integer result code

DECLARE Integer Send IN BLAT.DLL string cMessage

lcMessage = "Message.txt -t tedroche@tedroche.com"

liResult = Send(lcMessage)

? liResult

HTH

Steve

Re: Blatt examples by Jeff

Jeff
Mon May 16 14:41:07 CDT 2005

I have used two different ones:

www.marshallsoft.com

and

www.west-wind.com

In a nutshell:

The west-wind tool kit is easier to use and has more features.

The marshallsoft tool kit is less expensive and has great technical support.

I started with the marshallsoft tool kit and it worked well for many of my
applications. I only switched to the west-wind tools when I started running
into limitations that I could work around. Since I'd rather maintain one set
of code I switched everything to the west-wind tools.

For plain simple stuff, however, I still recommend the marshallsoft tools
because it is so rare these days that you can just pick up the phone and
talk to the developer. With west-wind that is not an option. You are
depending on BBS / Newsgroup style support. It has usually been prompt and
accurate but picking up the phone and calling Mike at marshallsoft is much
quicker.

Regards,

Jeff

"Lew" <lew@clsystems.com> wrote in message
news:eWSVn7%23VFHA.2740@TK2MSFTNGP14.phx.gbl...
> Also a recommendation or two for a reasonable priced 3rd party smtp/pop3
> library would be appreciated.
> Thanks.
> -Lew