User Fran&#231;ois - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:15:40Z http://stackoverflow.com/feeds/user/9842 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1932616/fastsharemem-still-necessary-in-delphi-2010/1933987#1933987 0 Answer by François for FastShareMem still necessary in Delphi-2010? François 2009-12-19T20:04:09Z 2009-12-19T20:04:09Z <p>See <a href="http://stackoverflow.com/questions/1897231/sharemem-string-exchanging-with-delphi-dll">this SO question</a> and <a href="http://stackoverflow.com/questions/1897231/sharemem-string-exchanging-with-delphi-dll/1897654#1897654">my answer there...</a></p> http://stackoverflow.com/questions/1929721/how-to-change-desktop-wallpaper/1931420#1931420 3 Answer by François for how to change desktop wallpaper? François 2009-12-19T00:14:11Z 2009-12-19T00:47:02Z <p>I just tried it with D2007 on XP (and also D2009 on Vista), and this code works.<br> But to catch If and why it is not working, <strong>you should test the result code and get the error from Windows</strong>:</p> <pre><code> if not SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, pChar(PicPath), SPIF_SENDCHANGE)then RaiseLastOSError; </code></pre> <p>In most cases, it will be because the bmp file is not found:</p> <pre><code>System Error. Code: 2. The system cannot find the file specified. </code></pre> http://stackoverflow.com/questions/1926261/how-to-protect-the-source-of-a-delphi-app/1926402#1926402 10 Answer by François for How to protect the source of a delphi app? François 2009-12-18T05:13:09Z 2009-12-18T05:13:09Z <p>It depends what your goal is.<br> If it's really just protecting the source, it's already done! Provided you don't include debug and symbols information and add some heavy inlining, good luck to reconstruct some usable Pascal code from disassembling the exe.<br> If it's preventing people from seeing how it functions and hack it, then you have to include some anti-disassemble protection. It's harder but doable. Often done as a collateral to anti-piracy protection.</p> http://stackoverflow.com/questions/1920140/delphi-records-in-classes/1920214#1920214 1 Answer by François for Delphi: Records in Classes François 2009-12-17T08:21:07Z 2009-12-17T08:21:07Z <p>The reason why it can't be directly assigned is <a href="http://stackoverflow.com/questions/620506/left-side-cannot-be-assigned-to-for-record-type-properties-in-delphi">here</a>.<br> As for the WITH, it still works in D2009 and I would have expected it to work also in D2010 (which I can't test right now).<br> The safer approach is exposing the record property directly as Allen suggesed in the above SO <a href="http://stackoverflow.com/questions/620506/left-side-cannot-be-assigned-to-for-record-type-properties-in-delphi/620631#620631">post</a>: </p> <pre><code>property RecField: Integer read FRec.A write FRec.A; </code></pre> http://stackoverflow.com/questions/1903664/what-bookkeeping-data-does-a-delphi-dynamic-array-contain/1903939#1903939 0 Answer by François for What bookkeeping data does a Delphi dynamic array contain? François 2009-12-14T22:23:24Z 2009-12-15T00:34:13Z <p>Updated... I actually went to check the code (which I should've done before) and I came to the same conclusion as Ulrich, it's not storing any type information, just the 2 Longint overhead then NbElements*ElementSize.<br> And, Task manager is not accurate for this kind of measure.</p> <p>With the oddity that if you measure the memory used by the dynarray, it increases non linearly with the size of the element: for a Record with 2 or 3 Integers it's the same size (20), with 4 or 5 it's 28... following the granularity of the blocksizes.</p> <p>Memory measured with: </p> <pre><code>// Return the total Memory used as reported by the Memory Manager function MemoryUsed: Cardinal; var MemMgrState: TMemoryManagerState; SmallBlockState: TSmallBlockTypeState; begin GetMemoryManagerState(MemMgrState); Result := MemMgrState.TotalAllocatedMediumBlockSize + MemMgrState.TotalAllocatedLargeBlockSize; for SmallBlockState in MemMgrState.SmallBlockTypeStates do begin Result := Result + SmallBlockState.UseableBlockSize * SmallBlockState.AllocatedBlockCount; end; end; </code></pre> http://stackoverflow.com/questions/1903723/problem-adding-lots-of-strings-to-a-tstringlist/1903851#1903851 1 Answer by François for Problem adding lots of strings to a TStringList François 2009-12-14T22:09:00Z 2009-12-14T22:09:00Z <p>Mason is probably right for the cause of the AV; this is quite a large array to grow.<br> On a side note, when doing such a long processing on a StringList, it's recommended to surround it by BeginUpdate/EndUpdate to avoid firing any update event.<br> Even if you don't have any now, they might be added later and you'll get problems.</p> http://stackoverflow.com/questions/1891196/convert-hi-ansi-chars-to-ascii-equivalent-ee-in-delphi2007 2 Convert Hi-Ansi chars to Ascii equivalent (é -> e) in Delphi(2007) François 2009-12-11T22:10:36Z 2009-12-14T18:15:25Z <p>Is there a routine available in D2007 to convert the characters in the high range of the ANSI table (>127) to their equivalent ones in pure ASCII (&lt;=127) according to a locale (codepage)?<br> I know some chars cannot translate well but most can, esp. in the 192-255 range:<br> À -> A<br> à -> a<br> Ë -> E<br> ë -> e<br> Ç -> C<br> ç -> c<br> – -> - (that can be trickier)<br> — -> -</p> http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus/1899329#1899329 2 Answer by François for Closing a secondary delphi form causes the main form to lose focus François 2009-12-14T06:54:18Z 2009-12-14T17:36:19Z <p>I don't see how what you describe creates a "child" Form. </p> <p>But anyway, I just tried with exactly what you described in your steps and could not reproduce it in D2009 (updates 3 &amp; 4), whether I create the 2nd "child" from the main Form or from the 1st "child", and whatever the order in which I close them.</p> <p>So, there must be something else you did not tell...</p> http://stackoverflow.com/questions/1898716/are-parameters-of-twebmodule-event-handlers-global/1899294#1899294 3 Answer by François for Are parameters of TWebModule event handlers global? François 2009-12-14T06:43:05Z 2009-12-14T06:43:05Z <p>No, you can't be assured of that in all cases and you're preparing a maintenance nightmare. </p> <p>Why don't you create a DoMyAction that takes as parameters whatever you need inside from Request, Response and Handled? </p> <p>With your example it would become:</p> <pre><code>procedure TMainWeb.WebModuleBeforeDispatch(Sender: TObject; Request: TWebRequest; Response: TWebResponse; var Handled: Boolean); begin if Pos('myaction.html',request.url)&gt;0 then begin DoMyAction(Request, Response); Handled := True; end; end; procedure TMainWeb.DoMyAction(ARequest: TWebRequest; AResponse: TWebResponse); begin AResponse.Content := '&lt;html&gt;&lt;body&gt;myvariable: '+ARequest.queryfields.values['myvariable']+&lt;/body&gt;&lt;/html&gt;'; end; </code></pre> http://stackoverflow.com/questions/1898560/why-does-building-with-runtime-packages-make-the-exe-file-smaller/1899242#1899242 1 Answer by François for Why does building with runtime packages make the EXE file smaller? François 2009-12-14T06:27:38Z 2009-12-14T06:27:38Z <p>One of the main reason for using run-time packages is when you need module granularity to deploy/update over a medium that does not accept well large files, like over a wire with a low bandwidth. </p> <p>Because the run-time packages remain the same until you change your Delphi version - like forever for those still on D7 ;-) - it allows to deploy new versions or new applications without the payload of the RTL/VCL. </p> <p>But like with DLLs, you have to be careful with the versioning.</p> http://stackoverflow.com/questions/1897231/sharemem-string-exchanging-with-delphi-dll/1897654#1897654 6 Answer by François for ShareMem/ string-exchanging with Delphi DLL François 2009-12-13T20:33:12Z 2009-12-13T20:33:12Z <p>To use the FastMM included with D2007, use SimpleShareMem as the 1st unit in both your application and the DLL projects.</p> <p>Or download the full FastMM4 from SourceForge, set the Flags in FastMM4Options.Inc (ShareMM, ShareMMIfLibrary, AttemptToUseSharedMM) and put FastMM4 as the 1st unit in both the application and the DLL projects.</p> http://stackoverflow.com/questions/1881366/d2007-installed-ide-extensions-now-one-important-component-doesnt-work/1884027#1884027 0 Answer by François for D2007: Installed IDE Extensions - now one important component doesn't work François 2009-12-10T21:06:31Z 2009-12-10T21:06:31Z <p>Are you sure you have uninstalled both DDevExtensions and IDEFixPack, for the right version?<br> If so your Delphi should be as it was before.<br> They don't do any permanent modification IIRC.</p> <p>Are you sure nothing else changed? Did you recompile the mx package by any chance?<br> I've found Andreas' tools of very good quality and I would probably look elsewhere 1st...</p> http://stackoverflow.com/questions/1879427/are-there-any-way-to-use-delphi-inputbox-with-multiple-values/1879767#1879767 3 Answer by François for Are there any way to use delphi inputbox with multiple values? François 2009-12-10T09:25:20Z 2009-12-10T20:38:25Z <p>Yes, design a Form! </p> <p>Dialogs.InputBox is designed to get 1 string from the user, quick and simple.<br> If you want more, you have to design an Entry Form.<br> If you want a basic dialog, you can look at the code in Dialogs.InputQuery, and use it as a starting point to code your own procedure. </p> <p>If you want the real deal, you have to dig in and code a real Form.</p> http://stackoverflow.com/questions/1861159/consuming-a-soap-rails-webservice-doesnt-work-in-delphi-2009-but-was-ok-in-delph/1864009#1864009 0 Answer by François for Consuming a SOAP Rails Webservice doesn't work in Delphi 2009 but was Ok in Delphi 2006 François 2009-12-08T01:27:44Z 2009-12-08T01:27:44Z <p>Hard to tell without more information...<br> Did you just recompile the code or <strong>have you re-imported the WSDL in D2009?</strong><br> There is a good chance that you get 1 using WideString when the other plain string.<br> And you may have a difference between implicit vs explicit string conversion that you overlooked.</p> http://stackoverflow.com/questions/1862116/application-is-visible-on-taskbar/1863243#1863243 0 Answer by François for Application is visible on taskbar? François 2009-12-07T22:03:54Z 2009-12-07T22:37:00Z <p>Did you play with</p> <pre><code>Application.MainFormOnTaskbar := False; </code></pre> <p>and</p> <pre><code>Application.MainForm.Visible := False; Application.ShowMainForm := False; </code></pre> http://stackoverflow.com/questions/1859102/how-can-i-fix-cannot-open-clipboard-access-denied-errors/1859295#1859295 0 Answer by François for How can I fix "Cannot open clipboard: Access Denied" errors? François 2009-12-07T10:57:53Z 2009-12-07T11:06:42Z <p>Try to check GetClipboardOwner, if it's not null and not your Application.Handle, you cannot Open to modify it's content.<br> And even it seems good to go, it might not be anymore when you actually do it.<br> So add a try except in a loop until you get it or give up nicely (notifying the user for instance).</p> http://stackoverflow.com/questions/1842420/importing-schema-with-xmlmapper-in-delphi/1844540#1844540 1 Answer by François for Importing schema with XMLmapper in Delphi ? François 2009-12-04T02:46:06Z 2009-12-07T03:57:26Z <p>I would still try to grab a Delphi 2010 (trial) and see if it works there.<br> I know there has been significant work done there in D2009 and D2010. It was notoriously bad at doing imports and includes.<br> Much better now...<br> If you cannot solve this, I would recommend to manually edit the schemas to remove the include/import and build a big fat XSD without the external file. It should work better.<br> That's how I did with a rather intricate set of schemas that even .Net lib would choke on.</p> <p><strong>Update</strong>: Could you try to replace the if:InfoFile by another symbol to avoid any clash with the if reserved word; i.e. search 'n' replace if in the schemas by _if_ or anything else... The XML mapper is supposed to care of this but, ya know...</p> http://stackoverflow.com/questions/1850567/generate-dbf-files/1850728#1850728 1 Answer by François for generate DBF files François 2009-12-05T01:20:11Z 2009-12-05T01:20:11Z <p>Not dealt with that in years!<br> Depending on your version of Delphi and what you want to do, you can either use the BDE or find some specialized components that read/write directly to DBF native file format.</p> http://stackoverflow.com/questions/1849303/pre-sorting-analysis-algorithm/1849573#1849573 0 Answer by François for Pre-sorting analysis algorithm? François 2009-12-04T20:48:48Z 2009-12-04T20:48:48Z <p>QuickSort beng a problem only when the data set is huge and already mostly sorted, I would use the following heuristics (pending a full blown solution): </p> <ul> <li><p>Don't bother if data set size is below threshold. </p></li> <li><p>If you have a quick (indexed) access to records(items) take a sample with 1 record in every N records and see if they are already sorted. Should be quick enough for a small sample and you can then decide to use quick sort or not.</p></li> </ul> http://stackoverflow.com/questions/1837830/how-do-i-compile-my-delphi-project-on-the-command-line/1838171#1838171 2 Answer by François for How do i compile my delphi project on the command line? François 2009-12-03T06:58:52Z 2009-12-03T09:05:52Z <p><a href="http://www.finalbuilder.com/" rel="nofollow">FinalBuilder</a> makes it very easy. Give it a try.</p> http://stackoverflow.com/questions/1830492/is-there-any-better-way-to-add-license-copyright-header-in-delphi-pas-source-fil/1830907#1830907 5 Answer by François for Is there any better way to add license/copyright header in Delphi .pas source file? François 2009-12-02T05:52:04Z 2009-12-02T05:58:09Z <p>You can also use the Unit Header macro template from the Editor Experts in <a href="http://www.gexperts.org/" rel="nofollow">GExperts</a></p> http://stackoverflow.com/questions/1829156/fastmm-stack-trace-memory-for-leaks-in-dynamicly-loaded-dll-compiled-with-runti/1829681#1829681 1 Answer by François for FastMM, stack trace memory for leaks in dynamicly loaded DLL, compiled with runtime packages. François 2009-12-01T23:29:22Z 2009-12-01T23:29:22Z <p>Have you set the FullDebugMode options and the Memory Manager Sharing Options (ShareMM and following) in FastMM4Options.inc? Have you also compiled with debug infos?</p> http://stackoverflow.com/questions/1822858/spell-check-my-delphi-source-code/1825131#1825131 3 Answer by François for Spell Check my Delphi source code François 2009-12-01T09:50:04Z 2009-12-01T09:50:04Z <p>The closest I know of is the Code Proofreader in <a href="http://www.gexperts.org/" rel="nofollow">GExperts</a></p> http://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build/1744785#1744785 1 Answer by François for Why does Delphi 2009 sometimes (more often that not) insist I build? François 2009-11-16T20:52:00Z 2009-11-16T20:52:00Z <p>Hard to tell without more details, but I would suspect some kind of confusion in one of the paths the compiler relies on to find the pas/dcus. Depending what has to be compiled, the order of the units found is not the same, or even the units are not necessary the good ones. </p> <p>Do you have any modified Delphi unit?<br> Do you have a separate folder for the dcus?<br> Do you mix the source and compiled units folders in the paths?</p> http://stackoverflow.com/questions/1738838/how-to-disable-the-formatter-in-delphi-2010/1739498#1739498 7 Answer by François for How to disable the Formatter in Delphi 2010 François 2009-11-16T00:39:54Z 2009-11-16T00:39:54Z <p>Install <a href="http://andy.jgknet.de/blog/?page%5Fid=10" rel="nofollow">DDevExtensions</a> from Andreas Hausladen.<br> In its last version:<br> <em>Version 2.0 (2009-09-13)<br> Added: Embarcadero RAD Studio 2010 support<br> Added: Editor tab double click action (zoom, super-zoom)<br> <strong>Added: Source Formatter hotkey (Ctrl+D) can be disabled</em></strong> </p> http://stackoverflow.com/questions/1734465/is-there-a-delphi-ide-plugin-for-xml-file-editing-validation-formatting/1738451#1738451 2 Answer by François for Is there a Delphi IDE plugin for XML file editing, validation, formatting? François 2009-11-15T18:58:10Z 2009-11-15T18:58:10Z <p>As far as an external tool could satisfy your needs, there is the <strong>free</strong> <a href="http://www.codeplex.com/xmlnotepad" rel="nofollow">XmlNotepad</a> which can do all this.<br> I use it as (very) good alternative to XmlSpy.</p> http://stackoverflow.com/questions/679430/comprehensive-list-of-delphi-ide-shortcuts 4 Comprehensive list of Delphi IDE Shortcuts François 2009-03-24T21:59:54Z 2009-11-13T17:00:09Z <p>I've seen different lists based on Adam Markovitz's (<a href="http://web.archive.org/web/20060213081516/http://blogs.borland.com/AdamMarkowitz/archive/2005/12/15/22523.aspx" rel="nofollow">http://web.archive.org/web/20060213081516/http://blogs.borland.com/AdamMarkowitz/archive/2005/12/15/22523.aspx</a>) like <a href="http://firebirdpt.wordpress.com/2008/07/02/delphi-ide-code-editor-keyboard-shortcuts/" rel="nofollow">here</a> or on <a href="http://delphi.wikia.com/wiki/Default%5FIDE%5FShortcut%5FKeys" rel="nofollow">Delphi Wiki</a>, this other one from <a href="http://delphimiracles.blogspot.com/2006/12/delphi-editor-ide-shortcuts-all.html" rel="nofollow">DelphiMiracles</a>, or this table from <a href="http://www.stevetrefethen.com/wiki/Keybinding%20Information.ashx" rel="nofollow">Steve Trefethen</a>. </p> <p>And they are all somehow different.</p> <p>Is there somewhere a comprehensive list with all the Default IDE shortcuts for D2007 and/or D2009?<br /> Or do you know other lists that would complement those?</p> <p>note: for some reason the link to Adm Markovitz's archive does not work...</p> http://stackoverflow.com/questions/1723598/how-to-catch-scrolling-event-in-dbgrid-in-delphi/1724549#1724549 1 Answer by François for How to catch scrolling event in DBGrid in Delphi François 2009-11-12T19:00:09Z 2009-11-12T19:44:00Z <p>There is a WMHScroll procedure in TCustomGrid, but it is private. You can't use it in a DBGrid.<br> You would have to create your own TDBGrid descendant and do your own </p> <pre><code>procedure WMHScroll(var Msg: TWMHScroll); message WM_HSCROLL; </code></pre> <p>or do some seriously bad hacking...</p> <p><strong>Update</strong>: trick/hack to sneak your code in...</p> <pre><code>[...] uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DB, ADODB, Grids, DBGrids; type // Hack to redeclare your TDBGrid here whitout the the form designer going mad TDBGrid = class(DBGrids.TDBGrid) procedure WMHScroll(var Msg: TWMHScroll); message WM_HSCROLL; end; TForm8 = class(TForm) DBGrid1: TDBGrid; DataSource1: TDataSource; ADODataSet1: TADODataSet; ADOConnection1: TADOConnection; private { Private declarations } public { Public declarations } end; var Form8: TForm8; implementation {$R *.dfm} { TDBGrid } procedure TDBGrid.WMHScroll(var Msg: TWMHScroll); begin case Msg.ScrollCode of SB_ENDSCROLL: OutputDebugString('SB_ENDSCROLL') ; SB_LEFT:OutputDebugString('SB_LEFT'); SB_RIGHT:OutputDebugString('SB_RIGHT'); SB_LINELEFT:OutputDebugString('SB_LINELEFT'); SB_LINERIGHT:OutputDebugString('SB_LINERIGHT'); SB_PAGELEFT:OutputDebugString('SB_PAGELEFT'); SB_PAGERIGHT:OutputDebugString('SB_PAGERIGHT'); SB_THUMBPOSITION:OutputDebugString('SB_THUMBPOSITION'); end; inherited; // to keep the expected behavior end; [...] </code></pre> <p><strong>Update2</strong>: Note that you can move your special TDBGrid code to a separate unit (recommended), just be sure to put this <strong>unit name AFTER DBGrids in your Form's uses clause</strong>.</p> http://stackoverflow.com/questions/1695201/what-is-the-best-practice-for-building-a-multilingual-application-using-delphi-2/1695238#1695238 3 Answer by François for What Is The Best Practice For Building A Multilingual Application Using Delphi 2010? François 2009-11-08T03:09:30Z 2009-11-08T03:09:30Z <p>You have the old school approach: having every text that should be displayed in resourcestrings, have those replaced after creating the UI and before displaying it. It's just a matter of switching the resourcestrings by linking for instance to the correct language DLL.</p> <p>You have the component approach, like TsiLang, where most often, there is a way to modify the translation a posteriori for the end-users if they want.</p> <p>You also have the in-house special development including databases, some sort of Editor tool, and most importantly a way to translate things that are dynamic and unknown at development time, like some legalese that must appear in an invoice and that is user specific.</p> <p>For the record, the last 3 big application I worked on where we needed internationalization, we took the last approach with different needs and different solutions, but that was the general idea.</p> <p>And I'm not even talking about Unicode here....</p> http://stackoverflow.com/questions/1623483/how-to-add-new-project-template-to-delphi/1623550#1623550 1 Answer by François for How to add new project template to Delphi François 2009-10-26T07:52:27Z 2009-10-26T07:52:27Z <p>If I remember correctly, from the loaded project, you would do an "add to repository" in Project menu. From there you would choose your page where it should appear.</p> http://stackoverflow.com/questions/1931833/compare-delphi-exception-handlers/1932488#1932488 Comment by François on Compare Delphi Exception Handlers François 2009-12-19T20:11:02Z 2009-12-19T20:11:02Z We have Eurekalog in production. Works very well for us. Sending automated bug reports with stack trace and whole shebang. http://stackoverflow.com/questions/1932616/fastsharemem-still-necessary-in-delphi-2010 Comment by François on FastShareMem still necessary in Delphi-2010? François 2009-12-19T20:03:39Z 2009-12-19T20:03:39Z almost a duplicate of &quot;ShareMem/ string-exchanging with Delphi DLL&quot; &lt;<a href="http://stackoverflow.com/questions/1897231/sharemem-string-exchanging-with-delphi-dll&gt" rel="nofollow" title="sharemem string exchanging with delphi dll%26gt">stackoverflow.com/questions/1897231/&hellip;</a>; http://stackoverflow.com/questions/1920140/delphi-records-in-classes Comment by François on Delphi: Records in Classes François 2009-12-17T08:26:09Z 2009-12-17T08:26:09Z MyClass.Rec.Member := 0; is not accepted because Rec is a property, not because it is a value type. Try with the Field directly, also a value type and it works: MyClass.FRec.Member := 0; http://stackoverflow.com/questions/1903723/problem-adding-lots-of-strings-to-a-tstringlist/1903770#1903770 Comment by François on Problem adding lots of strings to a TStringList François 2009-12-15T20:43:53Z 2009-12-15T20:43:53Z @Rob, this is a 14,000+ lines procedure... Quite big and unusual for a single procedure. In the end, the generated code can be way different than with LoadFromfile. http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus/1899329#1899329 Comment by François on Closing a secondary delphi form causes the main form to lose focus François 2009-12-14T18:44:35Z 2009-12-14T18:44:35Z Yep, higher: 12.0.3420.21218 http://stackoverflow.com/questions/1891196/convert-hi-ansi-chars-to-ascii-equivalent-ee-in-delphi2007/1891258#1891258 Comment by François on Convert Hi-Ansi chars to Ascii equivalent (é -> e) in Delphi(2007) François 2009-12-14T18:23:19Z 2009-12-14T18:23:19Z Thanks Padu. That's what I thought. I'll nevertheless accept Craig's answer because it's more generic. http://stackoverflow.com/questions/1891196/convert-hi-ansi-chars-to-ascii-equivalent-ee-in-delphi2007/1892432#1892432 Comment by François on Convert Hi-Ansi chars to Ascii equivalent (é -> e) in Delphi(2007) François 2009-12-14T18:20:36Z 2009-12-14T18:20:36Z Thanks Craig. That's a more generic solution than the lookup. It had a typo in the magic number, so I corrected it and used a constant instead. But anyway, it works on D2007 as well as D2009. http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus/1899329#1899329 Comment by François on Closing a secondary delphi form causes the main form to lose focus François 2009-12-14T17:37:09Z 2009-12-14T17:37:09Z Updated with Delphi version. (D2009, upd 3 &amp; 4) http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus Comment by François on Closing a secondary delphi form causes the main form to lose focus François 2009-12-14T17:35:07Z 2009-12-14T17:35:07Z Using Self as the Owner would at least avoid leaking memory... but that's another problem. http://stackoverflow.com/questions/1883997/delphi-why-can-i-link-this-function-statically-but-not-dynamically Comment by François on Delphi: Why can I link this function statically but not dynamically? François 2009-12-10T23:12:25Z 2009-12-10T23:12:25Z Your static vs dynamic is like apples to oranges. One is a cdecl function from Scan.dll, the other is a stdcal function from ScanDLL.dll. Or you did not post your real code.... http://stackoverflow.com/questions/1879427/are-there-any-way-to-use-delphi-inputbox-with-multiple-values/1879767#1879767 Comment by François on Are there any way to use delphi inputbox with multiple values? François 2009-12-10T20:39:55Z 2009-12-10T20:39:55Z I guess I was too tired to notice it could be interpreted as I see it now... Changed. http://stackoverflow.com/questions/1868615/lyrics-flow-delphi-pseudo-code/1869549#1869549 Comment by François on Lyrics flow (Delphi / pseudo-code) François 2009-12-08T20:35:42Z 2009-12-08T20:35:42Z ...paid... or graded. ;-) http://stackoverflow.com/questions/1852976/how-can-i-prevent-shortcuts-from-colliding-interacting-in-delphi/1853295#1853295 Comment by François on How can I Prevent Shortcuts from Colliding/Interacting in Delphi? François 2009-12-07T04:47:19Z 2009-12-07T04:47:19Z Strange! Could it be the order in which components are created that changed in your small example? Do you have problems with any other HotKey? I've seen a case where adding a shortcut in a menu somewhere did break a Ctrl-A in an a priori unrelated form. Also check the KeyPreview... http://stackoverflow.com/questions/1842420/importing-schema-with-xmlmapper-in-delphi/1844540#1844540 Comment by François on Importing schema with XMLmapper in Delphi ? François 2009-12-07T03:48:11Z 2009-12-07T03:48:11Z Pleas submit a bug report in QC with the schema files attached. In the meantime, you can either try to see if it imports with Delphi Prism (the .Net importer) and manually edit the code for Delphi, or tweak the schemas into 1 big XSD. I know it can be frustrating! Been there, done that :-( http://stackoverflow.com/questions/1822858/spell-check-my-delphi-source-code/1825131#1825131 Comment by François on Spell Check my Delphi source code François 2009-12-05T00:38:30Z 2009-12-05T00:38:30Z Very good idea. Especially if you can wrap it up as a new expert in GExperts :-)