| Subject: | EAbstracterror using idPOP3 |
| Posted by: | Keyracer . |
| Date: | Tue, 30 Dec 2008 |
Hi all,
I get an EAbstract error when using the latetst indy 10 version.
I raises during a idpop3.connect
This is a piece of my code :
IdPop3.Host := POP3Host.Text;
IdPOP3.Port := StrToInt(POP3Port.Text);
IdPOP3.UserName := POP3AccountName.Text;
IdPOP3.Password := POP3Password.Text;
Err := 0;
Try
IdPop3.Connect;
Except
On E : Exception do
Begin
Err := 1;
SaveLog ('Error : '+E.Message);
End;
End;
Does anyone have a solution? I've downloaded the latest build from indy.fulgan.com.
Regards,
Keyracer
Edited by: Keyracer . on Dec 30, 2008 11:49 AM