Debug Breakpoint doesn´t work only in DataModule unit - Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:19:55Zhttp://stackoverflow.com/feeds/question/1143783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1143783/debug-breakpoint-doesnt-work-only-in-datamodule-unit-delphi1Debug Breakpoint doesn´t work only in DataModule unit - DelphiFelipe2009-07-17T14:55:32Z2009-07-20T18:25:31Z
<p>Hello folks,
Debug breakpoint's works fine in all other 38 units of my system. But, in my DataModule, that have +- 10.000 lines, delphi disables then after I launch by F9/F8/F7. In any part of source that unit, even on obrigatory steps like OnCreate, SQLConnection.Active:=true, etc.
Detail: works fine until +- 20 days ago.
I'm using D7 and have all sources of components also.
Thanks
Felipe</p>
http://stackoverflow.com/questions/1143783/debug-breakpoint-doesnt-work-only-in-datamodule-unit-delphi/1143970#11439703Answer by JosephStyons for Debug Breakpoint doesn´t work only in DataModule unit - DelphiJosephStyons2009-07-17T15:23:43Z2009-07-17T15:23:43Z<p>Try doing a full build (Shift+F9). If that does not work, then what happens if you <a href="http://stackoverflow.com/questions/160923/how-to-simulate-a-delphi-breakpoint-in-code">simulate a breakpoint in code</a> with the below?</p>
<pre><code>asm int 3 end;
</code></pre>
http://stackoverflow.com/questions/1143783/debug-breakpoint-doesnt-work-only-in-datamodule-unit-delphi/1144101#11441013Answer by Ken White for Debug Breakpoint doesn´t work only in DataModule unit - DelphiKen White2009-07-17T15:43:31Z2009-07-17T18:18:31Z<p>Check for multiple copies of your source file for the datamodule. Sometimes the code you think you're running isn't the code the compiler and debugger are seeing.</p>
<p>Next, make sure you haven't accidentally turned off debugging in your code with {$D-} or {$DEBUGINFO OFF}. This can turn off debugging info for a single unit.</p>
<p>Also, make sure you've turned on Integrated Debugging in Tools|Options|Debugger Options. I know you said you could debug other places, but it can't hurt to make sure that integrated debugging didn't get accidentally turned off somehow.</p>
http://stackoverflow.com/questions/1143783/debug-breakpoint-doesnt-work-only-in-datamodule-unit-delphi/1144450#11444500Answer by Pauk for Debug Breakpoint doesn´t work only in DataModule unit - DelphiPauk2009-07-17T16:44:06Z2009-07-17T16:44:06Z<p>There's a blog post from <a href="http://www.stevetrefethen.com/blog/WhyTheDelphiDebuggerMightFailToStopAtYourBreakpoint.aspx" rel="nofollow">Steve Trefethen, a while back, explaining some possible reasons</a>, although if you say you can debug other units, I doubt they'll apply. </p>
<p>We had the same issue with a large DataModule in Delphi 5 that wouldn't let us debug it, and kind of put it down to it being too large a file to debug and Delphi not liking it. When we moved to Delphi 2007, we could debug it again. Not sure why, nothing had changed (code wise).</p>
http://stackoverflow.com/questions/1143783/debug-breakpoint-doesnt-work-only-in-datamodule-unit-delphi/1145538#11455380Answer by DougB for Debug Breakpoint doesn´t work only in DataModule unit - DelphiDougB2009-07-17T20:32:16Z2009-07-17T20:32:16Z<p>Felipe, is the unit that will not allow you to debug in a dll that is being moved into or out of memory? I've found when debugging dll's that if I do something in the executable that executes code in another dll or unloads the dll that the problem unit is in - Delphi will disable all breakpoints. Usually a restart of Delphi and being sure to keep a single instance of the problem unit's dll in memory is the only solution for this problem.</p>
<p>I doubt size is the issue, as I have a 17k line unit that I debug regularly.</p>
http://stackoverflow.com/questions/1143783/debug-breakpoint-doesnt-work-only-in-datamodule-unit-delphi/1145559#11455590Answer by berocoder for Debug Breakpoint doesn´t work only in DataModule unit - Delphiberocoder2009-07-17T20:35:05Z2009-07-17T20:35:05Z<p>I have a vague memory that debugging very large files was buggy in old D7.
Try to break you big unit in several classes and se if you can debug outside your unit.
Another option could be to turn off debuginfo in your big file except the section you want to debug. It is worth a try.</p>
http://stackoverflow.com/questions/1143783/debug-breakpoint-doesnt-work-only-in-datamodule-unit-delphi/1155108#11551080Answer by Felipe for Debug Breakpoint doesn´t work only in DataModule unit - DelphiFelipe2009-07-20T18:25:31Z2009-07-20T18:25:31Z<p>Hello folks!
I discovered this problem. It's a weird behavior in Delphi7 that limits the number of fields in interface class section, between: type TDM=class(TDataModule) and private section. I deleted some fields (DataSet Fields (+-40 fields)) and degub runs again. I add these fields again, and debug not runs. I'm sure that's a limit, because doesn't mather which component fields I deleted. I tried with several fields, from different tables too, adding, testing and deleting. It's a shame, but is true...
Thanks for your help.</p>