User lkessler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T15:25:32Zhttp://stackoverflow.com/feeds/user/30176http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi2How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-05T18:17:22Z2009-12-10T08:10:30Z
<p>I use the standard Cut, Copy, Paste actions on my Main Menu. They have the shortcuts Ctrl-X, Ctrl-C and Ctrl-V.</p>
<p>When I open a modal form, e.g. FindFilesForm.ShowModal, then all the shortcuts work from the form.</p>
<p>But when I open a non-modal form, e.g. FindFilesForm.Show, then the shortcuts do not work.</p>
<p>I would think that those actions should work if the FindFilesForm is the active form. It's modality should have nothing to do with it, or am I wrong in my thinking?</p>
<p>Never-the-less, how can I get the shortcuts to work on a non-modal form?</p>
<p><hr></p>
<p>After Cary's response, I researched it further. It is not a problem with certain controls, e.g. TMemo or TEdit.</p>
<p>But it is for some others. Specifically, the ones where it happens include:</p>
<ol>
<li>the text in a TComboBox</li>
<li>the text in a TFindDialog</li>
<li>a TElTreeInplaceEdit control, part of LMD's ElPack</li>
</ol>
<p>I'll see if there are others and add them to the list.</p>
<p>These are all on important Non-Modal forms in my program.</p>
<p>So I still need a solution.</p>
<p><hr></p>
<p>Okay. I really need help with this. So this becomes the first question I am putting a bounty on.</p>
<p>My discussion with Cary that takes place through his answer and the comments there describe my problem in more detail. </p>
<p>And as I mentioned in one of those comments, a related problem seems to be discussed at:
<a href="https://forums.codegear.com/thread.jspa?threadID=19946" rel="nofollow">https://forums.codegear.com/thread.jspa?threadID=19946</a></p>
<p>What I need is a solution or a workaround, that will allow the Ctrl-X, Ctrl-C and Ctrl-V to always work in a TComboBox and TFindDialog in a Non-Modal window. If those two get solved, I'm sure my TElTreeInplaceEdit will work as well.</p>
<p>It takes only a couple of minutes to set up an simple test program as Cary describes. Hopefully someone will be able to solve this.</p>
<p>Just be wary that there seems to be something that allows it to work sometimes but not work other times. If I can isolate that in more detail, I'll report it here.</p>
<p>Thanks for any help you can offer me.</p>
http://stackoverflow.com/questions/268751/what-ever-happened-to-apl6What ever happened to APL?lkessler2008-11-06T13:50:30Z2009-12-05T05:23:06Z
<p>When I was at University 30 years ago, I used a programming language called APL. I believe the acronym stood for "A Programming Language", </p>
<p>This language was interpretive and was especially useful for array and matrix operations with powerful operators and library functions to help with that. </p>
<p>Did you use APL? Is this language still in use anywhere? Is it still available, either commercially or open source?</p>
http://stackoverflow.com/questions/1816088/how-to-get-my-solutions-into-windows-problem-reports-and-solutions1How To Get My Solutions Into Windows Problem Reports and Solutionslkessler2009-11-29T17:13:33Z2009-12-02T15:34:18Z
<p>Windows Vista added a Problem Reports and Solutions facility that records software problems, reports them to Microsoft, and then say they collect and make solutions to those problems available to users.</p>
<p>So when my program hits a bug and crashes, the user gets an exception report:</p>
<p><img src="http://www.beholdgenealogy.com/blog/wp-content/uploads/2009/11/capture.png" alt="alt text"></p>
<p>This then gets captured by Windows as one of it's problems. Every so often Windows warns the user that they've had problems and asks if they want to look for solutions. It brings up the Problem Reports and Solutions windows:</p>
<p><img src="http://www.beholdgenealogy.com/img/probrepsol.gif" alt="alt text"></p>
<p>So then you click on the "Check fo solutions" and it runs through the 255 "problems" that I've encountered for about 50 different software packages, and it results in this:</p>
<p><img src="http://www.beholdgenealogy.com/img/nonewsolutions.gif" alt="alt text"></p>
<p>Hopefully, this facility has been improved upon in Windows 7. </p>
<p>But even so, my question is how I can get my solution into the system to direct users to go to my website or contact me if they encountered a problem with my software?</p>
<p><hr></p>
<p>Thanks Larry for your answer.</p>
<p>That is a good article that I previously hadn't found. But it is a bit old, referring to Windows XP. I don't mind that, but the key website it referred to: Microsoft Online Crash Analysis (MOCA) at <a href="https://oca.microsoft.com/" rel="nofollow">https://oca.microsoft.com/</a> does not exist. </p>
<p>Even-so, I thought it would be simple to then type Microsoft Online Crash Analysis into Google to see if I can come up with the correct url. The links bring you to various pages in various languages that are part of MOCA. But if you want to get to the starting page, which will have the index on the left, the correct link seems to be: <a href="http://oca.microsoft.com/en/welcome.aspx" rel="nofollow">http://oca.microsoft.com/en/welcome.aspx</a>. </p>
<p>That link no longer gives a valid page. The last page in the Internet Archive is <a href="http://web.archive.org/web/20080508022150rn%5F1/oca.microsoft.com/en/BrowserInfo.aspx" rel="nofollow">from May 8, 2008</a>, but even it seems to be very nebulous in nature.</p>
<p>Unless I am mistaken and somebody knows better, it appears Microsoft has abandoned their MOCA, even though all their operating systems contain major connections to it. </p>
<p>If someone knows that I'm wrong in this assumption, please add an answer and let me know.</p>
<p><hr></p>
<p>Larry pointed out in his now-accepted answer that MOCA turned into WinQual.</p>
<p>How nice of Microsoft to require registration now if we want to provide them information that will make their tool better. That registration requires a digital certificate which most good programs will have, but it also requires it to be from Verisign and only Verisign. There is some <a href="http://successfulsoftware.net/2008/02/27/the-great-digital-certificate-ripoff/" rel="nofollow">significant online discussion about this</a>.</p>
http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphi4How Do I Add A TLabel To The Menu Bar in Delphi?lkessler2009-11-19T03:04:23Z2009-11-30T20:35:59Z
<p>I use <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> (a great program), and was very impressed when it displayed a "New Version Available" label on its Menu Bar. I clicked on it, up popped an install new version box, it installed, the program restarted itself and there was the new version and no more label.</p>
<p>I thought that was a great feature. The label is there prominently on the menu bar where the user can't miss it. I've already got the update procedure, so all I had to do was add the label. That should be easy.</p>
<p>Here's the label where I want it:
<img src="http://www.beholdgenealogy.com/img/tlabel.jpg" alt="The Label Where I Want It"></p>
<p>... Wrong. I couldn't figure out how to add a label there. The menu bar and the control area above it appear to be hands-off area for visual components. I couldn't place one there.</p>
<p>But I know it can be done, because Beyond Compare is a Delphi program. </p>
<p>Can anyone tell me what I have to do to put a TLabel in my Menu Bar or at least make it appear to be over the Menu Bar in the correct position?</p>
<p>For reference, I use Delphi 2009.</p>
<p><hr></p>
<p>Conclusion: Christopher seems to have correctly figured out what the Beyond Compare people did. I've decided to implement the menu item, but without the customization of his "owner draw" solution. So I don't get the blue bold underline hyperlink look, but I also don't lose all the automatic things (like the Vista styling) that owner draw skips.</p>
<p>To space the menu item over to the right, I've added an item after the "Help" that has the caption " " and is disabled.</p>
<p>Thanks, Christopher. I was stuck thinking it must be a Label, but you saw around that.</p>
http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi1How Should I Implement a Huge but Simple Indexed StringList in Delphi?lkessler2009-11-25T20:07:17Z2009-11-27T14:56:42Z
<p>I am using Delphi 2009. I have a very simple data structure, with 2 fields:</p>
<ol>
<li>A string that is the key field I need to retrieve by and is usually 4 to 15 characters in length.</li>
<li>A string that is the data field that may be any size, from 1 character up to say 10,000 characters.</li>
</ol>
<p>The difficulty is that I may have several million of these records, so they may total as much or more than 10 GB in size. Obviously, I'm looking for an on-disk solution rather than an in-memory solution.</p>
<p>My program needs to randomly retrieve these records, based on the key field. That's that part that needs to be made as efficient as possible.</p>
<p>Should I use a database for such a simple structure, and if so, which database would be best to handle this and be simplest to implement?</p>
<p>Alternatively, is there a simple on-disk data structure not requiring a full-blown database that would work just as well?</p>
<p><hr></p>
<p>Well, all I needed was the one answer to kick me back into reality. I was looking for something simpler than even a simple database. But when the no-duh answer is to use a database, then I realize I've already answered this question with my own answer to another question: <a href="http://stackoverflow.com/questions/445357/best-database-for-small-applications-and-tools/445565">Best database for small applications and tools</a>.</p>
<p>My answer was <a href="http://www.yunqa.de/delphi/doku.php/products/sqlite3/" rel="nofollow">DISQLite3</a> for <a href="http://stackoverflow.com/questions/445357/best-database-for-small-applications-and-tools/445565#445565">the reasons I specified there</a>. And that's what I'll probably with for my implementation.</p>
<p><hr></p>
<p>A few more good answers with some possibilities. That's great. I'll be able to try a few different methods to see what works best.</p>
<p><hr></p>
<p>More contemplation, and I have had to change the accepted answer to the GpStructuredStorage solution.</p>
<p>In my case, a million records totalling several Gigabytes will put a strain on a database structure. Specifically, the B* tree that is used to store the index in most databases is fast, but will slow down for some operations such as reindexing a million values. </p>
<p>The only thing you'll find faster than B* for an index is a hash table. And that is precisely what is provided in gabr's suggested addition to the GpStructuredStorage solution. I think it's quite elegant the way he segmented the hash value to give a 4 level directory structure.</p>
<p>The key reason why I can go to a hash solution is that I only need random access by the keys. I do not need to sort by the keys. If sorting was needed, then the gains of the speed of the hash table would be lost and the database system would be a no-brain winner.</p>
<p>When I get down to implementing this, I should do a comparison of this technique versus a database. Maybe I'll compare with both Firebird and SQLite which would both be worthy opponents.</p>
http://stackoverflow.com/questions/1781443/how-can-i-get-the-compile-date-and-time-in-delphi3How Can I Get the Compile Date and Time in Delphilkessler2009-11-23T06:35:49Z2009-11-23T09:57:24Z
<p>I'd like to be able to display in a Delphi 2009 program, the date and time that the program was compiled. </p>
<p>Is there a simple way to do this?</p>
http://stackoverflow.com/questions/1456608/how-do-i-differentiate-between-beta-versions-and-normal-versions4How do I differentiate between beta versions and normal versions?lkessler2009-09-21T20:17:00Z2009-11-22T20:19:22Z
<p>I generally agree that major versions of a program should be <code>1.0</code>, <code>2.0</code>, ... and significant updates should be: <code>1.1</code>, <code>1.2</code>, ..., and that bug fixes should be at the third level: <code>1.0.1</code>, <code>1.0.2</code>, ... <code>1.0.156</code> (if you've been plagued by that many bug-fix releases between versions).</p>
<p><hr></p>
<p>But now I want to release my first Beta that will be one of a series of Betas leading towards the release of version <code>1.0</code>.</p>
<p>Specifically, it doesn't make sense to me, to number my Beta releases greater than the number I am developing to, e.g. <code>1.0.1</code> up to <code>1.0.15</code> (if I have 15 beta releases) and then follow it with <code>1.0</code>.</p>
<p>But using numbers less than <code>1.0</code> seems awkward, e.g. <code>0.9.1</code> ... <code>0.9.15</code> and will cause confusion if I start using <code>1.9.1</code> ... <code>1.9.15</code> as the Betas for version <code>2.0</code>.</p>
<h3>Related:</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/615227/how-to-do-version-numbers">How to do version numbers?</a></p>
</blockquote>
<p><hr></p>
<p>Just for information, after your help and great links with more info, this is what I decided on.</p>
<p>I've been going 0.7, 0.8, 0.9, 0.91 ... up to 0.98 for my alpha versions.</p>
<p>I know I can do 1.0 beta 1, which is the "standard" way. But taking everything into account, I'm going to go with: 0.99 beta 1, 0.99 beta 2 ... before I get to my 1.0 release.</p>
<p>If I do a pre-release of my 2.0 version, I'll probably then follow the pattern and call it 1.99 beta 1, 1.99 beta 2, etc. </p>
<p>Hopefully this question and the answers will help you decide on your scheme.</p>
http://stackoverflow.com/questions/280247/menu-accelerator-keys-not-showing-up-delphi-20095Menu Accelerator Keys Not Showing Up (Delphi 2009)lkessler2008-11-11T07:34:59Z2009-11-22T02:15:54Z
<p>I've tried my best and cannot figure out what happened here. It worked fine in Delphi 4. After upgrading to Delphi 2009, I don't know if this is the way it is supposed to work, or if it's a problem:</p>
<p>This is what my program's menu looks like in Design Mode under Delphi 2009:</p>
<p><img src="http://www.beholdgenealogy.com/img/menu1.gif" alt="alt text"></p>
<p>Notice that every word in the Main Menu and the File submenu have one letter underlined. It is supposed to be like this. This underlined letter is called the Accelerator Key and is standard in Windows applications so that you can use the Alt-key and that letter to quickly select the menu item and then submenu item with the keyboard rather than with your mouse.</p>
<p>You get them this way by using the "&" character as part of the caption of the item, for example: Save &As...</p>
<p>When I run my application, and use the mouse to open the File menu, it looks like this:</p>
<p><img src="http://www.beholdgenealogy.com/img/menu2.gif" alt="alt text"></p>
<p>The characters are underlined in the main menu, but are not underlined in the File menu.</p>
<p>If instead, I use the Alt-F key to open up the File submenu, then it looks correct like this:</p>
<p><img src="http://www.beholdgenealogy.com/img/menu3.gif" alt="alt text"></p>
<p>and all the Accelerator Key letters are properly underlined.</p>
<p>I've played with the AutoHotKeys option but that's not the problem.</p>
<p>Has someone encountered this problem before? Is the example in the 2nd image correct behavior that I don't know of? Or is there some option or coding mistake that I might have missed?</p>
<p><hr></p>
<p>Nov 2009 (one year later): mghie seems to have got to the root of this and figured out the problem. See his accepted answer below.</p>
http://stackoverflow.com/questions/1719267/do-small-memory-leaks-matter-anymore10Do Small Memory Leaks Matter Anymore?lkessler2009-11-12T01:23:35Z2009-11-21T22:37:56Z
<p>With RAM typically in the Gigabytes on all PC's now, should I be spending time hunting down all the small (non-growing) memory leaks that may be in my program? I'm talking about those holes that may be less than 64 bytes, or even a bunch that are just 4 bytes. </p>
<p>Some of these are very difficult to identify because they are not in my own code, but may be in third party code or in the development tool's code, and I may not even have direct access to the source. In those cases, it would involve lengthy communication with the vendors of these products. </p>
<p>I have seen the number one memory leak question here at SO: <a href="http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok">Are memory leaks ever ok?</a> and the number one answer to that, as of now voted up 85 times, is: No.</p>
<p>But here I'm talking about small leaks that may take an inordinate amount of debugging, research and communication to track down.</p>
<p>And I'm only talking about a simple desktop app. I understand that apps running on servers must be as tight as possible.</p>
<p>So the question I am really asking is, if I know I have a program that leaks, say 40 bytes every time it is run, does that matter?</p>
<p><img src="http://www.beholdgenealogy.com/img/single%5Fdrip.jpg" alt="A Single Drip"></p>
<p><hr></p>
<p>Also see my followup question: <a href="http://stackoverflow.com/questions/1720014/what-operating-systems-will-free-the-memory-leaks">What Operating Systems Will Free The Memory Leaks?</a></p>
<p><hr></p>
<p>Postscript: I just purchased <a href="http://www.eurekalog.com/" rel="nofollow">EurekaLog</a> for my program development. </p>
<p>I found <a href="http://blog.eurekalog.com/catching-memory-leaks/" rel="nofollow">an excellent article by Alexander</a>, the author of EurekaLog (who should know these things), about catching memory leaks. In that article, Alexander states the answer to my question very well and succinctly:</p>
<blockquote>
<p>While any error in your application is always bad, there are types of errors, which can be not visible in certain environments. For example, <a href="http://en.wikipedia.org/wiki/Memory%5Fleak" rel="nofollow">memory or resources leaks</a> errors are relatively harmless on client machines and <a href="http://blogs.msdn.com/oldnewthing/archive/2004/03/17/91178.aspx" rel="nofollow">can be deadly on servers</a>.</p>
</blockquote>
http://stackoverflow.com/questions/1753893/how-do-i-show-a-final-form-on-exiting-in-delphi1How Do I Show A Final Form On Exiting In Delphi?lkessler2009-11-18T05:44:08Z2009-11-20T03:47:47Z
<p>This should be a simple one for someone. I just can't figure out how to do it.</p>
<p>Upon exiting of my program, I want to hide the main form and make a final "Thank You" form appear on its own, like this:</p>
<pre><code>procedure TMainForm.ExitExecute(Sender: TObject);
begin
MainForm.Visible := false;
ThankYouForm.Show;
MainForm.Close;
end;
</code></pre>
<p>But when I do that, I get the Exception:</p>
<blockquote>
<p>EInvalid Operation: Cannot change Visible in OnShow or OnHide</p>
</blockquote>
<p>So how do I show a final form, while hiding the main form when exiting a program in Delphi?</p>
<p><hr></p>
<p>Conclusion: Mghie confirmed that what I was trying was correct and should have worked. That indicated that I had a bug somewhere in my procedures of exiting and closing from my forms that was bringing up this exception. </p>
<p>Now that I know that, it won't take me long to find and fix the problem. </p>
<p><hr></p>
<p>Found the problem: I was closing my main form from within the ThankYouForm, and that somehow looped back through into ExitExecute and, well, it got all bunged up.</p>
<p>But all's well again. The MainForm.Hide before the ThankYouForm.ShowModal works perfectly.</p>
<p>Thanks again, guys.</p>
http://stackoverflow.com/questions/1747348/how-can-i-check-to-see-if-the-user-set-his-clock-back0How Can I Check To See If the User Set His Clock Back?lkessler2009-11-17T08:24:35Z2009-11-17T20:40:49Z
<p>In my desktop program, I want to check that to see if the user has set his clock back.</p>
<p>To do so, I compare the timestamp of certain Operating System files to the current computer date. If any are after what the computer thinks is the current date, then he must have set his clock back.</p>
<p>For Windows XP, I have been using such files as: </p>
<pre><code>c:\win386.swp
c:\windows\user.dat
and several others.
</code></pre>
<p>Two questions:</p>
<ol>
<li><p>Is this a decent way to do this, or is there something better?</p></li>
<li><p>(Assuming the answer to 1 is "decent") What would be some good Windows Vista and Windows 7 files to compare with?</p></li>
</ol>
<p><hr></p>
<p>Conclusion: Priyank said something obvious that had eluded me: Rather than using any system files, the easiest and simplest way might be to just use the timestamp of your program itself. After all, the date it was installed is exactly the date you want your trial to start from.</p>
<p>As it turns out, your answers and my research of other related StackOverflow questions and mentioned articles has led me to decide on a much simpler scheme. My trial users already have to get a key to use the trial. I've got the date registered embedded into the key. I really don't have to check for setting the clock back. Instead I can just seee if the current time is between the date registered and the date registered plus n days.</p>
<p>If they want to go to the trouble of getting around that scheme, then let them. I agree that those people wouldn't pay anyway. Make your program something worthwhile that people enjoy and want to use and most will pay. </p>
http://stackoverflow.com/questions/1600425/time-limited-trial-and-windows-certification/1749378#17493781Answer by lkessler for Time limited trial and Windows Certificationlkessler2009-11-17T14:49:47Z2009-11-17T14:49:47Z<p>You are taking the philosophy of only allowing installation if a flag is NOT there, which means you need to leave the flag there after uninstall. Also this fails when the user finds the flag and deletes it themself.</p>
<p>Better is if you turn it around and only allow the program to work if a flag IS there. This flag would be a registration key that has the date of expiry encrypted into it. When the program expires or is uninstalled, you delete the flag.</p>
<p>I implement this by making my users come to my site to register and get a free trial key. There are probably other ways, but I like this one because it also allows me to collect info about who is trying my program. </p>
http://stackoverflow.com/questions/1742759/delphi-ide-how-to-make-disabled-toolbar-buttons-grayscaled/1743922#17439220Answer by lkessler for Delphi IDE - How to make disabled toolbar buttons grayscaled?lkessler2009-11-16T18:18:35Z2009-11-16T18:33:48Z<p>I've always disliked the way Delphi creates default disabled images from enabled one. This not only manifests itself in the IDE, but it does persist down to the application you're developing. The disabled images in your application look just as bad.</p>
<p>I have in the past tried to figure out what Delphi did to derive the disabled images and build on that. But it still is on my "things to do" list to finish that off.</p>
<p>None-the-less, these are some articles about the Delphi "glitch" that I encountered quite a while ago that may or may not help you:</p>
<ol>
<li><p><a href="http://www.latiumsoftware.com/en/delphi/00042.php3" rel="nofollow">Indistinguishable gray blobs in disabled menu items, by Vladimir S.</a></p></li>
<li><p><a href="http://www.google.com/codesearch/p?hl=en&sa=N&cd=1&ct=rc#Yx3HDuBVDL4/MenuImgList.pas&q=menuimglist" rel="nofollow">MenuImgList.pas</a></p></li>
<li><p><a href="http://web.archive.org/web/20021107230424/http%3A//undu.com/Articles/010323b.html" rel="nofollow">Fixing a Buttons Drawing Glitch in Delphi 5</a></p></li>
<li><p><a href="http://web.archive.org/web/20021110120011/http%3A//www.undu.com/Articles/980731a.html" rel="nofollow">Fixing a Menu Drawing Glitch in Delphi 4</a></p></li>
</ol>
http://stackoverflow.com/questions/1743303/how-can-i-sort-an-ado-table-on-a-fieldname-containing-a-space0How Can I Sort an ADO Table on a Fieldname Containing a Space? lkessler2009-11-16T16:35:29Z2009-11-16T16:38:38Z
<p>I am using Delphi, but this is a simple and general problem:</p>
<p>I'm doing the following:</p>
<pre><code>var
ArticlesTable: TADOTable;
begin
ArticlesTable.DisableControls;
ArticlesTable.Sort := 'CITY';
ArticlesTable.First;
while not ArticlesTable.Eof do begin
...
ArticlesTable.Next;
end;
</code></pre>
<p>This works very well and allows me to efficiently process the records one by one with the records ordered ascending by the CITY field as they are coming in.</p>
<p>However, now I wanted to order by the field "LAST NAME" which has an embedded space in it. But when I use the statement:</p>
<pre><code> ArticlesTable.Sort := 'CITY';
</code></pre>
<p>I get the error message:</p>
<pre><code> EOleException: Arguments are of the wrong type, are out of acceptable range,
or are in conflict with one another.
</code></pre>
<p>I have seen <a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/delphivclwin32/ADODB%5FTCustomADODataSet%5FSort.html" rel="nofollow">the help on the SORT string syntax</a>. It says to separate multiple fields by commas, and to add ASC or DESC after a field to sort ascending or descending. But it doesn't say what to do if a fieldname has a space in it.</p>
<p>I've tried putting the field name in single and double quotes and even using #20 as the space character, but those don't work.</p>
<p>I can't change the field name on the Microsoft Access database, because there are other programs I don't work with that depend on it.</p>
<p>I'm sure there must be an easy way to do this that I don't know about.</p>
http://stackoverflow.com/questions/1739363/is-there-a-standard-way-to-allow-the-user-to-select-a-text-viewer2Is There A Standard Way To Allow The User To Select A Text Viewer?lkessler2009-11-15T23:57:37Z2009-11-16T00:28:40Z
<p>In my Windows desktop program, I want to be able to allow the user to select a text viewer that my program will use.</p>
<p>By default, I'll have it set to be the program (s)he uses to view .TXT files, and I can find that easily enough from the Registry. But he may want to change to use Notepad or Wordpad or some other program (e.g. UltraEdit).</p>
<p>This is what I came up with for the dialog box:</p>
<p><img src="http://www.beholdgenealogy.com/img/fileviewerselection.jpg" alt="File Viewer Selection Dialog Box"></p>
<p>Actually I have a two questions here:</p>
<ol>
<li><p>Is there a recommended user interface for this (i.e. some sort of dialog I should use)?</p></li>
<li><p>Is there a simple way to check, once the user enters a program executable, that it is indeed capable of text viewing? </p></li>
</ol>
http://stackoverflow.com/questions/1005010/most-efficient-unicode-hash-function-for-delphi-20095Most Efficient Unicode Hash Function for Delphi 2009lkessler2009-06-17T03:43:32Z2009-11-14T09:35:55Z
<p>I am in need of the fastest hash function possible in Delphi 2009 that will create hashed values from a Unicode string that will distribute fairly randomly into buckets.</p>
<p>I originally started with <a href="http://stackoverflow.com/users/4997/gabr">Gabr</a>'s HashOf function from GpStringHash:</p>
<pre><code>function HashOf(const key: string): cardinal;
asm
xor edx,edx { result := 0 }
and eax,eax { test if 0 }
jz @End { skip if nil }
mov ecx,[eax-4] { ecx := string length }
jecxz @End { skip if length = 0 }
@loop: { repeat }
rol edx,2 { edx := (edx shl 2) or (edx shr 30)... }
xor dl,[eax] { ... xor Ord(key[eax]) }
inc eax { inc(eax) }
loop @loop { until ecx = 0 }
@End:
mov eax,edx { result := eax }
end; { HashOf }
</code></pre>
<p>But I found that this did not produce good numbers from Unicode strings. I noted that Gabr's routines have not been updated to Delphi 2009.</p>
<p>Then I discovered HashNameMBCS in SysUtils of Delphi 2009 and translated it to this simple function (where "string" is a Delphi 2009 Unicode string):</p>
<pre><code>function HashOf(const key: string): cardinal;
var
I: integer;
begin
Result := 0;
for I := 1 to length(key) do
begin
Result := (Result shl 5) or (Result shr 27);
Result := Result xor Cardinal(key[I]);
end;
end; { HashOf }
</code></pre>
<p>I thought this was pretty good until I looked at the CPU window and saw the assembler code it generated:</p>
<pre><code>Process.pas.1649: Result := 0;
0048DEA8 33DB xor ebx,ebx
Process.pas.1650: for I := 1 to length(key) do begin
0048DEAA 8BC6 mov eax,esi
0048DEAC E89734F7FF call $00401348
0048DEB1 85C0 test eax,eax
0048DEB3 7E1C jle $0048ded1
0048DEB5 BA01000000 mov edx,$00000001
Process.pas.1651: Result := (Result shl 5) or (Result shr 27);
0048DEBA 8BCB mov ecx,ebx
0048DEBC C1E105 shl ecx,$05
0048DEBF C1EB1B shr ebx,$1b
0048DEC2 0BCB or ecx,ebx
0048DEC4 8BD9 mov ebx,ecx
Process.pas.1652: Result := Result xor Cardinal(key[I]);
0048DEC6 0FB74C56FE movzx ecx,[esi+edx*2-$02]
0048DECB 33D9 xor ebx,ecx
Process.pas.1653: end;
0048DECD 42 inc edx
Process.pas.1650: for I := 1 to length(key) do begin
0048DECE 48 dec eax
0048DECF 75E9 jnz $0048deba
Process.pas.1654: end; { HashOf }
0048DED1 8BC3 mov eax,ebx
</code></pre>
<p>This seems to contain quite a bit more assembler code than Gabr's code. </p>
<p>Speed is of the essence. Is there anything I can do to improve either the pascal code I wrote or the assembler that my code generated?</p>
http://stackoverflow.com/questions/365817/blogging-tool-needed-for-standards-compliant-webpages1Blogging Tool Needed for Standards Compliant Webpageslkessler2008-12-13T22:04:10Z2009-11-13T11:00:06Z
<p>A programmer I know has a website that is fully Standards Compliant. It uses Unicode-encoded fully-validated XHTML 1.1 with CSS. The pages are frames-free, table-free and JavaScript-free.</p>
<p>He would like to be directed to a blogging tool that does not demand any particular database system or web server, but does create static pages that comply with the above standards and best practices and is itself a professionally finished native Windows application.</p>
<p>...and it should be able to produce an RSS feed as well.</p>
<p>Is there anything out there that comes close to this?</p>
http://stackoverflow.com/questions/1720014/what-operating-systems-will-free-the-memory-leaks1What Operating Systems Will Free The Memory Leaks?lkessler2009-11-12T05:06:54Z2009-11-12T06:03:41Z
<p>I've got a desktop program. Most Operating Systems run the program in its own address space.</p>
<p>When the program exits, I believe most operating systems free the memory allocated by the program and return it to the memory stack for reuse. </p>
<p>What I am not sure of, is if the program has a memory leak, will the memory "leaked" also be returned for reuse, or is it lost until the machine is rebooted?</p>
<p>This is a followup to the question I asked earlier today: <a href="http://stackoverflow.com/questions/1719267/do-small-memory-leaks-matter-anymore">Do Small Memory Leaks Matter Anymore?</a>, and a couple of comments there mentioned that program memory is freed when a program finishes. If leaks are freed when a program is done, then it definitely puts less pressure on me to rigorously rid my program of the tiniest leaks.</p>
<p>Specifically, I'm a Windows programmer and I need to know what happens (memory lost or memory freed) for Windows 98, 2000, XP, Vista and 7. But I'd also like to hear what happens on Mac and Unix machines.</p>
<p><hr></p>
<p>Clarification: I am talking about non-growing leaks. These are leaks of a constant size that happen once when a program is run. </p>
<p>I do realize that leaks that are continually growing in a program are severe and must be fixed. </p>
<p>Either way, the question isn't about whether or not leaks must be fixed. It is whether or not the Operating Systems give you back the leaked memory when the program ends.</p>
http://stackoverflow.com/questions/1719146/what-is-this-1055-delphi-error-and-is-it-important1What is this 1055 Delphi Error and is it Important?lkessler2009-11-12T00:48:11Z2009-11-12T02:46:27Z
<p>I am using a FindFile routine to search through all files in a directory. The original code was freely available from <a href="http://www.latiumsoftware.com/en/" rel="nofollow">Latium Software</a>. It runs the FindFile is a separate Thread.</p>
<p>It has always worked fine, and still continues to work fine. But since I upgraded from Delphi 4 to Delphi 2009, it now gives a Warning:</p>
<pre><code>W1055: Published caused RTTI ($M+) to be added to type '%s' (Delphi)
</code></pre>
<p>The error occurs at the "published" line of this thread declaration:</p>
<pre><code> TThread1 = class(TThread)
private
OwnerForm: TFindFileForm;
procedure Initialize;
procedure AddFileName;
procedure Finalize;
protected
procedure Execute; override;
published
constructor Create(Owner: TFindFileForm);
destructor Destroy; override;
end;
</code></pre>
<p>The Delphi help states:</p>
<blockquote>
<p>You added a 'PUBLISHED' section to a class that was not compiled while
the {$M+}/{$TYPEINFO ON} switch was in
effect, or without deriving from a
class compiled with the
{$M+}/{$TYPEINFO ON} switch in effect.</p>
<p>The TypeInfo standard procedure requires a type identifier as its
parameter. In the code above,
'NotType' does not represent a type
identifier. </p>
<p>To avoid this error, ensure that you compile while the {$M+}/{$TYPEINFO
ON} switch is on, or derive from a
class that was compiled with
{$M+}/{$TYPEINFO ON} switch on.</p>
</blockquote>
<p>Well, I didn't add the 'PUBLISHED' section. It's always been there. I'm not a component developer, and I really don't understand at all what this message means, whether or not it is really a problem, and what I should or should not do about it.</p>
<p>Is this important and if so, what should I do to fix it? Or should I just ignore it?</p>
http://stackoverflow.com/questions/1704324/is-there-a-free-statistics-package-for-delphi1Is there a free Statistics Package for Delphi?lkessler2009-11-09T22:21:39Z2009-11-10T11:22:46Z
<p>Is there an open source and/or free statistics package or library for <a href="http://en.wikipedia.org/wiki/Delphi%5Fprogramming%5Flanguage" rel="nofollow">Delphi</a>? I'm looking for something that can compile directly into the executable, so no DLL's. It needs to be compatible with Delphi 2009 and later (the Unicode versions).</p>
<p>Hopefully there is something comprehensive available out there. By comparison, I am used to the amazing features of <a href="http://www.sas.com/technologies/analytics/statistics/stat/index.html" rel="nofollow">SAS</a> and <a href="http://www.r-project.org/" rel="nofollow">R</a>. </p>
<p>I'm looking for distribution functions (normal, binomial, chi square, <a href="http://en.wikipedia.org/wiki/Logit" rel="nofollow">logit</a>) and regression (linear, non-linear, multinomial) and if possible predictors (e.g. <a href="http://en.wikipedia.org/wiki/Autoregressive%5Fintegrated%5Fmoving%5Faverage" rel="nofollow">ARIMA</a>).</p>
http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi6Is There A Fast GetToken Routine For Delphi?lkessler2009-11-07T18:44:59Z2009-11-09T13:00:00Z
<p>In my program, I process millions of strings that have a special character, e.g. "|" to separate tokens within each string. I have a function to return the n'th token, and this is it:</p>
<pre><code>function GetTok(const Line: string; const Delim: string; const TokenNum: Byte): string;
{ LK Feb 12, 2007 - This function has been optimized as best as possible }
var
I, P, P2: integer;
begin
P2 := Pos(Delim, Line);
if TokenNum = 1 then begin
if P2 = 0 then
Result := Line
else
Result := copy(Line, 1, P2-1);
end
else begin
P := 0; { To prevent warnings }
for I := 2 to TokenNum do begin
P := P2;
if P = 0 then break;
P2 := PosEx(Delim, Line, P+1);
end;
if P = 0 then
Result := ''
else if P2 = 0 then
Result := copy(Line, P+1, MaxInt)
else
Result := copy(Line, P+1, P2-P-1);
end;
end; { GetTok }
</code></pre>
<p>I developed this function back when I was using Delphi 4. It calls the very efficient PosEx routine that was originally developed by Fastcode and is now included in the StrUtils library of Delphi.</p>
<p>I recently upgraded to Delphi 2009 and my strings are all Unicode. This GetTok function still works and still works well. </p>
<p>I have gone through the new libraries in Delphi 2009 and there are many new functions and additions to it. </p>
<p>But I have not seen a GetToken function like I need in any of the new Delphi libraries, in the various fastcode projects, and I can't find anything with a Google search other than <a href="http://delphi.about.com/cs/adptips2002/a/bltip0902%5F2.htm" rel="nofollow">Zarko Gajic's: Delphi Split / Tokenizer Functions</a>, which is not as optimized as what I already have.</p>
<p>Any improvement, even 10% would be noticeable in my program. I know an alternative is StringLists and to always keep the tokens separate, but this has a big overhead memory-wise and I'm not sure if I did all that work to convert whether it would be any faster.</p>
<p>Whew. So after all this long winded talk, my question really is:</p>
<p>Do you know of any very fast implementations of a GetToken routine? An assembler optimized version would be ideal?</p>
<p>If not, are there any optimizations that you can see to my code above that might make an improvement?</p>
<p><hr></p>
<p>Followup: Barry Kelly mentioned a question I asked a year ago about optimizing the parsing of the lines in a file. At that time I hadn't even thought of my GetTok routine which was not used for the that read or parsing. It is only now that I saw the overhead of my GetTok routine which led me to ask this question. Until Carl Smotricz and Barry's answers, I had never thought of connecting the two. So obvious, but it just didn't register. Thanks for pointing that out.</p>
<p>Yes, my Delim is a single character, so obviously I have some major optimization I can do. My use of Pos and PosEx in the GetTok routine (above) blinded me to the idea that I can do it faster with a character by character search instead, with bits of code like:</p>
<pre><code> while (cp^ > #0) and (cp^ <= Delim) do
Inc(cp);
</code></pre>
<p>I'm going to go through everyone's answers and try the various suggestions and compare them. Then I'll post the results. </p>
<p><hr></p>
<p>Confusion: Okay, now I'm really perplexed.</p>
<p>I took Carl and Barry's recommendation to go with PChars, and here is my implementation:</p>
<pre><code>function GetTok(const Line: string; const Delim: string; const TokenNum: Byte): string;
{ LK Feb 12, 2007 - This function has been optimized as best as possible }
{ LK Nov 7, 2009 - Reoptimized using PChars instead of calls to Pos and PosEx }
{ See; http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi }
var
I: integer;
PLine, PStart: PChar;
begin
PLine := PChar(Line);
PStart := PLine;
inc(PLine);
for I := 1 to TokenNum do begin
while (PLine^ <> #0) and (PLine^ <> Delim) do
inc(PLine);
if I = TokenNum then begin
SetString(Result, PStart, PLine - PStart);
break;
end;
if PLine^ = #0 then begin
Result := '';
break;
end;
inc(PLine);
PStart := PLine;
end;
end; { GetTok }
</code></pre>
<p>On paper, I don't think you can do much better than this.</p>
<p>So I put both routines to the task and used AQTime to see what's happening. The run I had included 1,108,514 calls to GetTok.</p>
<p>AQTime timed the original routine at 0.40 seconds. The million calls to Pos took 0.10 seconds. A half a million of the TokenNum = 1 copies took 0.10 seconds. The 600,000 PosEx calls only took 0.03 seconds.</p>
<p>Then I timed my new routine with AQTime for the same run and exactly the same calls. AQTime reports that my new "fast" routine took 3.65 seconds, which is 9 times as long. The culprit according to AQTime was the first loop:</p>
<pre><code> while (PLine^ <> #0) and (PLine^ <> Delim) do
inc(PLine);
</code></pre>
<p>The while line, which was executed 18 million times, was reported at 2.66 seconds. The inc line, executed 16 million times, was said to take 0.47 seconds.</p>
<p>Now I thought I knew what was happening here. I had a similar problem with AQTime in a question I posed last year: <a href="http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement">Why is CharInSet faster than Case statement?</a> </p>
<p>Again it was Barry Kelly who clued me in. Basically, an instrumenting profiler like AQTime does not necessarily do the job for microoptimization. It adds an overhead to each line which may swamp the results which is shown clearly in these numbers. The 34 million lines executed in my new "optimized code" overwhelm the several million lines of my original code, with apparently little or no overhead from the Pos and PosEx routines.</p>
<p>Barry gave me a sample of code using QueryPerformanceCounter to check that he was correct, and in that case he was.</p>
<p>Okay, so let's do the same now with QueryPerformanceCounter to prove that my new routine is faster and not 9 times slower as AQTime says it is. So here I go:</p>
<pre><code>function TimeIt(const Title: string): double;
var i: Integer;
start, finish, freq: Int64;
Seconds: double;
begin
QueryPerformanceCounter(start);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 1);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 2);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 3);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 4);
QueryPerformanceCounter(finish);
QueryPerformanceFrequency(freq);
Seconds := (finish - start) / freq;
Result := Seconds;
end;
</code></pre>
<p>So this will test 1,000,000 calls to GetTok.</p>
<p>My old procedure with the Pos and PosEx calls took 0.29 seconds.
The new one with PChars took 2.07 seconds. </p>
<p>Now I am completely befuddled! Can anyone tell me why the PChar procedure is not only slower, but is 8 to 9 times slower!?</p>
<p><hr></p>
<p>Mystery solved! Andreas said in his answer to change the Delim parameter from a string to a Char. I'll always be using just a Char, so at least for my implementation this is very possible. I was amazed at what happened.</p>
<p>The time for the 1 million calls went down from 1.88 seconds to .22 seconds.</p>
<p>And surprisingly, the time for my original Pos/PosEx routine went UP from .29 to .44 seconds when I changed it's Delim parameter to a Char.</p>
<p>Frankly, I'm disappointed by Delphi's optimizer. That Delim is a constant parameter. The optimizer should have noticed that the same conversion is happening within the loop and should have moved it out so that it would only be done once.</p>
<p>Double checking my Code generation parameters, yes I do have Optimization True and String format checking Off.</p>
<p>Bottom line is that the new PChar routine with Andrea's fix is about 25% faster than my original (.22 versus .29).</p>
<p>I still want to follow up on the other comments here and test them out.</p>
<p><hr></p>
<p>Turning off optimization and turning on String format checking only increases the time from .22 to .30. It adds about the same to the original.</p>
<p>The advantage to using assembler code, or calling routines written in assembler like Pos or PosEx is that they are NOT subject to what code generation options you have set. They will always run the same way, a pre-optimized and non-bloated way.</p>
<p>I have reaffirmed in the last couple of days, that the best way to compare code for microoptimization is to look at and compare the Assembler code in the CPU window. It would be nice if Embarcadero could make that window a bit more convenient, and allow us to copy portions to the clipboard or to print sections of it.</p>
<p>Also, I unfairly slammed AQTime earlier in this post, thinking that the extra time added for my new routine was solely because of the instrumentation it added. Now that I go back and check with the Char parameter instead of String, the while loop is down to .30 seconds (from 2.66) and the inc line is down to .14 seconds (from .47). Strange that the inc line would go down as well. But I'm getting worn out from all this testing already.</p>
<p><hr></p>
<p>I took Carl's idea of looping by characters, and rewrote that code with that idea. It makes another improvement, down to .19 seconds from .22. So here is now the best so far:</p>
<pre><code>function GetTok(const Line: string; const Delim: Char; const TokenNum: Byte): string;
{ LK Nov 8, 2009 - Reoptimized using PChars instead of calls to Pos and PosEx }
{ See; http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi }
var
I, CurToken: Integer;
PLine, PStart: PChar;
begin
CurToken := 1;
PLine := PChar(Line);
PStart := PLine;
for I := 1 to length(Line) do begin
if PLine^ = Delim then begin
if CurToken = TokenNum then
break
else begin
CurToken := CurToken + 1;
inc(PLine);
PStart := PLine;
end;
end
else
inc(PLine);
end;
if CurToken = TokenNum then
SetString(Result, PStart, PLine - PStart)
else
Result := '';
end;
</code></pre>
<p>There still may be some minor optimizations to this, such as the CurToken = Tokennum comparison, which should be the same type, Integer or Byte, whichever is faster.</p>
<p>But let's say, I'm happy now. </p>
<p>Thanks again to the StackOverflow Delphi community.</p>
http://stackoverflow.com/questions/1690764/what-is-the-purpose-of-the-tag-property-of-delphi-vcl-components/1691357#16913571Answer by lkessler for What is the purpose of the 'Tag' property of Delphi VCL components?lkessler2009-11-07T00:10:08Z2009-11-07T00:10:08Z<p>It's great! A freebie. I use it all the time to store one additional piece of information associated with the object. </p>
<p>Often I store a pointer to an associated data structure, or sometimes an integer which may be an index into some other array.</p>
<p>You can use it as a counter for times the object is accessed, or whatever.</p>
<p>The only downside is if your program uses lots of memory and you have millions of objects, those 4 bytes for each tag add up, especially if you're not using it. In that case, for your most prolific object type, you may want to create your own version without the tag.</p>
http://stackoverflow.com/questions/1686107/what-is-a-good-library-for-creating-pdfs-in-delphi-2010/1691324#16913241Answer by lkessler for What is a good library for creating PDFs in Delphi 2010?lkessler2009-11-06T23:57:23Z2009-11-06T23:57:23Z<p>You could try <a href="http://www.roledata.com/rolepdf.htm" rel="nofollow">TRolePDF by Roledata</a>. It is free, but limited.</p>
<p>I don't know of any Open Source or other free PDF libraries for Delphi. It seems to be a domain for commercial software, since it is a bit of a niche. If there is a good one, I'd like to know as well, since in the future I'm planning to implement PDF export and I'd also like a good open source tool for that. It does seem hardly worthwhile to spend a few hundred dollars for something that is one tiny part of my program.</p>
<p>However, given all that, if you want a full-fledged PDF library that is maintained and supported and has a Delphi 2009 version (and it's important enough to you to spend a few hundred dollars), then you can <a href="http://www.llion.net/" rel="nofollow">try the tools at llionsoft</a>.</p>
http://stackoverflow.com/questions/679430/comprehensive-list-of-delphi-ide-shortcuts/680197#6801972Answer by lkessler for Comprehensive list of Delphi IDE Shortcutslkessler2009-03-25T04:15:22Z2009-11-06T06:31:13Z<p>There's also a good list at Epinasoft's Delphi-Kurs (Delphi Course): <a href="http://www.epinasoft.com/delphikurs/dkk%5Fkeyboard%5Fshortcuts%5Fpart1.html" rel="nofollow">Part 1</a> and <a href="http://www.epinasoft.com/delphikurs/dkk%5Fkeyboard%5Fshortcuts%5Fpart2.html" rel="nofollow">Part 2</a></p>
<p>Also see Hidden Features of Delphi here at Stack Overflow:
<a href="http://stackoverflow.com/questions/102254/hidden-features-of-delphi">http://stackoverflow.com/questions/102254/hidden-features-of-delphi</a></p>
<p>p.s. If you or anyone else is willing to go through all these and make a comprehensive list, all Delphi users would be very grateful.</p>
<p>Addenum: I just found another list in PDF format created by Cary Jensen attached to his blog post: <a href="http://caryjensen.blogspot.com/2009/05/keystroke-combinations-in-delphis-code.html" rel="nofollow">Keystroke Combinations in Delphi's Code Editor</a></p>
http://stackoverflow.com/questions/1451495/questions-every-good-delphi-developer-should-be-able-to-answer/1685456#16854562Answer by lkessler for Questions every good Delphi developer should be able to answer?lkessler2009-11-06T04:41:16Z2009-11-06T04:41:16Z<blockquote>
<p>Why do you use Delphi?</p>
</blockquote>
<p>Every good Delphi developer should know why they chose Delphi as their programming language.</p>
<p>... and they should be happy they did.</p>
http://stackoverflow.com/questions/1678572/is-there-an-efficient-whole-word-search-function-in-delphi2Is There An Efficient Whole Word Search Function in Delphi?lkessler2009-11-05T05:42:50Z2009-11-05T23:15:40Z
<p>In Delphi 2009 or later (Unicode), are there any built-in functions or small routines written somewhere that will do a reasonably efficient whole word search where you provide the delimiters that define the word, e.g.:</p>
<pre><code>function ContainsWord(Word, Str: string): boolean;
const { Delim holds the delimiters that are on either side of the word }
Delim = ' .;,:(){}"/\<>!?[]'#$91#$92#$93#$94'-+*='#$A0#$84;
</code></pre>
<p>where: </p>
<pre><code>Word: string; { is the Unicode string to search for }
Str: string; { is the Unicode string to be searched }
</code></pre>
<p>I only need this to return a true or false value if the "Word" is in the string.</p>
<p>There must be something for this somewhere, because the standard Find Dialog has "Match whole word only" as one of it's options.</p>
<p>How is this normally (or best) implemented?</p>
<p><hr></p>
<p>Conclusion:</p>
<p>RRUZ's answer was perfect. The SearchBuf routine was just what I needed. I can even go into the StrUtils routine, extract the code, and modify it to fit my requirements. </p>
<p>I was surprised to find that SearchBuf doesn't first search for the word and then check for delimiters. Instead it goes through the characters of the string one at a time looking for a delimiter. If it finds one, then it checks for the string and another delimiter. If it doesn't find it, it then looks for another delimiter. For efficiency's sake, that's very smart!</p>
http://stackoverflow.com/questions/1634832/delphi-2010-or-2007-for-upgrading-delphi-3-project/1634887#16348872Answer by lkessler for Delphi 2010 or 2007 for upgrading Delphi 3 project?lkessler2009-10-28T02:29:19Z2009-10-28T06:01:30Z<p>They have done such a good job implementing Unicode in Delphi 2009 that most programs that do not do tricks with characters and bytes convert over with no problem.</p>
<p>The caveat is as long as you are not using any 3rd party packages. If you are, you should upgrade those. If they don't have upgrades and you don't have their source code, then you might be better off not going to Delphi 2010.</p>
<p>But I would make the jump if at all possible. I did and I'm glad I did.</p>
http://stackoverflow.com/questions/1633646/what-is-a-good-multithreading-book-for-delphi/1634831#16348312Answer by lkessler for What is a good multithreading book for Delphi?lkessler2009-10-28T02:17:47Z2009-10-28T02:17:47Z<p>This is also NOT a book. But I too found threading in Delphi very difficult when I started trying to learn it.</p>
<p>Rather than try to learn all its complexities, one alternative I might suggest is to try the OmniThreadLibrary at <a href="http://otl.17slon.com/" rel="nofollow">http://otl.17slon.com/</a> To me it simplifies everything. And it has a FAQ, tutorial and forum.</p>
<p>You might also want to check out the StackOverflow question: <a href="http://stackoverflow.com/questions/670641/delphi-threading-frameworks">Delphi - Threading frameworks</a></p>
http://stackoverflow.com/questions/1616985/adding-delphi-6-third-party-component-to-delphi-2010/1617165#16171650Answer by lkessler for Adding Delphi 6 third party component to Delphi 2010?lkessler2009-10-24T06:24:40Z2009-10-24T06:24:40Z<p>The biggest change between Delphi 6 and Delphi 2010 is the changing of the default strings to Unicode in Delphi 2009.</p>
<p>I highly recommend against using any pre-Delphi 2009 component with your upgrade. They will not know about Unicode and you will run into problems.</p>
<p>First, you should see if the new version of Delphi already has the functionality you want built in. Many things have been upgraded over the years. You may find you don't need some of your old components at all.</p>
<p>For the ones you still need, try to find an upgrade, or some other similar component that is ready for Delphi 2009. There are many grids around. I am not familiar with Serial or Async programs to recommend one. </p>
http://stackoverflow.com/questions/1606992/problems-opening-access-database-from-delphi-7/1611105#1611105-1Answer by lkessler for Problems opening Access Database from Delphi 7lkessler2009-10-23T02:22:30Z2009-10-23T02:22:30Z<p>You say: "It works fine on my PC, and some other PCs as well."</p>
<p>Then it sounds like there might not be anything wrong with your program. What it could be is that the PCs it won't work on all the time do not have Microsoft Office or at least Microsoft Access installed. They need to have Access installed for ADO to work.</p>
<p>A "sometimes" problem on a machine is difficult to diagnose without further clues.</p>
<p>I'm afraid I don't know what the "Read-only" problem might be.</p>
http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1865801#1865801Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-09T22:44:41Z2009-12-09T22:44:41ZOkay, I've put up a zip file with my test Delphi 2009 project at: <a href="http://www.beholdgenealogy.com/cutcopypastetest.zip" rel="nofollow">beholdgenealogy.com/cutcopypastetest.zip/…</a> ... but as I test it now with the works/doesn't work example I gave above, the "doesn't work" is not happening. Everything works. I am either going completely nuts, or something is really screwy here. This is not very reassuring for me. We all want programs we can verify work all the time, and not some times. But please try it. Maybe it will happen for you. If not, I am at a loss for any explanation.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1865801#1865801Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-09T15:00:09Z2009-12-09T15:00:09Zmghie: Tonight I'll put my simple test program up on my website (can't do it right now - I'm not at home), and maybe then this last problem will show up for you. Once it's up, I'll post another comment with the link to the test program.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1865801#1865801Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-09T07:14:37Z2009-12-09T07:14:37ZSo now I put your EditPaste1Execute routine (as well as Copy1 and Cut1) handlers in. I'm impressed by your knowledge of this. Thanks. It would have taken me a long time to figure that out. But even with this, I still have a problem. Do this: From the main form, press a button to open a find dialog. Put in a find string, select part of it and do Ctrl-X. It now works! But continue on back to the main form. Press a button to open a non-modal form with a combo box on it. Do Ctrl-X from the combo box. It DOESN'T work. Reopen the program. Do the Combo box first (works) and then find (doesn't work).http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1865801#1865801Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-09T06:54:32Z2009-12-09T06:54:32Zmghie: Thank you for the detailed analysis. I've been working for an hour trying to verify what you say. I do what you say in the first 4 paragraphs up to your horizontal line. You are correct that for the ComboBox on the main form, the shortcuts do not work. However, if you place two buttons on the main form that open up a modal and non-modal form. And on each form place a ComboBox. Then when opening the Combo Box on the modal form, the shortcuts DO work, but on the non-modal they don't. So it still does seem to have something to do with modal/non-modal forms.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1853295#1853295Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-07T13:56:29Z2009-12-07T13:56:29ZFrançois: That's an interesting thought. I'll take a look at some other possible interactions of the cut, copy and paste shortcuts. But the simple example, the way Cary suggested to set up, doesn't leave much room for external influences. Primarily, it does require the ActionList and a non-modal form for it to happen.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1853295#1853295Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-06T23:43:28Z2009-12-06T23:43:28Z... but I go back to my program and the problem is definitely there.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1853295#1853295Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-06T23:41:55Z2009-12-06T23:41:55ZAfter I started playing with it for the above comment, all of a sudden, it worked on the non-modal form. After some more playing around, it continued to work. I shut the program and rebuilt it. It still continued to work. This is now extremely strange to me. I have no idea what it could be? But Cary, you are at least a witness that something strange is happening.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1853295#1853295Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-06T23:33:04Z2009-12-06T23:33:04ZWhat you've seen on the TComboBox is the problem I'm trying to solve. For me and my version of your simple test, the TFindDialog also does not properly do Ctrl-X, Ctrl-C, Ctrl-V when it is called from either the Main Form or the Non-Modal form, but does work from a Modal Form. So I don't know why that is not happening for you.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1853295#1853295Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-05T21:13:33Z2009-12-05T21:13:33ZCary, see the update to my question. TMemo's and TEdits don't have the problem. Please try your test program with a TComboBox or a TFindDialog.http://stackoverflow.com/questions/1852976/how-can-i-get-shortcuts-to-work-in-a-non-modal-form-in-delphi/1853295#1853295Comment by lkessler on How Can I Get Shortcuts To Work in a Non-Modal Form in Delphilkessler2009-12-05T20:33:37Z2009-12-05T20:33:37ZYou are correct that this simple example worked. I'll have to either build the simple example up, or break my program down to see what is blocking me here.
In between my question and your answer, I did find others with the same problem at <a href="https://forums.codegear.com/thread.jspa?threadID=19946" rel="nofollow">forums.codegear.com/thread.jspa?threadID=19946/…</a> and I tried Peter Below's solution, but it didn't work for me. So that adds to your conclusion that something else is going on here.
I shall research further.
Thanks for answering. You've given me something to go on.http://stackoverflow.com/questions/1816088/how-to-get-my-solutions-into-windows-problem-reports-and-solutions/1817567#1817567Comment by lkessler on How To Get My Solutions Into Windows Problem Reports and Solutionslkessler2009-12-01T16:57:39Z2009-12-01T16:57:39ZThanks Larry for that added info. You've not pointed out what happened to OCA. It turned into WinQual. Booooo!http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphi/1822249#1822249Comment by lkessler on How Do I Add A TLabel To The Menu Bar in Delphi?lkessler2009-12-01T08:45:09Z2009-12-01T08:45:09ZThanks, Craig. So it actually is a label then. You technically have the correct answer (using Toolbar 2000), but I've already implemented it as an uncolored menu item, so I'll leave the accepted answer with Christopher. Didn't know you were here at StackOverflow. Love your Beyond Compare. I use it for comparing my versions, updating my website, and doing my backups. http://stackoverflow.com/questions/1816088/how-to-get-my-solutions-into-windows-problem-reports-and-solutions/1817567#1817567Comment by lkessler on How To Get My Solutions Into Windows Problem Reports and Solutionslkessler2009-11-30T04:48:41Z2009-11-30T04:48:41ZLarry: see my edit above.http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800604#1800604Comment by lkessler on How Should I Implement a Huge but Simple Indexed StringList in Delphi?lkessler2009-11-27T14:26:49Z2009-11-27T14:26:49Zdelphigeist: I'm looking forward to your tutorial on GPStructuredStorage. Have you compared its speed to a database?http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800604#1800604Comment by lkessler on How Should I Implement a Huge but Simple Indexed StringList in Delphi?lkessler2009-11-26T15:57:50Z2009-11-26T15:57:50Zgabr: In <a href="http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222725#222725" rel="nofollow" title="which embedded database to use in a delphi application">stackoverflow.com/questions/222699/…</a> you answered Firebird, and I commented agreeing with you. But I haven't tried Firebird yet. How would you compare it with the GPStructuredStorage solution for my particular problem?