User Cesar Romero - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T13:56:03Zhttp://stackoverflow.com/feeds/user/36875http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857364/when-could-shellexecute-fail-delphi/1857557#18575570Answer by Cesar Romero for When could ShellExecute fail? (Delphi)Cesar Romero2009-12-07T02:57:57Z2009-12-07T02:57:57Z<p>From <a href="http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx" rel="nofollow">MSDN</a></p>
<blockquote>
<p><strong>Remarks</strong></p>
<p>Because ShellExecute can delegate
execution to Shell extensions (data
sources, context menu handlers, verb
implementations) that are activated
using Component Object Model (COM),
COM should be initialized before
ShellExecute is called. Some Shell
extensions require the COM
single-threaded apartment (STA) type.
In that case, COM should be
initialized as shown here:</p>
</blockquote>
<pre><code>CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE)
</code></pre>
<p>And as Ken Lange alread suggested, deppending on what you want to execute, you may need administrative rights.</p>
http://stackoverflow.com/questions/897357/why-is-the-executable-produced-by-delphi-2009-ide-different-to-that-produced-on-t/897642#8976427Answer by Cesar Romero for Why is the executable produced by Delphi 2009 IDE different to that produced on the command line?Cesar Romero2009-05-22T12:38:11Z2009-11-26T17:20:57Z<p>To see what IDE is doind, check </p>
<p>Tools | Options | Environment Options | Compiling and Running | Show Command Line</p>
<p>And you can check the compiler messages.</p>
http://stackoverflow.com/questions/1715393/delphi-how-to-use-line-breaks-in-a-ini-file/1715883#17158832Answer by Cesar Romero for Delphi: How to use line breaks in a ini file?Cesar Romero2009-11-11T15:22:21Z2009-11-11T15:22:21Z<p>I also need this when a value is stored in a TStringList.
To solve this issue I have used TStringList.DelimitedText property, instead of TStringList.Text:</p>
<p>Define the Delimiter:</p>
<pre><code>Items.StrictDelimiter:= True;
Items.Delimiter:= ';';
</code></pre>
<p>Save:</p>
<pre><code>IniFile.WriteString('Session', 'Key', Items.DelimitedText);
</code></pre>
<p>Load:</p>
<pre><code>Items.DelimitedText:= IniFile.ReadString('Session', 'Key', '');
</code></pre>
http://stackoverflow.com/questions/1702487/firebird-which-driver/1702824#17028243Answer by Cesar Romero for Firebird, which driver?Cesar Romero2009-11-09T18:26:38Z2009-11-09T18:26:38Z<p>I use DBX since Delphi 6, and Im happy :)</p>
<ul>
<li>With Delphi 2010 Im using default Firebird driver - Only available for Enterprise and Architect editions</li>
<li>Delphi 2006, 2007 and 2009 I have used CoreLabs/DevArt DBX Drivers</li>
<li>Until Delphi 7 I have used default DBX Interbase driver</li>
</ul>
<p>Now you can also test this free DBX driver that seems to be very good</p>
<ul>
<li>Download - <a href="http://sites.google.com/site/dbxfirebird/" rel="nofollow">http://sites.google.com/site/dbxfirebird/</a></li>
<li>Support - <a href="http://groups.google.com/group/dbxfirebird?pli=1" rel="nofollow">http://groups.google.com/group/dbxfirebird?pli=1</a></li>
</ul>
http://stackoverflow.com/questions/1697147/is-mmx-better-than-delphis-own-modelling/1697258#16972586Answer by Cesar Romero for Is MMX better than Delphi's own modelling?Cesar Romero2009-11-08T17:30:22Z2009-11-08T17:46:55Z<p>MMX is a great tool for coding OOP, it improves the productivity when you get used to this features.</p>
<p>I don't think it replaces a Modeling Tool, I think MMX help you to write OOP code, refactory, navigate and inspect code, I can't imagine another tool to improve OOP coding in Delphi IDE like MMX does.</p>
<p>Delphi Templates can help you coding, is great and I do like, but MMX have a lot of "wizards" done, and I can't imagine how to implement some MMX actions using templates.</p>
<p>I use Delphi Modeling and MMX for coding, not only OOP, but to study and undertand 3th party units.</p>
<p>My favorites features:</p>
<ul>
<li>Unit visualization and navigation</li>
<li>Class/properties creating/editing</li>
<li>method parameter editing</li>
<li>copy/cut/past classes/properties/methods</li>
<li>local var creation and editing</li>
<li>scope renaming</li>
<li>Live Metrics, "I use this a LOT"</li>
<li>Sometimes I use live documentation</li>
</ul>
<p>To me, MMX is a must have expert.</p>
http://stackoverflow.com/questions/1424920/how-do-i-get-the-usable-coordinates-of-the-screen-in-delphi/1424954#14249546Answer by Cesar Romero for How Do I Get the Usable Coordinates of the Screen in DelphiCesar Romero2009-09-15T03:21:48Z2009-09-15T03:26:51Z<p>You should use Screen.WorkArea* properties:</p>
<pre><code> Screen.WorkAreaRect
Screen.WorkAreaHeight
Screen.WorkAreaLeft
Screen.WorkAreaTop
Screen.WorkAreaWidth
</code></pre>
<p>or</p>
<pre><code>Screen.Monitors[I].WorkareaRect
</code></pre>
http://stackoverflow.com/questions/1369817/help-using-rijndael-algorithm-in-delphi-2007-net/1370028#13700280Answer by Cesar Romero for Help using Rijndael Algorithm in Delphi 2007. NetCesar Romero2009-09-02T20:49:58Z2009-09-02T20:49:58Z<p>Turbo Power LockBox, It provides
support for Blowfish, RSA, MD5, SHA-1, DES, triple- DES, <strong>Rijndael</strong> and
digital signing of messages.</p>
<p><a href="https://sourceforge.net/projects/tplockbox/" rel="nofollow">https://sourceforge.net/projects/tplockbox/</a></p>
http://stackoverflow.com/questions/1360145/delphi-using-bigints-from-a-database/1360648#1360648-1Answer by Cesar Romero for Delphi: using BigInts from a database Cesar Romero2009-09-01T05:18:22Z2009-09-01T05:18:22Z<p>I dont have Delphi 7 installed here anymore, but looking in the help, I see you can get as Float (Double), like this:</p>
<pre><code>function GetFieldAsInt64(Field: TField): Int64;
begin
Result:= Int64(Round(Field.GetAsFloat));
end;
</code></pre>
<p>And then, call the function:</p>
<pre><code>var
Value: Int64;
begin
Value:= GetFieldAsInt64(MyFMTBCDField);
end;
</code></pre>
http://stackoverflow.com/questions/1352312/what-is-the-fastest-way-to-check-if-two-tbitmaps-are-the-same/1352413#135241311Answer by Cesar Romero for What is the fastest way to check if two Tbitmaps are the same?Cesar Romero2009-08-29T21:23:39Z2009-08-29T21:52:10Z<p>You can save both Bitmaps to TMemoryStream and compare using CompareMem:</p>
<pre><code>function IsSameBitmap(Bitmap1, Bitmap2: TBitmap): Boolean;
var
Stream1, Stream2: TMemoryStream;
begin
Assert((Bitmap1 <> nil) and (Bitmap2 <> nil), 'Params can''t be nil');
Result:= False;
if (Bitmap1.Height <> Bitmap2.Height) or (Bitmap1.Width <> Bitmap2.Width) then
Exit;
Stream1:= TMemoryStream.Create;
try
Bitmap1.SaveToStream(Stream1);
Stream2:= TMemoryStream.Create;
try
Bitmap2.SaveToStream(Stream2);
if Stream1.Size = Stream2.Size Then
Result:= CompareMem(Stream1.Memory, Stream2.Memory, Stream1.Size);
finally
Stream2.Free;
end;
finally
Stream1.Free;
end;
end;
begin
if IsSameBitmap(MyImage1.Picture.Bitmap, MyImage2.Picture.Bitmap) then
begin
// your code for same bitmap
end;
end;
</code></pre>
<p>I did not benchmark this code X scanline, if you do, please let us know which one is the fastest. </p>
http://stackoverflow.com/questions/554100/how-to-know-what-type-is-a-var3How to know what type is a var?Cesar Romero2009-02-16T18:25:12Z2009-08-24T02:25:21Z
<p>TypeInfo(Type) returns the info about the specified type, is there any way to know the typeinfo of a var?</p>
<pre><code>var
S: string;
Instance: IObjectType;
Obj: TDBGrid;
Info: PTypeInfo;
begin
Info:= TypeInfo(S);
Info:= TypeInfo(Instance);
Info:= TypeInfo(Obj);
end
</code></pre>
<p>This code returns:</p>
<p><strong>[DCC Error] Unit1.pas(354): E2133 TYPEINFO standard function expects a type identifier</strong></p>
<p>I know a non instantiated var is only a pointer address.
At compile time, the compiler parses and do the type safety check. </p>
<p><strong>At run time, is there any way to know a little more about a var, only passing its address?</strong></p>
http://stackoverflow.com/questions/1305531/ado-or-dbx-using-delphi/1305841#13058416Answer by Cesar Romero for ADO or DBX using DelphiCesar Romero2009-08-20T12:25:35Z2009-08-20T12:25:35Z<p>ADO is simple to use and is there, you only must make sure to install the correponding client driver in the client side.</p>
<p>I found DBX more flexible and it is better integrated within IDE and another technologies like DataSnap.</p>
<p>For the same purpose than you, I have used DBX with Third Party Drivers from <a href="http://www.devart.com" rel="nofollow">DevArt</a>.
You can compile the drivers with your application if you buy the drivers sources.</p>
http://stackoverflow.com/questions/1268710/delphi-4-error-file-not-foundhtmlcons-inc/1268768#12687681Answer by Cesar Romero for Delphi 4 error:- file not found:'htmlcons.inc'Cesar Romero2009-08-12T21:17:10Z2009-08-13T23:47:11Z<p>Add the path of htmlcons.inc file, in the project search path.</p>
<p><strong>Edit</strong>:</p>
<p>I don't have Delphi 4 to check what is the way to do that. </p>
<p>You should add the full folder path "C:\Program Files\PBear\HTMLComponents\Thtml\Package" where htmlIcons.inc is, in the project option "Search Path", or in the Global "Library Path".</p>
<p>Project Options in Delphi 2009:
- Menu: Project | Options | Delphi Compiler | Search Path</p>
<p>Global Options in Delphi 2009:
- Menu: Tools | Options | Environment Options | Delphi Options | Library Win32 | Library path</p>
<p>It will work with any of both option, if you change global, it will be there for any project, or if you add only to the project option you are compiling, you can add a relative path.</p>
http://stackoverflow.com/questions/1188829/how-to-add-a-field-programatically-to-a-tadotable-in-delphi/1188985#11889850Answer by Cesar Romero for How to add a field programatically to a TAdoTable in DelphiCesar Romero2009-07-27T15:55:06Z2009-07-27T15:55:06Z<p>Try set
Field.DataSet:= Table;</p>
http://stackoverflow.com/questions/1032287/is-there-a-method-to-trigger-paste-ctrlv-event-to-any-application/1033167#10331670Answer by Cesar Romero for is there a method to trigger paste (ctrl+v) event to any application?Cesar Romero2009-06-23T15:09:04Z2009-06-23T15:09:04Z<p>You can try <a href="http://www.delphitricks.com/source-code/windows/simulate%5Fthe%5Fpressing%5Fof%5Fkeyboard%5Fkeys.html" rel="nofollow">PostKeyEx32</a> </p>
<p>I Wrote a article in Portuguese, but you can read the code, it is simple.</p>
<p><a href="http://www.cesarromero.com.br/simulando-keypress-com-postkeyex32/" rel="nofollow">http://www.cesarromero.com.br/simulando-keypress-com-postkeyex32/</a></p>
<p>You can send CTRL + Vm like this:</p>
<pre><code>PostKeyEx32(Ord('V'), [ssCtrl], False);
</code></pre>
http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1019041#10190411Answer by Cesar Romero for Where to start OOP in Delphi mainly focusing on database development?Cesar Romero2009-06-19T17:10:02Z2009-06-19T17:10:02Z<p><a href="http://jazz-sdk.googlecode.com" rel="nofollow">Jazz SDK</a>
Value Type, OPF and MVP Frameworks</p>
http://stackoverflow.com/questions/970934/convert-delphi-bitwise-operation-to-cobol1Convert Delphi Bitwise Operation to CobolCesar Romero2009-06-09T15:51:42Z2009-06-15T14:39:31Z
<p>How can this code be converted to COBOL?</p>
<pre><code>Result := GetSysColor(Color and $000000FF)
</code></pre>
<p>The value types are DWORD, I guess it is a bitwise operation.</p>
http://stackoverflow.com/questions/861045/which-variables-are-initialized-when-in-delphi/861174#8611741Answer by Cesar Romero for Which variables are initialized when in Delphi?Cesar Romero2009-05-14T01:31:29Z2009-05-14T01:31:29Z<p>I have a similar situation, and thought the same, but when I add other variables used before the record, the values become garbage, so before I use my record I had to initialize using FillChar(MyRecord, SizeOf(MyRecord), #0).</p>
http://stackoverflow.com/questions/809970/how-can-i-create-77-files-the-content-of-which-is-the-name-of-each-file/810202#8102020Answer by Cesar Romero for How can I create 77 files the content of which is the name of each file? Cesar Romero2009-05-01T04:31:17Z2009-05-01T04:31:17Z<p>Delphi/Free Pascal</p>
<pre><code>program Create77Files;
{$APPTYPE CONSOLE}
uses
Classes, SysUtils;
var
I: Integer;
S: string;
begin
for I := 1 to 77 do
begin
S:= 'file' + IntToStr(I);
with TStringStream.Create(S) do
begin
SaveToFile(S);
Free;
end;
end;
end.
</code></pre>
http://stackoverflow.com/questions/809649/do-you-know-an-mvc-framework-for-win32-delphi-applications/809720#8097202Answer by Cesar Romero for Do you know an MVC framework for Win32 Delphi applications?Cesar Romero2009-05-01T00:27:39Z2009-05-01T00:27:39Z<p>A little different, but you can see the a MVP implementation here:</p>
<p><a href="http://jazz-sdk.googlecode.com" rel="nofollow">http://jazz-sdk.googlecode.com</a></p>
http://stackoverflow.com/questions/798382/delphi-ereaderror-with-message-property-persistence-does-not-exist/798659#7986594Answer by Cesar Romero for Delphi: EReadError with message 'Property Persistence does Not Exist'Cesar Romero2009-04-28T15:56:29Z2009-04-28T16:07:00Z<ol>
<li>Open the Form in Delphi IDE </li>
<li>Use Alt + F12 to edit the .DFM source </li>
<li>Search the "Persistence" property </li>
<li>Delete the line with "Persistence" property</li>
</ol>
<p>DFM example:</p>
<pre><code>SomeComponent1 = TSomeComponent
OtherProperty = OtherValue
Persistence = True
AnotherProperty = AnotherValue
end
</code></pre>
<p>Also you can use the great DFMCheck 1.4 tool, by Andreas Hausladen. To check any other missing property like that:</p>
<p><a href="http://andy.jgknet.de/blog/?page%5Fid=177" rel="nofollow">http://andy.jgknet.de/blog/?page_id=177</a></p>
<p>This is most likely caused by the compiled & installed package being out of sync with the actual .pas file. If you have source code then rebuilding the packages will probably fix it.</p>
http://stackoverflow.com/questions/741735/what-is-the-meaning-of-the-reintroduce-and-override-directives-in-delphi/741954#7419541Answer by Cesar Romero for What is the meaning of the reintroduce and override directives in Delphi?Cesar Romero2009-04-12T15:46:25Z2009-04-12T15:46:25Z<p>"<strong>override</strong>" directive is used to override virtual methods in inherited classes.</p>
<p>"<strong>reintroduce</strong>" directive is used to declare a method with same name than super class, but with different parameters.</p>
http://stackoverflow.com/questions/721696/creating-image-from-html/723102#7231021Answer by Cesar Romero for Creating image from HTMLCesar Romero2009-04-06T20:34:08Z2009-04-06T20:40:06Z<p>I wrote my own solution with Delphi using TWebBrowser, a wrapper to MSHTML.</p>
<p>But you can try this for free</p>
<p><a href="http://labs.trolltech.com/blogs/2008/11/03/thumbnail-preview-of-web-page/" rel="nofollow">http://labs.trolltech.com/blogs/2008/11/03/thumbnail-preview-of-web-page/</a>
or
<a href="http://cutycapt.sourceforge.net/" rel="nofollow">http://cutycapt.sourceforge.net/</a></p>
http://stackoverflow.com/questions/721948/delphi-twain-issue-help/722392#7223920Answer by Cesar Romero for Delphi Twain issue helpCesar Romero2009-04-06T17:22:37Z2009-04-06T17:22:37Z<p>What are you doing when you get the Image, did you keep in memory?
Or the library can have some memory leaks, you can check if it is true with FastMM4.</p>
http://stackoverflow.com/questions/719793/how-to-maintain-database-output-in-combo-box-or-dbgrid-after-closing-tadoconnecti/720088#7200886Answer by Cesar Romero for how to maintain database output in combo box or dbgrid after closing TAdoconnectionCesar Romero2009-04-06T02:22:57Z2009-04-06T13:32:39Z<p>You can populate a TClientDataSet with your Query ResultSet, and then link the TClientDataSet to the TDBGrid.</p>
http://stackoverflow.com/questions/689500/delphi-silently-cropping-string-literals/689664#68966413Answer by Cesar Romero for Delphi silently cropping string literalsCesar Romero2009-03-27T12:57:19Z2009-03-28T02:05:39Z<p>This is a Delphi 2009 bug with string literals, it should raise the same error as D2007.</p>
<p>Try this version of Andreas IDE Fix pack, its supose to fix this bug.
<a href="http://andy.jgknet.de/misc/IDEFixPack2009Reg26Beta1.zip" rel="nofollow">http://andy.jgknet.de/misc/IDEFixPack2009Reg26Beta1.zip</a></p>
http://stackoverflow.com/questions/346057/is-it-possible-to-log-the-sql-queries-between-a-delphi-app-and-a-msaccess-db/346221#3462216Answer by Cesar Romero for Is it possible to log the SQL queries between a Delphi app and a MsAccess DB?Cesar Romero2008-12-06T12:24:32Z2009-03-22T01:32:33Z<p>Inside your application you can log the commands in TADOConnection.OnWillExecute event, you only have to save the CommandText, but you can also log a lot of other options.</p>
<pre><code>procedure TForm23.ADOConnection1WillExecute(Connection: TADOConnection; var
CommandText: WideString; var CursorType: TCursorType; var LockType:
TADOLockType; var CommandType: TCommandType; var ExecuteOptions:
TExecuteOptions; var EventStatus: TEventStatus; const Command: _Command;
const Recordset: _Recordset);
begin
LogToFile( CommandText );
end;
</code></pre>
http://stackoverflow.com/questions/656366/jfreechart-like-in-delphi/656473#6564730Answer by Cesar Romero for JFreeChart-like in DelphiCesar Romero2009-03-17T23:55:52Z2009-03-17T23:55:52Z<p>Maybe you can find some useful here
<a href="http://www.torry.net/pages.php?id=195" rel="nofollow">http://www.torry.net/pages.php?id=195</a></p>
http://stackoverflow.com/questions/619888/editor-component-like-richedit-that-supports-embedding-photos/620314#6203144Answer by Cesar Romero for editor component like RichEdit that supports embedding photos?Cesar Romero2009-03-06T20:36:13Z2009-03-06T20:36:13Z<p>I recomend TRichView <a href="http://www.trichview.com/" rel="nofollow">http://www.trichview.com/</a>.</p>
<p>I did work with WPTools for long time, but recently I found TRichView a lot more simple to use.</p>
http://stackoverflow.com/questions/367130/i-want-to-assign-a-record-to-tstringlist-objects/367147#3671471Answer by Cesar Romero for I want to assign a record to TStringList.ObjectsCesar Romero2008-12-14T23:21:41Z2009-03-05T00:43:12Z<p>you can using the record Pointer.</p>
<pre><code>List.AddObject(MyRecord.FullName, @MyRecord);
</code></pre>
http://stackoverflow.com/questions/554100/how-to-know-what-type-is-a-var/595100#5951000Answer by Cesar Romero for How to know what type is a var?Cesar Romero2009-02-27T14:56:04Z2009-02-27T14:56:04Z<p>I found this code in JclSysUtils unit.</p>
<pre><code>function IsClass(Address: Pointer): Boolean; assembler;
asm
CMP Address, Address.vmtSelfPtr
JNZ @False
MOV Result, True
JMP @Exit
@False:
MOV Result, False
@Exit:
end;
function IsObject(Address: Pointer): Boolean; assembler;
asm
// or IsClass(Pointer(Address^));
MOV EAX, [Address]
CMP EAX, EAX.vmtSelfPtr
JNZ @False
MOV Result, True
JMP @Exit
@False:
MOV Result, False
@Exit:
end;
</code></pre>
<p>And if I know if it is a class or object, I can know what is the class.
I think I can do something like that to strings too, not sure about others primitive types.</p>
http://stackoverflow.com/questions/1700366/loading-a-delphi-object-run-time-using-bplComment by Cesar Romero on Loading a Delphi Object Run Time using BPLCesar Romero2009-11-13T03:00:47Z2009-11-13T03:00:47Z@WishKnew: In a nutshell BPL is a DLL with extra features. this extra features help to share resources, like objets and dependances.http://stackoverflow.com/questions/1719146/what-is-this-1055-delphi-error-and-is-it-importantComment by Cesar Romero on What is this 1055 Delphi Error and is it Important?Cesar Romero2009-11-12T02:55:19Z2009-11-12T02:55:19ZW1055 is not a error is a warning, just like you ask to be in your answer to Barry.http://stackoverflow.com/questions/1715393/delphi-how-to-use-line-breaks-in-a-ini-file/1715883#1715883Comment by Cesar Romero on Delphi: How to use line breaks in a ini file?Cesar Romero2009-11-11T17:49:12Z2009-11-11T17:49:12ZThank you for the heads up PA. I don't have to bother about that, I don't use Delphi 7 since Delphi 2007 was released.http://stackoverflow.com/questions/1697147/is-mmx-better-than-delphis-own-modelling/1697258#1697258Comment by Cesar Romero on Is MMX better than Delphi's own modelling?Cesar Romero2009-11-10T16:30:11Z2009-11-10T16:30:11ZYes, this tool is a great idea, smoth integrated to IDE. I really enjoy use MMX.http://stackoverflow.com/questions/1482311/how-to-patch-a-method-in-classes-pas/1482376#1482376Comment by Cesar Romero on How to patch a method in Classes.pasCesar Romero2009-09-27T01:55:23Z2009-09-27T01:55:23ZAlso, he should change a copy of Classes.pas and add to project, avoiding updates problems.http://stackoverflow.com/questions/1360145/delphi-using-bigints-from-a-database/1360648#1360648Comment by Cesar Romero on Delphi: using BigInts from a database Cesar Romero2009-09-01T09:23:18Z2009-09-01T09:23:18Z@ The Fox: So any new version of Delphi will have problems, after see your negative reply, I check Delphi 2010 sources, and is how it is done. http://stackoverflow.com/questions/1352312/what-is-the-fastest-way-to-check-if-two-tbitmaps-are-the-same/1352413#1352413Comment by Cesar Romero on What is the fastest way to check if two Tbitmaps are the same?Cesar Romero2009-08-29T22:24:26Z2009-08-29T22:24:26ZThank you mghie.
BTW, are you the flamerobin author?http://stackoverflow.com/questions/1352312/what-is-the-fastest-way-to-check-if-two-tbitmaps-are-the-same/1352413#1352413Comment by Cesar Romero on What is the fastest way to check if two Tbitmaps are the same?Cesar Romero2009-08-29T21:53:56Z2009-08-29T21:53:56ZI dont think I can "allow" others to edit my posts, if I can, please let me know how.
If you post here your suggestions I can edit and mention in my post.http://stackoverflow.com/questions/1352312/what-is-the-fastest-way-to-check-if-two-tbitmaps-are-the-same/1352413#1352413Comment by Cesar Romero on What is the fastest way to check if two Tbitmaps are the same?Cesar Romero2009-08-29T21:46:27Z2009-08-29T21:46:27ZNice comments mghie. Ill change the code to test the height and width.http://stackoverflow.com/questions/1352312/what-is-the-fastest-way-to-check-if-two-tbitmaps-are-the-same/1352322#1352322Comment by Cesar Romero on What is the fastest way to check if two Tbitmaps are the same?Cesar Romero2009-08-29T21:11:02Z2009-08-29T21:11:02ZMaybe the silence is better when you dont know, silent.http://stackoverflow.com/questions/1268710/delphi-4-error-file-not-foundhtmlcons-inc/1268768#1268768Comment by Cesar Romero on Delphi 4 error:- file not found:'htmlcons.inc'Cesar Romero2009-08-13T23:48:00Z2009-08-13T23:48:00Z@vas: Check my answer, I added a more detailed description.http://stackoverflow.com/questions/861045/which-variables-are-initialized-when-in-delphi/861174#861174Comment by Cesar Romero on Which variables are initialized when in Delphi?Cesar Romero2009-05-14T15:08:58Z2009-05-14T15:08:58Z@Jim: Allen answered a question about that few days ago, he told the FillChar will not affect when it is used only for initialization, but after access a refcount member and then call fillchar, you will get a memory leak.http://stackoverflow.com/questions/798382/delphi-ereaderror-with-message-property-persistence-does-not-exist/798659#798659Comment by Cesar Romero on Delphi: EReadError with message 'Property Persistence does Not Exist'Cesar Romero2009-04-28T16:12:39Z2009-04-28T16:12:39Z@Jim: Thank you!
@Mason: That is why I suggest DFMCheck. The DFMCheck Tool can check all .dfm files in project.http://stackoverflow.com/questions/723869/collapsing-if-then-else-statements-in-code-editor-delphi-2007/723900#723900Comment by Cesar Romero on Collapsing If-Then-Else statements in code editor (Delphi 2007)Cesar Romero2009-04-07T01:50:41Z2009-04-07T01:50:41Z@François: I was typing the same answer, when yours was posted.http://stackoverflow.com/questions/723876/determine-if-another-application-is-busyComment by Cesar Romero on determine if another application is busyCesar Romero2009-04-07T01:49:45Z2009-04-07T01:49:45ZPlease, edit your question e formate the code, using the button "Code Sample"