Board index » delphi » Weird exception occurring "exception unknown software exception (0x0eedfade) "
Johannes Berg
![]() Delphi Developer |
Tue, 08 Jul 2003 18:22:58 GMT
Weird exception occurring "exception unknown software exception (0x0eedfade) "
I've solved your problem the following way, sorry for not having time to
analyze your code thoroughly. unit TIdTCPSoftConnectClient; uses Windows, Messages, SysUtils, Classes, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, syncobjs, IdGlobal; TIdTCPSoftConnectClient = class(TIdTCPClient) procedure Connect; override; property Connecting: boolean read FConnecting stored false; implementation type constructor TIdTCPSoftConnectClient.Create(AOwner: TComponent); destructor TIdTCPSoftConnectClient.Destroy; procedure TIdTCPSoftConnectClient.Connect; end. This is the best I've been able to come up with so far, if there are any XPost&F'up2 borland.public.delphi.internet.winsock johannes |