User Charles Faiga - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T03:51:04Z http://stackoverflow.com/feeds/user/17560 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1192487/swap-bits-in-a-number-in-c/1727712#1727712 0 Answer by Charles Faiga for Swap bits in a number in C. Charles Faiga 2009-11-13T07:35:27Z 2009-11-13T07:35:27Z <p>(Assuming an 8051) </p> <p>SWAP</p> <p>The SWAP instruction exchanges the low-order and high-order nibbles within the accumulator. No flags are affected by this instruction.</p> <p>SWAP A </p> <p>Operation SWAP A3-0 swap A7-4</p> <p>Example SWAP A</p> http://stackoverflow.com/questions/624246/what-is-the-best-way-to-display-a-pdf-file-in-delphi-2009 0 What is the best way to display a PDF file in Delphi 2009 Charles Faiga 2009-03-08T20:41:29Z 2009-11-05T09:53:32Z <p>What component should I use to display a PDF file in a Delphi 2009 application?</p> <p>EDIT:</p> <p>I have been using <a href="http://www.synactis.com/pdf-viewer.htm" rel="nofollow">PDF Viewer</a> by Synactis - a very nice free PDF Viewer But it has no Delphi 2009 support.</p> <p>So I need to designing it out of the product </p> http://stackoverflow.com/questions/1658204/backing-up-views-with-mysql-dump 1 Backing Up Views with Mysql Dump Charles Faiga 2009-11-01T20:15:43Z 2009-11-01T20:34:13Z <p>Hi,</p> <p>I want to back up only the Views with mysqldump.</p> <p>Is this possible? </p> <p>If so, how?</p> http://stackoverflow.com/questions/1654288/how-does-one-do-a-multi-table-update-in-mysql-5-1-using-order-by-and-limit-st 0 How does one do a multi table UPDATE in MYSQL 5.1 using ‘ORDER BY’ and ‘LIMIT’ statments Charles Faiga 2009-10-31T12:49:15Z 2009-10-31T16:51:14Z <p>I have two tables <strong>Events</strong> and <strong>FixedPlace</strong></p> <pre><code>CREATE TABLE `events` ( `idEvents` int(10) unsigned NOT NULL AUTO_INCREMENT, `NumberOfPlaces` int(10) unsigned DEFAULT '0', `FpOddsPrice` double DEFAULT '0', PRIMARY KEY (`idEvents`), ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; </code></pre> <p>////////////////////////////////////////////////////////////////</p> <pre><code>CREATE TABLE ` fixedplace ` ( `idFixedPlacePrice` int(10) unsigned NOT NULL AUTO_INCREMENT, `NumberOfRunners` int(10) unsigned DEFAULT NULL, `Places` int(10) unsigned DEFAULT NULL, `FpOddsPrice` double DEFAULT NULL, PRIMARY KEY (`idFixedPlacePrice`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=latin1; Insert Into fixedplace (NumberOfRunners, Places, FpOddsPrice) Values (0, 0, 0), (10, 3, 0.16), (13, 4, 0.21); </code></pre> <p>//////////////////////////////////////////////////////////////</p> <p>To access the fixed place data I use the following statement </p> <pre><code>SELECT Places, FpOddsPrice FROM FixedPlace as WHERE NumberOfRunners &lt;= :FNumberOfRunners ORDER BY NumberOfRunners desc LIMIT 1 </code></pre> <p>i.e. If :FNumberOfRunners = 11 then Place will be 3 and FpOddsPrice = 0.16</p> <p>//////////////////////////////////////////////////////////////</p> <p><strong>I am having a problem writing an Update statement That will update ‘Events’ table based on the values in FixedPlace table</strong></p> <p>This does not work</p> <pre><code>UPDATE Events as E, FixedPlace as F Set E.Places = F.Places, E.FpOddsPrice = F.FpOddsPrice WHERE E.idEvents = :FidEvents And F.NumberOfRunners &lt;= :FNumberOfRunners ORDER BY F.NumberOfRunners desc LIMIT 1 </code></pre> <p>It gives the following error <strong>‘Incorrect usage of UPDATE an ORDER BY’</strong></p> <p><strong>What must I do to get this to work ?</strong></p> <p><strong>EDIT</strong></p> <p>This works - but is there a better way of doing it</p> <pre><code>UPDATE Events as E Set E.Places = (Select Places FROM FixedPlace WHERE NumberOfRunners &lt;= :FNumberOfRunners ORDER BY NumberOfRunners desc LIMIT 1), E.FpOddsPrice = (Select FpOddsPrice FROM FixedPlace WHERE NumberOfRunners &lt;= :FNumberOfRunners ORDER BY NumberOfRunners desc LIMIT 1) WHERE E.idEvents = :FidEvents </code></pre> http://stackoverflow.com/questions/1588408/copying-lots-of-files-in-delphi 2 Copying lots of files in Delphi Charles Faiga 2009-10-19T12:28:07Z 2009-10-27T16:16:50Z <p>Hi</p> <p>In my application I need to copy over 1000 small files </p> <p>Here is the code I am using but it is VERY SLOW Is there a better way of doing this ?</p> <pre><code>procedure Tdatafeeds.RestotreTodaysFiles; var SearchRec: TSearchRec; FromFn, ToFn: string; Begin if DirectoryExists(BackupPath1) then begin try if FindFirst(BackupPath1 + '\*.*', (faAnyFile AND NOT(faDirectory)), SearchRec) = 0 then begin repeat FromFn := BackupPath1 + '\' + SearchRec.name; ToFn := DatafeedsPath1 + '\' + SearchRec.name; CopyFile(Pchar(FromFn), Pchar(ToFn), false); until FindNext(SearchRec) &lt;&gt; 0; end; finally FindClose(SearchRec); end; end; End; </code></pre> http://stackoverflow.com/questions/387326/unit-testing-videos-or-pod-casts 17 Unit testing - videos or pod casts Charles Faiga 2008-12-22T20:51:41Z 2009-10-27T09:21:30Z <p>Hi </p> <p>I am looking for podcast or videos on how to do unit testing.</p> <p>Ideally they should cover the basics &amp; the more advanced topics </p> http://stackoverflow.com/questions/1619887/what-is-the-best-database-for-delphi-desktop-applications-that-supports-stored-pr/1620331#1620331 0 Answer by Charles Faiga for What Is The Best Database For Delphi Desktop Applications That Supports Stored Procedures? Charles Faiga 2009-10-25T08:12:00Z 2009-10-25T08:12:00Z <p>How about <a href="http://www.mysql.com/products/enterprise/server.html" rel="nofollow">MySql</a>? </p> <p>It is been actively developed and there is a large user base </p> http://stackoverflow.com/questions/670641/delphi-threading-frameworks 7 Delphi - Threading frameworks Charles Faiga 2009-03-22T07:07:55Z 2009-10-24T02:24:40Z <p>I am looking for a Threading framework to use in my Delphi application.</p> <p>Currently I am evaluating ‘<a href="http://otl.17slon.com/index.htm" rel="nofollow">OmniThreadLibrary</a>’ - so far it looks good and does everything I need.</p> <p>Is there any other ‘Threading framework’ for Delphi ?</p> <p>(I am using D2006 &amp; D2009)</p> http://stackoverflow.com/questions/1606033/is-findfirst-findnext-findclose-thread-safe-in-delphi 6 Is FindFirst,FindNext & FindClose Thread safe in delphi Charles Faiga 2009-10-22T09:25:14Z 2009-10-23T00:06:19Z <p>Is FindFirst,FindNext &amp; FindClose Thread safe in delphi ? If not what should be used in there place ?</p> http://stackoverflow.com/questions/1591388/getting-windows-shfileoperation-api-to-recursively-delete-files-in-delphi 1 Getting windows ‘ShFileOperation’ API to recursively delete files in Delphi Charles Faiga 2009-10-19T22:01:04Z 2009-10-20T14:05:58Z <p>Hi </p> <p>I am using the following code to delete a large number of files </p> <pre><code>function FastDelete(const fromDir: string): Boolean; var fos: TSHFileOpStruct; begin ZeroMemory(@fos, SizeOf(fos)); with fos do begin wFunc := FO_DELETE; fFlags := FOF_FILESONLY or FOF_NOCONFIRMATION or FOF_NO_CONNECTED_ELEMENTS or FOF_NOERRORUI or FOF_NO_UI; pFrom := PChar(fromDir+'\*.*' + #0); end; Result := (0 = ShFileOperation(fos)); end; </code></pre> <p>How do I get it to recursively delete all the files in the path?</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb759795%28VS.85%29.aspx" rel="nofollow">MSDN documentation</a> </p> <p><strong>EDIT</strong> </p> <p>The problem is the <strong>FOF_FILESONLY</strong> flag After removing it files are recursively deleted</p> http://stackoverflow.com/questions/1578518/set-autoincrement-starting-value-in-a-innodb-table-to-zero 1 Set AUTO_INCREMENT starting value in a InnoDB table to zero? Charles Faiga 2009-10-16T14:46:58Z 2009-10-16T15:13:12Z <p>Is there any to get the an AUTO_INCREMENT field of a InnoDB to start counting from 0 not 1</p> <pre><code>CREATE TABLE `df_mainevent` ( `idDf_MainEvent` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`idDf_MainEvent`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; </code></pre> http://stackoverflow.com/questions/1577316/mysql-stored-procedure-not-using-the-query-cache 1 Mysql - Stored procedure not using the query cache Charles Faiga 2009-10-16T10:30:14Z 2009-10-16T11:28:56Z <p>I have just converted a SQL select statement into a stored procedure</p> <p>The SQL Statement use select statement takes 0.4784s to run the first time and 0.0003s after that</p> <p>The Stored procedure takes 0.4784s to run every time.</p> <p>I assume the query cache is not been used</p> <p>How can I rectify this?</p> <p>A simplified version of the code</p> <pre><code>SELECT * FROM Venues WHERE VenueName = :TheVenue </code></pre> <p>=======</p> <pre><code>CREATE PROCEDURE GetVenues ( TheVenue VarChar(22) ) BEGIN SELECT * FROM Venues WHERE VenueName = TheVenue END; </code></pre> http://stackoverflow.com/questions/387326/unit-testing-videos-or-pod-casts/1548821#1548821 0 Answer by Charles Faiga for Unit testing - videos or pod casts Charles Faiga 2009-10-10T19:13:16Z 2009-10-10T19:13:16Z <p>Here is a link to video by Hadi Hariri on how <a href="http://cc.embarcadero.com/download.aspx?id=27258" rel="nofollow">Mocks make uniting testing easier</a></p> <blockquote> <p>Make Tests Easier with Mocks Mocking allows functionality to be stubbed out during tests allowing you to concentrate on the system under test and less on other subsystems. This session covers the idea behind mocks and shows some of the existing mocking frameworks available. See how to effectively use mocks and what the differences are between state and behavior tests.</p> </blockquote> <p>Here is a link to video by Robert Love on how to <a href="http://cc.embarcadero.com/download.aspx?id=27294" rel="nofollow">Building Unit Tests with DUnit</a> for delphi</p> <blockquote> <p>Building Unit Tests with DUnit Get up to speed with unit testing in DUnit. No prior knowledge of Unit testing or DUnit is required.</p> </blockquote> http://stackoverflow.com/questions/573285/rest-and-restful-videos-or-pod-casts 4 REST and RESTful - videos or pod casts Charles Faiga 2009-02-21T16:07:24Z 2009-10-10T19:02:26Z <p>Hi </p> <p>I am looking for podcast or videos on REST and RESTful.</p> <p>Ideally they should cover the basics &amp; the more advanced topics </p> http://stackoverflow.com/questions/573285/rest-and-restful-videos-or-pod-casts/1548794#1548794 0 Answer by Charles Faiga for REST and RESTful - videos or pod casts Charles Faiga 2009-10-10T19:02:26Z 2009-10-10T19:02:26Z <p>Hi there is a nice video on how to use REST in <a href="https://members.embarcadero.com/login.aspx?returnURL=http%3A//cc.embarcadero.com/download.aspx?id=27274" rel="nofollow">Delphi aplplications</a> by Jonathan Benedicto </p> <blockquote> <p>DataSnap REST Support for Web Applications This presentation covers how to use the new DataSnap REST support for Web applications.</p> </blockquote> <p>here is a link to a video by Marco Cantù that has some nice <a href="http://cc.embarcadero.com/download.aspx?id=27318" rel="nofollow">delphi examples</a> of rest clients</p> <blockquote> <p>10 Rest Clients in Delphi From Google to Amazon, from Microsoft to Yahoo, from Facebook to Twitter, most large Web sites offer a REST API and Delphi can easily query all of them. This session provides an overview of 10 REST client APIs showing how to integrate database data and Web applications. Creating Windows 7 applications in Delphi, since Delphi 2007, there has been improved support for new features of the Windows operating system, from Windows Vista to Windows 7. In this session, we explore some of the native features of the VCL and some extra APIs you can use.</p> </blockquote> <p>Both these video come from the <a href="http://conferences.embarcadero.com/coderage/sessions" rel="nofollow">code rage 4</a></p> http://stackoverflow.com/questions/1535143/where-is-a-tutorial-for-using-xml-with-delphi/1536095#1536095 2 Answer by Charles Faiga for Where is a tutorial for using XML with Delphi? Charles Faiga 2009-10-08T07:13:14Z 2009-10-08T07:13:14Z <p>Have a look at Jeroen Pluimers Sessions at <a href="http://conferences.embarcadero.com/coderage/sessions" rel="nofollow">CodeRage 4</a> </p> <p>called <strong><a href="http://cc.embarcadero.com/download.aspx?id=27272" rel="nofollow">Practical XML in Delphi</a></strong></p> <blockquote> <p>"Starting with the XML basics, learn about well formed and valid documents, encoding, and recoding and XSD validation. See examples in Delphi for Win32 and Delphi Prism showing you which tool to choose when. Finally, learn where things can go wrong and how to prevent that: improper but well formed XML, copying data between XML documents, convert XML to tables and objects, etc." </p> </blockquote> http://stackoverflow.com/questions/100772/c-training-videos 4 C# Training videos Charles Faiga 2008-09-19T09:39:20Z 2009-10-07T16:25:57Z <p>Where can I find training videos for C# ?</p> http://stackoverflow.com/questions/1487171/how-does-one-access-the-namethreadfordebugging-in-delphi-2010 0 How does one access the 'NameThreadForDebugging' in Delphi 2010 Charles Faiga 2009-09-28T13:54:05Z 2009-09-29T18:58:42Z <p>Hi </p> <p>How do I access the 'NameThreadForDebugging' in a delphi Thread in Delphi 2010 ?</p> <pre><code>type TMyThread = class(TThread) protected procedure Execute; override; procedure UpdateCaption; end; implementation procedure TMyThread.UpdateCaption; begin Form1.Caption := 'Name Thread For Debugging'; // how I get 'TestThread1' displayed in the caption end; procedure TMyThread.Execute; begin NameThreadForDebugging('TestThread1'); Synchronize(UpdateCaption); Sleep(5000); end; </code></pre> http://stackoverflow.com/questions/1489478/scrolling-issues-with-trichedit-in-delphi 1 Scrolling issues with TRichEdit in Delphi Charles Faiga 2009-09-28T21:29:03Z 2009-09-28T22:32:44Z <p>Hi </p> <p>I am adding lines to a TRichEdit how do I keep focus on the line that has just been added?</p> <pre><code>For Idx := 1 to 1000 do RichEdit.Lines.add(IntToStr(Idx)); </code></pre> <p>EDIT</p> <p>I just what the bottom line of the richedit to show what was just added and all the other lines to scroll up</p> http://stackoverflow.com/questions/1482898/online-code-beautifier-and-formatter-for-delphi-or-pascal/1483016#1483016 1 Answer by Charles Faiga for Online Code Beautifier And Formatter for Delphi or Pascal Charles Faiga 2009-09-27T07:26:52Z 2009-09-27T07:26:52Z <p>have look at this <a href="http://stackoverflow.com/questions/402737/delphi-code-formatter">question</a> </p> http://stackoverflow.com/questions/1468407/getting-a-longer-stacktrace-from-fastmm/1472971#1472971 1 Answer by Charles Faiga for Getting a longer stacktrace from FastMM? Charles Faiga 2009-09-24T17:01:37Z 2009-09-24T17:01:37Z <p>Have a look at <a href="http://jedqc.blogspot.com/2007/07/new-fastmm4-options-interface.html" rel="nofollow">FastMM4 Options Interface</a> from Jed Software. It is a freeware application to configre FastMM</p> http://stackoverflow.com/questions/1407558/does-delphi-vcl-provide-a-regular-expression-library 4 Does Delphi VCL provide a regular expression library ? Charles Faiga 2009-09-10T20:32:18Z 2009-09-22T12:14:30Z <p>Is there a library in the VCL for regular expressions?</p> <p>If not can you recommend a good third party library.</p> <p>I am using Delphi 2009</p> http://stackoverflow.com/questions/1456183/what-is-the-most-efficient-way-to-do-check-if-a-value-exist-then-update-or-insert 0 What is the most efficient way to do check if a value exist then Update or Insert in Sql Charles Faiga 2009-09-21T18:52:09Z 2009-09-21T19:00:30Z <p>Hi </p> <p>I need to update date a value in table if it does not exist then it must be inserted</p> <p>What is the best way to does this in MySql</p> <p>Currently I am using </p> <pre><code> SELECT Id INTO LId FROM ATABLE WHERE ID = FID; IF LId IS NULL THEN INSERT INTO ATABLE(abc) Values (2) ELSE UPDATE ATABLE Set Abc = 2 Where Id = LId END IF; </code></pre> <p>But this hits the Database 3 times </p> <p>Is there a better way of doing this ?</p> http://stackoverflow.com/questions/1418333/tthread-resume-is-deprecated-in-delphi-2010-what-should-be-used-in-place 4 TThread.resume is deprecated in Delphi-2010 what should be used in place? Charles Faiga 2009-09-13T17:39:02Z 2009-09-19T09:18:29Z <p>In my multithread application </p> <p>I use <strong>TThread.suspend</strong> and <strong>TThread.resume</strong> </p> <p>Since moving my application to Delphi 2010 I get the following warring message</p> <p><strong>[DCC Warning] xxx.pas(277): W1000 Symbol ‘Resume’ is deprecated</strong></p> <p>If Resume is deprecated what should be used in place?</p> <p>EDIT 1:</p> <p>I use the <strong>Resume</strong> command to start the thread - as it is Created with 'CreateSuspended' set to True and <strong>Suspend</strong> before I terminate the thread.</p> <p>EDIT 2:</p> <p><a href="http://docwiki.embarcadero.com/VCL/en/Classes.TThread.Suspend" rel="nofollow">Here is a link the delphi 2010 manual</a> </p> http://stackoverflow.com/questions/1438870/in-delphi-is-there-a-function-to-convert-xml-date-and-time-to-tdatetime 2 In Delphi is there a function to convert XML date and time to TDateTime Charles Faiga 2009-09-17T13:24:54Z 2009-09-17T15:11:21Z <p>XML date and time are in the format </p> <p>'-'? yyyy '-' mm '-' dd 'T' hh ':' mm ':' ss ('.' s+)? (zzzzzz)?</p> <p><strong>were</strong> </p> <p>•'-'? yyyy is a four-or-more digit optionally negative-signed numeral that represents the year; if more than four digits, leading zeros are prohibited, and '0000' is prohibited</p> <p>•the remaining '-'s are separators between parts of the date portion;</p> <p>•the first mm is a two-digit numeral that represents the month;</p> <p>•dd is a two-digit numeral that represents the day;</p> <p>•'T' is a separator indicating that time-of-day follows;</p> <p>•hh is a two-digit numeral that represents the hour; '24' is permitted if the minutes and seconds represented are zero, and the dateTime value so represented is the first instant of the following day (the hour property of a dateTime object in the ·value space· cannot have a value greater than 23);</p> <p>•':' is a separator between parts of the time-of-day portion;</p> <p>•the second mm is a two-digit numeral that represents the minute;</p> <p>•ss is a two-integer-digit numeral that represents the whole seconds;</p> <p>•'.' s+ (if present) represents the fractional seconds;</p> <p>•zzzzzz (if present) represents the timezone (as described below).</p> <p>here are more examples</p> <p>Simple Example <strong>2009-08-31T19:30:00</strong> </p> <p>More complex examples</p> <p><strong>2002-10-10T12:00:00-05:00</strong> (noon on 10 October 2002, Central Daylight Savings Time as well as Eastern Standard Time in the U.S.) is <strong>2002-10-10T17:00:00Z</strong>, five hours later than <strong>2002-10-10T12:00:00Z</strong>. </p> <p>see <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/datatypes.html" rel="nofollow">www.w3.org/TR/2004/REC-xmlschema-2-20041028/datatypes.html</a> for more info</p> http://stackoverflow.com/questions/490515/how-does-one-rename-a-schema-in-mysql 3 how does one rename a schema in MySQL Charles Faiga 2009-01-29T04:56:07Z 2009-09-16T10:00:51Z <p>Hi I am using mysql 5.0.x </p> <p>How do I rename a schema? </p> http://stackoverflow.com/questions/1420803/unicode-problems-with-delphi-2009-2010-and-windows-api-calls 2 Unicode problems with Delphi 2009 / 2010 and windows API calls Charles Faiga 2009-09-14T10:41:59Z 2009-09-14T13:04:46Z <p>Hi I have been using this function in Delphi 2006, but now with D2010 it throws an error. I think it is related to the switch to Unicode. </p> <pre><code> Function TWinUtils.GetTempFile(Const Extension: STRING): STRING; Var Buffer: ARRAY [0 .. MAX_PATH] OF char; Begin Repeat GetTempPath(SizeOf(Buffer) - 1, Buffer); GetTempFileName(Buffer, '~~', 0, Buffer); Result := ChangeFileExt(Buffer, Extension); Until not FileExists(Result); End; </code></pre> <p>What should I do to make it work?</p> <p>EDIT</p> <p>I get an 'access violation' when the ChangeFileExt is called </p> http://stackoverflow.com/questions/1406854/is-delphi-2010-ready-for-production-use 5 Is Delphi 2010 ready for production use? Charles Faiga 2009-09-10T18:12:24Z 2009-09-10T21:12:41Z <p>I am currently using Delphi 2009 a few days ago I downloaded a copy of Delphi 2010.</p> <p>How stable is Delphi 2010?</p> <p>Should I wait until the first service pack comes out before moving to this version?</p> http://stackoverflow.com/questions/621884/database-development-mistakes-made-by-appdevelopers 119 Database Development Mistakes Made by AppDevelopers Charles Faiga 2009-03-07T14:12:06Z 2009-09-10T06:18:19Z <p>What are common database development mistakes made by application developers? </p> http://stackoverflow.com/questions/91826/fitnesse-for-delphi-2006-delphi-2007-delphi-2009 4 Fitnesse for Delphi 2006 / Delphi 2007 /Delphi 2009 Charles Faiga 2008-09-18T11:46:16Z 2009-09-01T16:58:43Z <p>Is there a version of Fitnesse that works on Delphi 2006/2007/2009 ?</p> <p>If so where can I find It?</p> <p>Are there any other programs like Fitnesse that work on Delphi 2006 ?</p> http://stackoverflow.com/questions/1654288/how-does-one-do-a-multi-table-update-in-mysql-5-1-using-order-by-and-limit-st/1654316#1654316 Comment by Charles Faiga on How does one do a multi table UPDATE in MYSQL 5.1 using ‘ORDER BY’ and ‘LIMIT’ statments Charles Faiga 2009-10-31T13:02:33Z 2009-10-31T13:02:33Z Two queries will work - but for Performance reasons – I would like to use one http://stackoverflow.com/questions/1654288/how-does-one-do-a-multi-table-update-in-mysql-5-1-using-order-by-and-limit-st Comment by Charles Faiga on How does one do a multi table UPDATE in MYSQL 5.1 using ‘ORDER BY’ and ‘LIMIT’ statments Charles Faiga 2009-10-31T13:00:12Z 2009-10-31T13:00:12Z the 'FixedPlace' is a lookup table - and its results are saved in the Events table http://stackoverflow.com/questions/1606033/is-findfirst-findnext-findclose-thread-safe-in-delphi/1606074#1606074 Comment by Charles Faiga on Is FindFirst,FindNext & FindClose Thread safe in delphi Charles Faiga 2009-10-22T09:40:41Z 2009-10-22T09:40:41Z TSearchRec is defined in the 'Execute' part of the thread http://stackoverflow.com/questions/1591388/getting-windows-shfileoperation-api-to-recursively-delete-files-in-delphi/1591437#1591437 Comment by Charles Faiga on Getting windows ‘ShFileOperation’ API to recursively delete files in Delphi Charles Faiga 2009-10-20T11:11:02Z 2009-10-20T11:11:02Z Adding a all the flags gives an answer of $2A96 and FOF_NORECURSION = $1000 Thus FOF_NORECURSION has not been enabled http://stackoverflow.com/questions/1591388/getting-windows-shfileoperation-api-to-recursively-delete-files-in-delphi/1591437#1591437 Comment by Charles Faiga on Getting windows ‘ShFileOperation’ API to recursively delete files in Delphi Charles Faiga 2009-10-19T22:21:27Z 2009-10-19T22:21:27Z Hi Mason - I am not using FOF_NORECURSION how should I change my code to make it recursively delete the files in the subdirectories ? http://stackoverflow.com/questions/1588408/copying-lots-of-files-in-delphi/1588477#1588477 Comment by Charles Faiga on Copying lots of files in Delphi Charles Faiga 2009-10-19T16:59:56Z 2009-10-19T16:59:56Z Thanks - SHFileOperation() works well the copy now takes seconds - before it took minutes :) http://stackoverflow.com/questions/263419/getting-started-with-xml-and-delphi Comment by Charles Faiga on Getting started with XML and Delphi Charles Faiga 2009-10-10T08:34:04Z 2009-10-10T08:34:04Z see stackoverflow <a href="http://stackoverflow.com/questions/1535143/where-is-a-tutorial-for-using-xml-with-delphi" rel="nofollow" title="where is a tutorial for using xml with delphi">stackoverflow.com/questions/1535143/&hellip;</a> http://stackoverflow.com/questions/258626/how-do-you-do-a-global-search-and-replace-in-all-the-files-in-delphi-2006-project Comment by Charles Faiga on How do you do a global search and replace in all the files in Delphi 2006 project Charles Faiga 2009-10-08T14:09:28Z 2009-10-08T14:09:28Z DELPHI 2010 has the same problem http://stackoverflow.com/questions/1489478/scrolling-issues-with-trichedit-in-delphi/1489553#1489553 Comment by Charles Faiga on Scrolling issues with TRichEdit in Delphi Charles Faiga 2009-09-28T21:57:25Z 2009-09-28T21:57:25Z Thanks - this works nicely :) http://stackoverflow.com/questions/1338289/delphi-2010-now-released-whats-your-favorite-feature/1351010#1351010 Comment by Charles Faiga on Delphi 2010 now released - What's your favorite feature? Charles Faiga 2009-09-17T15:53:48Z 2009-09-17T15:53:48Z the code formatter has a major problem with ‘Try’ &amp; ‘Finally’ statements http://stackoverflow.com/questions/1420803/unicode-problems-with-delphi-2009-2010-and-windows-api-calls/1420900#1420900 Comment by Charles Faiga on Unicode problems with Delphi 2009 / 2010 and windows API calls Charles Faiga 2009-09-14T12:08:03Z 2009-09-14T12:08:03Z the second option works thanks :) http://stackoverflow.com/questions/1150928/mysql-query-browers-results/1150935#1150935 Comment by Charles Faiga on MySql Query browers results Charles Faiga 2009-07-19T21:19:48Z 2009-07-19T21:19:48Z then what is the 0.0110s http://stackoverflow.com/questions/827319/the-master-detail-behavior Comment by Charles Faiga on The Master/Detail Behavior Charles Faiga 2009-05-06T15:04:53Z 2009-05-06T15:04:53Z please show us the code http://stackoverflow.com/questions/95774/interview-questions-what-should-be-asked/96386#96386 Comment by Charles Faiga on Interview Questions – what should be asked? Charles Faiga 2009-04-27T16:14:45Z 2009-04-27T16:14:45Z An extension to this question is how long you have had computer at home and what do you do with it. If they do not have a computer at home or have had one for a very short time - I am not interested in them. http://stackoverflow.com/questions/791181/reference-object-instance-created-using-with-in-delphi/791838#791838 Comment by Charles Faiga on Reference object instance created using "with" in Delphi Charles Faiga 2009-04-27T07:48:44Z 2009-04-27T07:48:44Z It is better to avoid using &quot;with&quot; at all times not just when you are creating objects - else your code will be hard to debug see <a href="http://stackoverflow.com/questions/312321/debugging-problems-with-with-statement-in-delphi-2006" rel="nofollow" title="debugging problems with with statement in delphi 2006">stackoverflow.com/questions/312321/&hellip;</a>