I wish to make a free .pop. e-mail client, simple. I know to send e-mail
using CDO, but how to get it from server?
I've tried some winsock examples, but always got message "Class is not
licenced....." nothing works...

Found a few ocx on web, but they are not free...

Please help...


--

Re: receive pop mail by Andrew

Andrew
Wed May 11 05:53:50 CDT 2005

You have to use the Winsock on a form in a compiled VFP application.

ie - you cant just oWin = createobject('whatever.winsock')

The control is only liscensed for use on a form.

I create a form class, very small, and not visible and put the winsock on
it. Then you can pretty much use it as before.

Andrew R.


"Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
news:d5sb95$ihg$1@ss405.t-com.hr...
: I wish to make a free .pop. e-mail client, simple. I know to send e-mail
: using CDO, but how to get it from server?
: I've tried some winsock examples, but always got message "Class is not
: licenced....." nothing works...
:
: Found a few ocx on web, but they are not free...
:
: Please help...
:
:
: --
:
:



Re: receive pop mail by Tomislav

Tomislav
Wed May 11 08:52:40 CDT 2005

Tnx, Andrew, I'll try that...
Is there any WoRkInG examples of reading pop mail... ?

Tom
"Andrew R" <adr.notme@sarcastic.co.uk> wrote in message
news:3ee6i0F2k50jU1@individual.net...
> You have to use the Winsock on a form in a compiled VFP application.
>
> ie - you cant just oWin = createobject('whatever.winsock')
>
> The control is only liscensed for use on a form.
>
> I create a form class, very small, and not visible and put the winsock on
> it. Then you can pretty much use it as before.
>
> Andrew R.
>
>
> "Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
> news:d5sb95$ihg$1@ss405.t-com.hr...
> : I wish to make a free .pop. e-mail client, simple. I know to send e-mail
> : using CDO, but how to get it from server?
> : I've tried some winsock examples, but always got message "Class is not
> : licenced....." nothing works...
> :
> : Found a few ocx on web, but they are not free...
> :
> : Please help...
> :
> :
> : --
> :
> :
>
>



Re: receive pop mail by Andrew

Andrew
Wed May 11 10:28:57 CDT 2005

Sorry, my use of the WinSock control has not been for email - but for
UDP/TCP IP messages.

Andrew R.


"Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
news:d5t2nd$9gs$1@ss405.t-com.hr...
: Tnx, Andrew, I'll try that...
: Is there any WoRkInG examples of reading pop mail... ?
:
: Tom
: "Andrew R" <adr.notme@sarcastic.co.uk> wrote in message
: news:3ee6i0F2k50jU1@individual.net...
: > You have to use the Winsock on a form in a compiled VFP application.
: >
: > ie - you cant just oWin = createobject('whatever.winsock')
: >
: > The control is only liscensed for use on a form.
: >
: > I create a form class, very small, and not visible and put the winsock
on
: > it. Then you can pretty much use it as before.
: >
: > Andrew R.
: >
: >
: > "Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
: > news:d5sb95$ihg$1@ss405.t-com.hr...
: > : I wish to make a free .pop. e-mail client, simple. I know to send
e-mail
: > : using CDO, but how to get it from server?
: > : I've tried some winsock examples, but always got message "Class is not
: > : licenced....." nothing works...
: > :
: > : Found a few ocx on web, but they are not free...
: > :
: > : Please help...
: > :
: > :
: > : --
: > :
: > :
: >
: >
:
:



Re: receive pop mail by Bob

Bob
Wed May 11 22:04:34 CDT 2005

you might try this free active x control
http://activex.sourceforge.net/espop.html

Bob Lee


"Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
news:d5sb95$ihg$1@ss405.t-com.hr...
>I wish to make a free .pop. e-mail client, simple. I know to send e-mail
> using CDO, but how to get it from server?
> I've tried some winsock examples, but always got message "Class is not
> licenced....." nothing works...
>
> Found a few ocx on web, but they are not free...
>
> Please help...
>
>
> --
>
>



Re: receive pop mail by Tomislav

Tomislav
Thu May 12 06:18:09 CDT 2005

tnx Bob, but it's not free... it's shareware... works fine, but there is
that shareware screen...

Maybe some other freeware?

Tom
"Bob Lee" <myspam@my-system.net> wrote in message
news:1O6dnabc_K1fWh_fRVn-3g@speakeasy.net...
> you might try this free active x control
> http://activex.sourceforge.net/espop.html
>
> Bob Lee
>
>
> "Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
> news:d5sb95$ihg$1@ss405.t-com.hr...
>>I wish to make a free .pop. e-mail client, simple. I know to send e-mail
>> using CDO, but how to get it from server?
>> I've tried some winsock examples, but always got message "Class is not
>> licenced....." nothing works...
>>
>> Found a few ocx on web, but they are not free...
>>
>> Please help...
>>
>>
>> --
>>
>>
>
>



Re: receive pop mail by Neil

Neil
Fri May 13 15:46:21 CDT 2005

Hi Tomislav,
Look at http://www.utmag.com/March2002/Page30.asp

Regards,
Neil

"Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
news:d5t2nd$9gs$1@ss405.t-com.hr...
> Tnx, Andrew, I'll try that...
> Is there any WoRkInG examples of reading pop mail... ?
>
> Tom
> "Andrew R" <adr.notme@sarcastic.co.uk> wrote in message
> news:3ee6i0F2k50jU1@individual.net...
> > You have to use the Winsock on a form in a compiled VFP application.
> >
> > ie - you cant just oWin = createobject('whatever.winsock')
> >
> > The control is only liscensed for use on a form.
> >
> > I create a form class, very small, and not visible and put the winsock
on
> > it. Then you can pretty much use it as before.
> >
> > Andrew R.
> >
> >
> > "Tomislav Sokol" <tomislav.sokol@pin-computers.hr> wrote in message
> > news:d5sb95$ihg$1@ss405.t-com.hr...
> > : I wish to make a free .pop. e-mail client, simple. I know to send
e-mail
> > : using CDO, but how to get it from server?
> > : I've tried some winsock examples, but always got message "Class is not
> > : licenced....." nothing works...
> > :
> > : Found a few ocx on web, but they are not free...
> > :
> > : Please help...
> > :
> > :
> > : --
> > :
> > :
> >
> >
>
>