User Argalatyr - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:29:04Z http://stackoverflow.com/feeds/user/18484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1600012/shuffle-text-file-delphi-source-or-anything-else/1600123#1600123 1 Answer by Argalatyr for Shuffle Text File Delphi Source or anything else Argalatyr 2009-10-21T11:04:17Z 2009-10-21T11:04:17Z <p>Rearranging a stringlist in memory is slow, so I'd shuffle an index list as an initial optimization.</p> <p>I'm guessing you chose stringlist for the convenience of loading from and saving to disk. One quicker approach would be to shuffle an index. Make an array of 10,000 integers, shuffle those, then use a temporary string variable to hold the swap element and rearrange your stringlist from top to bottom using the shuffled index values. </p> <p>Major rewrites will provide greater improvements, but this may help if your strings aren't too big.</p> http://stackoverflow.com/questions/1528568/embed-reportman-to-a-delphi-app/1528675#1528675 1 Answer by Argalatyr for embed reportman to a delphi app Argalatyr 2009-10-06T23:33:14Z 2009-10-06T23:33:14Z <p>The <a href="http://reportman.sourceforge.net/" rel="nofollow">Reportman project on SourceForge</a> includes <a href="http://reportman.sourceforge.net/doc/index.html" rel="nofollow">pretty clear documentation</a> that includes instructions for <a href="http://reportman.sourceforge.net/doc/delphicomp.html" rel="nofollow">installing the components into Delphi 5 through Delph 2009</a>. Are you having trouble with those components?</p> http://stackoverflow.com/questions/1489478/scrolling-issues-with-trichedit-in-delphi/1489553#1489553 4 Answer by Argalatyr for Scrolling issues with TRichEdit in Delphi Argalatyr 2009-09-28T21:49:04Z 2009-09-28T22:30:37Z <p>This should work, if you just want to scroll to the end of the richedit:</p> <pre><code>For Idx := 1 to 1000 do begin RichEdit.Lines.add(IntToStr(Idx)); RichEdit.SelStart := RichEdit.GetTextLen; SendMessage(RichEdit.handle, EM_SCROLLCARET,0,0); end; </code></pre> <p>If this is not what you wanted, please see my comment above and clarify your question.</p> http://stackoverflow.com/questions/1469422/retrieving-a-sharepoint-list-in-infopath-only-shows-first-100-records/1469468#1469468 3 Answer by Argalatyr for Retrieving a sharepoint list in Infopath only shows first 100 records Argalatyr 2009-09-24T02:02:26Z 2009-09-24T12:54:52Z <p><a href="http://support.microsoft.com/kb/892954" rel="nofollow">By design</a>, the query will only return the first page of results from the default view for the list. Change the <code>item limit</code> for the default view in SharePoint, and you'll change the returned values for InfoPath.</p> <p>EDIT (links from my comments, here for greater readability):</p> <p>Here are sources describing this fix in <a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/0205e1ba-f205-4c29-9192-a6ba8cdeb12e" rel="nofollow">MSDN forum (scroll to the bottom)</a>, a blog comment that <a href="http://blogs.msdn.com/infopath/archive/2007/01/15/populating-form-data-from-sharepoint-list-views.aspx#8514914" rel="nofollow">describes the SharePoint setting step-by-step</a>, one with <a href="http://www.getsharepoint.com/blogs/bf/Lists/Posts/Post.aspx?ID=29" rel="nofollow">a screen cap of the somewhat counter-intuitive interface</a>, and another describing <a href="http://blog-sharepoint.blogspot.com/2009/04/infopath-data-connection-not-returning.html" rel="nofollow">performance implications on the server side</a>.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1451495/questions-every-good-delphi-developer-should-be-able-to-answer/1451607#1451607 4 Answer by Argalatyr for Questions every good Delphi developer should be able to answer? Argalatyr 2009-09-20T18:03:34Z 2009-09-20T18:03:34Z <p>A basic understanding of threading, particularly the major pitfalls with respect to visual components so that they can be counted on to avoid them.</p> http://stackoverflow.com/questions/1451086/folder-structure-for-a-c-project/1451125#1451125 3 Answer by Argalatyr for Folder structure for a C project Argalatyr 2009-09-20T14:20:16Z 2009-09-20T14:20:16Z <p>Variants of this question have been asked before, so it make sense to look at those answers: </p> <p><a href="http://stackoverflow.com/questions/661307/recommendations-for-structuring-complex-applications-in-c">Recommendations for structuring complex applications in C</a></p> <p><a href="http://stackoverflow.com/questions/446017/popular-folder-structure-for-build">Popular folder structure for build</a></p> <p><a href="http://stackoverflow.com/questions/296643/projects-folder-structure-recommendation/296793#296793">Projects folder structure recommendation</a></p> <p><a href="http://stackoverflow.com/questions/222827/how-do-you-organize-your-version-control-repository#304036">How do you organize your version control repository?</a></p> http://stackoverflow.com/questions/1402380/encryption-library-for-delphi/1402528#1402528 1 Answer by Argalatyr for Encryption library for Delphi Argalatyr 2009-09-09T22:45:03Z 2009-09-09T22:45:03Z <p>I have not tried it in D2010, but <a href="http://www.cityinthesky.co.uk/cryptography.html" rel="nofollow">DCPcrypt</a> supposedly works in D2009.</p> http://stackoverflow.com/questions/1397563/getting-coordinates-and-names-for-a-driving-route/1397594#1397594 0 Answer by Argalatyr for Getting coordinates and names for a driving route Argalatyr 2009-09-09T04:54:13Z 2009-09-09T04:54:13Z <p>The <a href="http://code.google.com/apis/maps/documentation/services.html#XML%5FRequests" rel="nofollow">Google API documentation has a section on XML requests and parsing</a>. It's quite detailed, many options available.</p> http://stackoverflow.com/questions/1389544/sas-informat-datetime/1389636#1389636 0 Answer by Argalatyr for sas informat datetime Argalatyr 2009-09-07T14:19:27Z 2009-09-07T14:19:27Z <p><a href="http://support.sas.com/kb/24/621.html" rel="nofollow">This entry</a> from the <a href="http://support.sas.com/documentation/cdl/en/lrcon/61722/HTML/default/a002200738.htm" rel="nofollow">SAS knowledgebase</a> includes code for parsing and formatting datetime. Looks like SAS has a great online help system.</p> <p>The third message in <a href="http://groups.google.com/group/MedStats/browse%5Fthread/thread/f33b82e22190ba22" rel="nofollow">this exchange on Google groups</a> may be helpful as well. It talks about inputting datetime, and provides code.</p> <p>Your question is so hard to decipher, and I know so little about SAS, that's about all I can offer. Hope it helps.</p> http://stackoverflow.com/questions/1389420/search-for-embedded-email-and-phone-numbers/1389476#1389476 0 Answer by Argalatyr for Search for embedded email and phone numbers Argalatyr 2009-09-07T13:38:47Z 2009-09-07T13:38:47Z <p>You'll be able to get some, but don't expect to get most (especially if people are aware of the requirement, or get more than one chance to fill the form).</p> <p><strong>People are already really good at circumventing bot detection of email addresses</strong> by doing things like "myaddresses at hotmail dot com", and there are a million variations of this. Also, Phone numbers vary by region. </p> http://stackoverflow.com/questions/1387415/a-mock-code-editor-program-for-c-code/1387427#1387427 7 Answer by Argalatyr for A mock code editor program for C# code Argalatyr 2009-09-07T03:23:12Z 2009-09-07T03:23:12Z <p><a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">NotePad++</a> is excellent and free!</p> http://stackoverflow.com/questions/1386338/why-is-fileinfo-showing-an-extra-file-extension/1386353#1386353 0 Answer by Argalatyr for Why is FileInfo showing an extra file extension? Argalatyr 2009-09-06T18:34:37Z 2009-09-06T18:34:37Z <p>Windows has a "feature" that hides file extensions for known file types. Always turn that off or you'll find yourself creating problems like this.</p> http://stackoverflow.com/questions/1372046/plugin-for-vs-2008-with-structural-highlighting-support-syntax-delphi-prism/1385977#1385977 0 Answer by Argalatyr for Plugin for VS 2008 - With Structural Highlighting - Support Syntax Delphi Prism Argalatyr 2009-09-06T15:49:55Z 2009-09-06T15:49:55Z <p>There is no product that provides structural highlighting with syntax support for Delphi Prism under VS.</p> <p>Excellent question, which highlights an available development niche.</p> http://stackoverflow.com/questions/1382362/installing-rad-studio-2007-and-rad-studio-2010-in-same-machine/1382458#1382458 7 Answer by Argalatyr for Installing Rad Studio 2007 and Rad Studio 2010 in same machine Argalatyr 2009-09-05T04:26:04Z 2009-09-05T04:26:04Z <p>See <a href="http://stackoverflow.com/questions/139844/can-delphi-2009-be-installed-on-the-same-machine-as-delphi-2006-or-delphi-2007/147553#147553">this answer from Nick Hodges</a>.</p> <p>There is no problem with installing a newer version of Delphi/RAD Studio on a machine that has an older version. As Mason says, the reverse is not necessarily true.</p> http://stackoverflow.com/questions/1381754/where-can-i-find-good-beginner-level-delphi-tutorials-online/1381813#1381813 4 Answer by Argalatyr for Where can I find good beginner-level Delphi tutorials online? Argalatyr 2009-09-04T22:36:12Z 2009-09-04T22:36:12Z <p>Related (more or less) SO questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/39647/whats-the-best-delphi-book-for-a-newbie#39689">Learning Delphi</a></li> <li><a href="http://stackoverflow.com/questions/56222/learning-delphi">What’s the best Delphi book for a newbie?</a></li> <li><a href="http://stackoverflow.com/questions/1149238/delphi-pascal-resources-for-learning">Delphi = Pascal? Resources for Learning?</a></li> <li><a href="http://stackoverflow.com/questions/814648/delphi-what-are-your-dos-and-donts-tips">Delphi: What are your “Do’s and Don’ts” tips?</a></li> </ul> http://stackoverflow.com/questions/1367426/delphi-2006-refactoring-keyboard-mappings/1368037#1368037 5 Answer by Argalatyr for Delphi 2006 refactoring keyboard mappings Argalatyr 2009-09-02T14:26:40Z 2009-09-02T14:26:40Z <p>As you probably know, in D2006 you can find the settings under: Tools > Options > Editor Options > Key Mappings Also, there is the "Editor speedsetting" under: Tools > Options > Editor Options</p> <p>However, these don't give you direct control over the keymappings, they just let you choose a keymapping from among the installed Enhancement Modules. Per D2006 Help:</p> <blockquote> <p>Enhancement modules</p> <p>Enhancement modules are special packages that are installed and registered and use the keyboard binding features that can be developed using the Open Tools API. You can create enhancement modules that contain new keystrokes or apply new operations to existing keystrokes. </p> <p>Once installed, the enhancement modules are displayed in the Enhancement modules list box. Clicking the check box next to the enhancement module enables it and unchecking it disables it. Key mapping defined in an installed and enabled enhancement module overrides any existing key mapping defined for that key in the key mapping module which is currently in effect.</p> </blockquote> <p>Clearly, this is not a quick do-it-yourself setting.</p> <p><strong><a href="http://www.gexperts.org" rel="nofollow">GExperts</a></strong> has a feature supporting <a href="http://www.gexperts.org/tour/ide%5Fmenu%5Fshortcuts.html" rel="nofollow">IDE Menu Shortcuts</a> that support hotkey configuration of any IDE menu command, including refactoring commands.</p> http://stackoverflow.com/questions/1365290/firefox-3-5-hangs-when-rendering-table/1365383#1365383 3 Answer by Argalatyr for Firefox 3.5 "hangs" when rendering TABLE Argalatyr 2009-09-02T00:50:52Z 2009-09-02T01:46:24Z <p>As <a href="http://stackoverflow.com/users/31284/chetan-sastry">Chetan Sastry</a> notes, this is consistent with a known bug, <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=504987" rel="nofollow">listed in Bugzilla</a>.</p> <p>Apparently, this is due to deep regression during saving of session data. The <a href="http://kb.mozillazine.org/Browser.sessionstore.privacy%5Flevel" rel="nofollow">workaround is to disable saving of session data</a> by going to <code>about:config</code> and set <code>Browser.sessionstore.privacy_level</code> to 2 (which means no session data will be saved).</p> <p>To make this programming-related: you might consider working with the Mozilla crew to fix this!</p> http://stackoverflow.com/questions/1365370/ms-word-vs-for-end-user-help-document-for-a-web-based-application/1365416#1365416 0 Answer by Argalatyr for MS Word vs ??, for end-user help document for a Web-based application Argalatyr 2009-09-02T01:06:17Z 2009-09-02T01:06:17Z <p><a href="http://www.helpscribble.com/" rel="nofollow">HelpScribble</a> is a fine product at $99, will generate Help in many forms including html. Been a happy user for years.</p> http://stackoverflow.com/questions/1361613/how-can-i-interrogate-the-delphi-component-palette/1361775#1361775 5 Answer by Argalatyr for How can I interrogate the Delphi component palette? Argalatyr 2009-09-01T10:49:15Z 2009-09-01T10:49:15Z <p>Which version of Delphi? In recent versions, just click on the top of the palette and type "grid". Ctrl-Alt-P will focus the palette, and then you can just start typing.</p> <p>In RAD2009 and RS2010, do this and it'll find all components with "grid" anywhere in the title. </p> http://stackoverflow.com/questions/1355258/delphi-7-forms-anchors-not-working-in-vista/1359642#1359642 1 Answer by Argalatyr for Delphi 7 forms, anchors not working in Vista Argalatyr 2009-08-31T22:14:28Z 2009-08-31T22:26:37Z <p>As an alternative to the dynamic resizing I suggested, based on Hemant's suggestion I slapped together some working code (below). Just create a VCL forms application, drop on a <code>tpanel</code> that does not touch any edge of the form (by default, <code>Align = alNone</code>) and replace Unit1 with the code below. When you run it, you'll see 4 yellow panels surrounding the one initially added, and the central panel will resize with the form (as if all anchors were <code>true</code>).</p> <pre><code>unit Unit1; interface uses Windows, Classes, Controls, Forms, ExtCtrls, Graphics; type TPanelPos = (ppLeft, ppRight, ppTop, ppBottom); TForm1 = class(TForm) Panel1: TPanel; procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender: TObject); private { Private declarations } Panels : array[TPanelPos] of tpanel; public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); var PanelPos : TPanelPos; begin for PanelPos := ppLeft to ppBottom do begin Panels[PanelPos] := tpanel.Create(Form1); Panels[PanelPos].Parent := Form1; Panels[PanelPos].Color := clYellow; case PanelPos of ppLeft : begin Panels[PanelPos].Align := alLeft; Panels[PanelPos].Width := Panel1.Left - 1; end; ppRight : begin Panels[PanelPos].Align := alRight; Panels[PanelPos].Width := Form1.Width - Panel1.Left - Panel1.Width; end; ppTop : begin Panels[PanelPos].Align := alTop; Panels[PanelPos].Height := Panel1.Top - 1; end; ppBottom : begin Panels[PanelPos].Align := alBottom; Panels[PanelPos].Height := Form1.Height - Panel1.Top - Panel1.Height; end; end; Panel1.Align := alClient; end; end; procedure TForm1.FormDestroy(Sender: TObject); var PanelPos : TPanelPos; begin for PanelPos := ppLeft to ppBottom do Panels[PanelPos].Free; end; end. </code></pre> http://stackoverflow.com/questions/1355258/delphi-7-forms-anchors-not-working-in-vista/1356719#1356719 2 Answer by Argalatyr for Delphi 7 forms, anchors not working in Vista Argalatyr 2009-08-31T09:49:09Z 2009-08-31T10:15:16Z <p>Before anchors were introduced in Delphi 4, we resized components dynamically to achieve the same effect. You can easily move/adjust the components in the form's <code>onresize</code> event. </p> <p>Setting the form's <code>doublebuffered</code> property to <code>true</code> may reduce flicker, by buffering the <code>paint</code> method. I recall we used to have to implement that ourselves, too!</p> http://stackoverflow.com/questions/1355258/delphi-7-forms-anchors-not-working-in-vista/1355620#1355620 0 Answer by Argalatyr for Delphi 7 forms, anchors not working in Vista Argalatyr 2009-08-31T02:55:51Z 2009-08-31T03:14:27Z <p>Try running the program in XP compatibility mode on Vista. Programs compiled by Delphi 7 may not fully support Vista native mode (no surprise there, really).</p> http://stackoverflow.com/questions/1352192/why-dont-more-c-programs-embed-perl/1352992#1352992 -1 Answer by Argalatyr for Why don't more C programs embed Perl? Argalatyr 2009-08-30T03:18:09Z 2009-08-30T03:18:09Z <p>Many programmers know how to obfuscate C very effectively, without needing to resort to Perl. </p> http://stackoverflow.com/questions/1352814/how-do-i-evenly-pick-every-m-value-from-an-array-when-m-is-a-decimal/1352823#1352823 3 Answer by Argalatyr for How do I evenly pick every m value from an array, when m is a decimal? Argalatyr 2009-08-30T01:38:46Z 2009-08-30T01:38:46Z <p>you'll need to decide whether the specification "k", or "evenly", is more important, because when k does not divide n, one will have to be sacrificed.</p> http://stackoverflow.com/questions/1349514/more-efficient-way-to-plot-x-axis-points/1349568#1349568 0 Answer by Argalatyr for More efficient way to plot x-axis points? Argalatyr 2009-08-28T21:51:57Z 2009-08-28T21:51:57Z <p>Are your bins always of equal size? In your example, all share range=10. If so, then you could do: </p> <pre><code>binspacing = overall range / (numberofbins-1); </code></pre> <p>and the position of bin n would be the x-axis position of numbers[0] plus n times the binspacing.</p> http://stackoverflow.com/questions/1344286/resize-desktop-icons/1344450#1344450 0 Answer by Argalatyr for Resize desktop icons Argalatyr 2009-08-28T00:31:12Z 2009-08-28T00:31:12Z <p>After setting that registry value, you need to flush the icon cache, thus:</p> <pre><code>::SendMessage(HWND_BROADCAST,WM_SETTINGCHANGE,SPI_SETNONCLIENTMETRICS,NULL); </code></pre> http://stackoverflow.com/questions/1342859/error-msb4040-there-is-no-target-in-the-project-when-using-msbuilddelphi2009/1343161#1343161 0 Answer by Argalatyr for "ERROR MSB4040 There is no target in the project" when using msbuild+Delphi2009 Argalatyr 2009-08-27T19:01:39Z 2009-08-27T19:01:39Z <p>Have you set an environment variable named "BDS", equal to your RAD Studio folder?</p> http://stackoverflow.com/questions/1334633/tiwmenu-and-tiwregion-hides-submenus/1338354#1338354 1 Answer by Argalatyr for TIWMenu and TIWRegion hides Submenus Argalatyr 2009-08-27T01:02:53Z 2009-08-27T01:02:53Z <p>Could you be more specific about <strong>your setup</strong> (e.g. Windows version) and <strong>steps to reproduce</strong>? Sounds like something wrong in how you've set this up.</p> <p><strong>I can't reproduce this problem</strong>, either in BDS2006 (IW ver 8) nor in RAD2009 (IW ver 10). </p> <p>I started with a standalone IW application, dropped in a TIWMenu (Align=alTop), TIWRegion (Align=alClient), and TMainMenu (with a few menu and submenu items), and attached the TIWMenu to the TMainMenu. Running this under Win XP sp3, I see the menu and submenu items just fine (over the IWRegion).</p> http://stackoverflow.com/questions/1332033/performance-impact-of-gesture-recognition-in-delphi 2 Performance impact of gesture recognition in Delphi? Argalatyr 2009-08-26T02:11:44Z 2009-08-26T06:41:50Z <p>Delphi 2010 reportedly supports gestures for user interaction (mouse or touch interface), primarily through the Windows 7 gesture API.</p> <p>Will supporting gestures inherently incur a major performance hit? In other words, is most of the gesture-related processing due to detection, or response to, the gesture? By "response to", I mean the animations related to inertia, etc.</p> <p>Just wondering whether an already graphically-intensive application is going to take a big performance hit if I add gesture support. Hope I'll get a chance to give RAD2010 a spin soon and answer this question myself...</p> <p>Thanks for any insights from those who might have played with it already.</p> http://stackoverflow.com/questions/1316974/wizard-how-to-check-previous-tabsheet-when-moving-from-page-to-page-in-a-pageco/1325764#1325764 1 Answer by Argalatyr for [Wizard] How to check previous tabsheet when moving from page to page in a pagecontrol? Argalatyr 2009-08-25T02:26:41Z 2009-08-25T02:26:41Z <p>Contrary to Nat's answer, the <code>tpagecontrol.onchanging</code> event will work just fine if you use the right methods to change pages:</p> <p>Create a VCL forms application, and drop on a <code>TPageControl</code>, set Align property to alTop and leave some room below. Right-click on the PageControl and add some pages, setting <code>TabVisible:=false</code> for each. Now add a couple of buttons below. Attach the PageControl's <code>onchanging</code> event, and the buttons' <code>onclick</code> events, to the respective code below:</p> <pre><code>procedure TForm1.Button1Click(Sender: TObject); begin if PageControl1.ActivePageIndex &lt; PageControl1.PageCount - 1 then PageControl1.SelectNextPage(true, false); end; procedure TForm1.Button2Click(Sender: TObject); begin if PageControl1.ActivePageIndex &gt; 0 then PageControl1.SelectNextPage(false, false); end; procedure TForm1.PageControl1Changing(Sender: TObject; var AllowChange: Boolean); begin showmessage(format('now leaving page number %d', [PageControl1.ActivePageIndex])); end; </code></pre> <p>This works as expected (BDS2006, RAD2009).</p> http://stackoverflow.com/questions/1634258/any-functions-to-create-zip-file-of-directory-file-on-vista-with-delphi-2009 Comment by Argalatyr on any functions to create zip file of directory/file on vista with delphi 2009 Argalatyr 2009-10-27T23:51:40Z 2009-10-27T23:51:40Z This question is very similar - you may find some useful answers: <a href="http://stackoverflow.com/questions/1082735/creating-compressed-zipped-folder-using-delphi" rel="nofollow" title="creating compressed zipped folder using delphi">stackoverflow.com/questions/1082735/&hellip;</a> http://stackoverflow.com/questions/1606033/is-findfirst-findnext-findclose-thread-safe-in-delphi/1606051#1606051 Comment by Argalatyr on Is FindFirst,FindNext & FindClose Thread safe in delphi Argalatyr 2009-10-23T00:06:44Z 2009-10-23T00:06:44Z edited to address Rob's comment http://stackoverflow.com/questions/326159/best-reason-not-to-hire-a-phd/326177#326177 Comment by Argalatyr on Best reason not to hire a PhD? Argalatyr 2009-10-19T20:35:49Z 2009-10-19T20:35:49Z Hmmm... are you familiar with the term &quot;non sequitur&quot;? I did not say anything about hiring people with no education, nor did I endorse the position of discriminating against PhD's. Perhaps you should re-read the Q and my A? http://stackoverflow.com/questions/1544360/delphi-how-to-have-non-contiguous-subrange-enumeration-type/1546852#1546852 Comment by Argalatyr on Delphi: How to have non-contiguous subrange enumeration type? Argalatyr 2009-10-11T12:19:22Z 2009-10-11T12:19:22Z You're right, of course. I think the applicable term is &quot;oxymoron&quot;, not a pejorative but simply descriptive of a phrase that contains contradictory terms. http://stackoverflow.com/questions/1549145/case-insensitive-pos/1549383#1549383 Comment by Argalatyr on case insensitive Pos Argalatyr 2009-10-11T04:31:10Z 2009-10-11T04:31:10Z Doesn't this exacerbate the problem about which the OP asked? This will do the uppercase conversion inside the loop, perhaps multiple times. http://stackoverflow.com/questions/1544360/delphi-how-to-have-non-contiguous-subrange-enumeration-type Comment by Argalatyr on Delphi: How to have non-contiguous subrange enumeration type? Argalatyr 2009-10-09T20:27:59Z 2009-10-09T20:27:59Z Your last example is not a subrange type (contrary to your question title). You could declare TReceiptCode = (rcspace, rcA, rcB, rcC, rcD, rcE, rcF, rcR); ReceiptCodeStr : array of TReceiptCode = (' ', 'A', 'B', 'C', 'D', 'E', 'F', 'R'); http://stackoverflow.com/questions/1539604/how-can-i-write-a-delphi-program-to-control-the-cpu-fan-speed-and-monitor-the-tem/1540393#1540393 Comment by Argalatyr on How can I write a Delphi program to control the CPU fan speed and monitor the temperature? Argalatyr 2009-10-08T22:23:26Z 2009-10-08T22:23:26Z any idea how uniform the motherboard support for WMI is these days? I don't know the answer - just wondering. http://stackoverflow.com/questions/1516082/delphi-virtualtreeview-onafteritempaint-issue-when-scrolling Comment by Argalatyr on Delphi VirtualTreeview.OnAfterItemPaint issue when scrolling? Argalatyr 2009-10-05T06:37:30Z 2009-10-05T06:37:30Z @mghie: Thanks for clarifying. http://stackoverflow.com/questions/1516082/delphi-virtualtreeview-onafteritempaint-issue-when-scrolling Comment by Argalatyr on Delphi VirtualTreeview.OnAfterItemPaint issue when scrolling? Argalatyr 2009-10-04T17:13:58Z 2009-10-04T17:13:58Z Do you have this connected to every column, or just one? If every column, then won't you be writing the same string in all columns, and they'll overlap? http://stackoverflow.com/questions/326159/best-reason-not-to-hire-a-phd/326177#326177 Comment by Argalatyr on Best reason not to hire a PhD? Argalatyr 2009-10-03T22:30:59Z 2009-10-03T22:30:59Z Interesting question. Clearly no - but my original point was that it's the employer's loss in the long run. In the short run, it's bad for the employee. All the badness stems from the employer's narrow mind-set. http://stackoverflow.com/questions/1492108/bpl-load-in-intraweb/1492136#1492136 Comment by Argalatyr on "bpl" load in IntraWeb Argalatyr 2009-09-29T13:16:12Z 2009-09-29T13:16:12Z Amir, please delete this answer - it is not really an answer, and this is an English-only site. http://stackoverflow.com/questions/1492108/bpl-load-in-intraweb Comment by Argalatyr on "bpl" load in IntraWeb Argalatyr 2009-09-29T13:15:01Z 2009-09-29T13:15:01Z I've tried to improve your code formatting, but I still don't understand your question. Could you edit it to make it more clear what you are trying to do, and include any error messages you are getting? Falo portugu&#234;s s&#243; um pouquinho. http://stackoverflow.com/questions/270350/lambda-expressions-in-delphi-prism-oxygene Comment by Argalatyr on Lambda Expressions in Delphi Prism/Oxygene Argalatyr 2009-09-29T09:51:34Z 2009-09-29T09:51:34Z Steve or Barry: someone who confirmed this as a bug in a specific version of Delphi should edit the question to specify. Cary's update makes this a version-specific issue. http://stackoverflow.com/questions/1489793/delete-this-people Comment by Argalatyr on DELETE THIS PEOPLE Argalatyr 2009-09-29T00:35:46Z 2009-09-29T00:35:46Z Interesting what I learned by searching for &quot;pin cracking pause 4 tries&quot; and similar strings. Some systems will allow 4 unsuccessful attempts, then you must log in with a know username/password. Of course, I have no idea whether this applies to the current situation - I just thought it was interesting. Maybe not news to the rest of you. http://stackoverflow.com/questions/1489830/efficient-way-to-determine-number-of-digits-in-an-integer/1489862#1489862 Comment by Argalatyr on Efficient way to determine number of digits in an integer Argalatyr 2009-09-28T23:35:50Z 2009-09-28T23:35:50Z Matt: this is not an answer. Perhaps you don't have enough rep to comment, but you shouldn't post comments as answers. I'm not down-voting because you're new, but you should read the FAQ linked at the top of the page if you haven't already.