D2009 VCL unit that won't compile. - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T19:10:14Zhttp://stackoverflow.com/feeds/question/347871http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/347871/d2009-vcl-unit-that-wont-compile0D2009 VCL unit that won't compile.Mason Wheeler2008-12-07T18:28:05Z2009-03-06T16:54:35Z
<p>I found a bug in Delphi 2009's implementation of TFields and wrote a quick patch. I copied DB.pas to my projects folder and added it to the project's file list, but now I can't get it to compile. The first two error messages don't even make any sense when I go to the indicated places in the code.</p>
<p>Surely if anything can be counted on to compile properly, it's the code from CodeGear. They've already managed to compile it, to produce the VCL components. So what am I missing? Here's the compiler's output:</p>
<pre><code>[DCC Error] DB.pas(2536): E2134 Type 'Pointer' has no type info
[DCC Error] DB.pas(10799): E2066 Missing operator or semicolon
[DCC Error] DB.pas(12933): E2217 Published field 'FCursor' not a class or interface type
[DCC Error] DB.pas(12934): E2217 Published field 'FTitle' not a class or interface type
[DCC Fatal Error] testing.dpr(23): F2063 Could not compile used unit '..\..\..\vclpatch\DB.pas'
</code></pre>
http://stackoverflow.com/questions/347871/d2009-vcl-unit-that-wont-compile/348257#3482575Answer by Andreas for D2009 VCL unit that won't compile.Andreas2008-12-07T22:50:51Z2008-12-07T22:50:51Z<p>Does it help if you add the following line at the top of the DB.pas unit.</p>
<p>{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N-,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}</p>
<p>If it works after using this line, then your project options are not compatible with the settings that CodeGear used to compile the RTL/VCL.</p>
<p>BTW: Line 2536 is a line that contains only the text "type". Have you changed the file? Or are you missing Update 1?</p>
http://stackoverflow.com/questions/347871/d2009-vcl-unit-that-wont-compile/487488#4874881Answer by Heinrich Ulbricht for D2009 VCL unit that won't compile.Heinrich Ulbricht2009-01-28T12:45:51Z2009-01-28T12:45:51Z<p>I ran into the same problem with DB.pas but did never modify any VCL units. So the cause clearly had to be my project. Switching <strong>Emit runtime type information</strong> to <strong>false</strong> did the trick and solved the problem.</p>
<p>(Project Options: Delphi Compiler -> Compiling -> Code generation -> Emit runtime type information)</p>