Board index » delphi » Delphi Runtime Error 217 ????

Delphi Runtime Error 217 ????

Hi All

I am getting a Runtime Error 217 in xxxxx, the help file references an
EControlC error, which is a Ctrl-C key-press to close a consol application.

My App is not a consol App...

any thoughts would be greatly appreciated

Mark Redman

 

Re:Delphi Runtime Error 217 ????


Quote
Mark Redman wrote:

> Hi All

> I am getting a Runtime Error 217 in xxxxx, the help file references an
> EControlC error, which is a Ctrl-C key-press to close a consol application.

> any thoughts would be greatly appreciated

My quess is that you have an infinite recursive loop somewhere in your
code, some event or function calling/firing itself.
Hard to make any further quesses where, because you did not give a hint
what kind of app you have, DB-related maybe?

Markku Nevalainen

Re:Delphi Runtime Error 217 ????


"Mark Redman" <MarkRed...@zoom.co.uk> skrev i en meddelelse
news:ZuEe5.18095$Sv3.76836@monolith.news.easynet.net...

Quote
> I am getting a Runtime Error 217 in xxxxx, the help file references an
> EControlC error, which is a Ctrl-C key-press to close a consol

application.

Most likely you have an exception in an initialization or finalization
section.

Finn Tolderlund

Re:Delphi Runtime Error 217 ????


Quote
"Markku Nevalainen" <m...@iki.fi> wrote in message

news:397B4AF5.7070@iki.fi...

Quote
> Mark Redman wrote:

> > Hi All

> > I am getting a Runtime Error 217 in xxxxx, the help file references an
> > EControlC error, which is a Ctrl-C key-press to close a consol
application.

> > any thoughts would be greatly appreciated

> My quess is that you have an infinite recursive loop somewhere in your
> code, some event or function calling/firing itself.
> Hard to make any further quesses where, because you did not give a hint
> what kind of app you have, DB-related maybe?

> Markku Nevalainen

I had this error message a while back.  I think it was when the order of
creation of objects in my main.pas was wrong.  I was trying to access
objects that did not yet exist.  It's been a while.  Perhaps it was
something else, but you might want to have a look at the order things get
created.

--
Bob Runyan
Reno, NV

Other Threads