It may have been moved in the reorganization of the Indy source code for v10. Use Find in Files from the Edit menu to find it in the Indy source directory and add that unit to your uses.
I am using Indy9 w/D7. --- Gordon Waters <[EMAIL PROTECTED]> wrote: > Eddie, > > I get a [Error] E2003 Undeclared identifier: 'EIdSocketError' > > I have put idException in my uses clause. > > I am using Indy10. > > Thanks > > Gordon. > > > Eddie Shipman wrote: > > Try this: > > > > uses .., idException; > > > > try > > try > > If IdPop.Connected then > > IdPop.Disconnect; > > IdPop.Connect; > > // lots of processing > > except > > on EIdSocketError do > > ; > > end; > > finally > > timer1.Enabled := true; // this is where i then rstart the process > > StaticText3.Caption := 'Good Emails -> '+ inttostr(goodemails); > > StaticText4.Caption := 'Total Emails -> '+ inttostr(totalemails); > > Screen.Cursor := CRDefault; > > end; > > > > > _______________________________________________ > Delphi mailing list -> [email protected] > http://www.elists.org/mailman/listinfo/delphi > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com _______________________________________________ Delphi mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi

