User Mason Wheeler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T15:53:13Z http://stackoverflow.com/feeds/user/32914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916084/how-do-i-get-the-handle-for-locking-a-file-in-delphi/1916125#1916125 6 Answer by Mason Wheeler for How do I get the handle for locking a file in Delphi? Mason Wheeler 2009-12-16T17:07:05Z 2009-12-16T17:07:05Z <p>It's pretty simple, actually. TFileStream has a Handle property that gives you the Windows handle to the file. And if you're using some other type of stream, there's no underlying file to work with.</p> http://stackoverflow.com/questions/1913529/ensuring-functions-within-a-webservice-are-secure-in-delphi/1914767#1914767 2 Answer by Mason Wheeler for Ensuring functions within a webservice are secure in delphi Mason Wheeler 2009-12-16T13:52:04Z 2009-12-16T13:52:04Z <p>Having it place a SQL query is inherently insecure since, as you pointed out, the client could find a way to mess with it. A better idea would be to place the query inside a stored procedure, and then allow the client to call the stored procedure. Make two of the parameters to the procedure a username and password, or something along those lines, that you can use to identify the user and decide what he's allowed to see.</p> http://stackoverflow.com/questions/1903664/what-bookkeeping-data-does-a-delphi-dynamic-array-contain 3 What bookkeeping data does a Delphi dynamic array contain? Mason Wheeler 2009-12-14T21:35:24Z 2009-12-15T01:41:33Z <p>Here's a simple program to check memory allocation. Checking before and after values with Task Manager suggests that each dynamic array takes up 20 bytes of memory at size = 1. The element size is 4, which means 16 bytes of overhead for bookkeeping data.</p> <p>From looking through system.pas, I can find an array length field at -4 bytes, and a reference count at -8 bytes, but I can't seem to find any references to the other 8. Anyone know what they do?</p> <p>Sample program:</p> <pre><code>program Project1; {$APPTYPE CONSOLE} type TDynArray = array of integer; TLotsOfArrays = array[1..1000000] of TDynArray; PLotsOfArrays = ^TLotsOfArrays; procedure allocateArrays; var arrays: PLotsOfArrays; i: integer; begin new(arrays); for I := 1 to 1000000 do setLength(arrays^[i], 1); end; begin readln; allocateArrays; readln; end. </code></pre> http://stackoverflow.com/questions/1903723/problem-adding-lots-of-strings-to-a-tstringlist/1903770#1903770 2 Answer by Mason Wheeler for Problem adding lots of strings to a TStringList Mason Wheeler 2009-12-14T21:55:14Z 2009-12-14T21:55:14Z <p>What Delphi version are you using? Some older versions had a bug in the memory manager that can cause an access violation when trying to reallocate an array to a size that's too large.</p> <p>Try adding <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">FastMM4</a> to your project to replace the old memory manager and see if that helps.</p> <p>Also, you're probably better off keeping the list in an external file. Yes, it's another file, but it also means that you can change the list without having to recompile the entire program. This also makes creating (and distributing!) updates easier.</p> http://stackoverflow.com/questions/1900457/delphi-creating-controls-before-form-create-is-run/1900834#1900834 2 Answer by Mason Wheeler for Delphi - Creating controls before form Create is run? Mason Wheeler 2009-12-14T13:08:59Z 2009-12-14T16:23:06Z <p>From your comment that you're getting an AV when placing it at design time, that means there's a problem with the control itself and it hasn't been properly ported forward. To reproduce it at runtime under controlled circumstances, you need to write a little program like this:</p> <p>Make a new VCL app with a single form. Place a TButton on the form. On the button's OnClick, do something like this:</p> <pre><code>var newButton: TLMDButton; begin newButton := TLMDButton.Create(self); newButton.Parent := self; //assign any other properties you'd like here end; </code></pre> <p>Put a breakpoint on the constructor and trace into it until you can find what's causing the access violation.</p> <p><strong>EDIT</strong>: OK, from looking at the comments, I think we found your problem!</p> <p>A form's subcontrols are initialized by reading the DFM file. When you changed your control to a TCustomForm, did you provide a new DFM to define it? If not, you need to override the form's constructor and create the controls and define their properties manually. There's no "magic" that will initialize it for you.</p> http://stackoverflow.com/questions/1898560/why-does-building-with-runtime-packages-make-the-exe-file-smaller/1898806#1898806 9 Answer by Mason Wheeler for Why does building with runtime packages make the EXE file smaller? Mason Wheeler 2009-12-14T03:50:43Z 2009-12-14T03:50:43Z <p>When you build with runtime packages, the VCL and RTL are loaded from the packages and so their code doesn't have to be linked into your EXE. So the EXE gets smaller, but the total installation gets larger since you can't use smart linking to reduce the size of the packages.</p> <p>As you've already noticed, using packages causes trouble for memory leak tracing, and it also causes trouble for debuggging. It's generally only worthwhile to use them if you're using plugins that will also need runtime packages.</p> http://stackoverflow.com/questions/1897663/how-to-get-enumeration-type-into-stringlist/1897771#1897771 2 Answer by Mason Wheeler for How to get enumeration type into stringlist? Mason Wheeler 2009-12-13T21:15:19Z 2009-12-14T03:40:36Z <p>To be able to use a string variable, you'd need to register the TypeInfo with the string in some sort of lookup table, and then look it up.</p> <p>To get all the enumerated type names in your list, you can do something like this:</p> <pre><code>procedure LoadAllEnumValuesIntoStringList(enum: PTypeInfo; list: TStringList); var data: PTypeData; i: integer; begin list.clear; data := GetTypeData(GetTypeData(enum)^.BaseType^); for i := 0 to data.MaxValue do list.add(GetEnumName(enum, i)); end; </code></pre> http://stackoverflow.com/questions/1896538/delphi-onclick-problem-with-multiple-units/1896587#1896587 1 Answer by Mason Wheeler for Delphi OnClick Problem with Multiple Units Mason Wheeler 2009-12-13T13:57:10Z 2009-12-13T13:57:10Z <p>Are you sure the first example works? Neither of these should compile.</p> <p>An OnClick handler is a TNotifyEvent, which is defined as</p> <pre><code>procedure(Sender: TObject) of object; </code></pre> <p>That means that it has to be a method of an object (such as a form), and the method signature has to be a procedure that takes a single TObject parameter. Your procedure MakeBtn2 isn't an object method, and neither of them takes Sender: TObject.</p> http://stackoverflow.com/questions/1893469/could-free-pascal-benefit-of-something-like-apache-maven/1893504#1893504 0 Answer by Mason Wheeler for Could Free Pascal benefit of something like Apache Maven? Mason Wheeler 2009-12-12T13:52:22Z 2009-12-12T13:52:22Z <p>Sounds like an interesting plan, but the Delphi community (and FPC even more so, I'd imagine!) values libraries as source far more than precompiled libraries. The general consensus is that anyone who uses a binary-only library is a fool, for two reasons: You can't fix any bugs you find in it, and compiler changes will break compatibility.</p> http://stackoverflow.com/questions/1893125/how-can-a-shared-event-handler-know-which-controls-event-its-handling/1893199#1893199 3 Answer by Mason Wheeler for How can a shared event handler know which control's event it's handling? Mason Wheeler 2009-12-12T12:00:58Z 2009-12-12T12:00:58Z <p>Yes. Every normal method call includes a hidden "Self" that refers to the object. But in an event handler, "Self" is the form, not the button. The button is Sender, and you'll have to typecast it using something like <code>Sender as TButton</code>.</p> http://stackoverflow.com/questions/1877906/generic-containers-in-delphi/1878025#1878025 3 Answer by Mason Wheeler for Generic Containers in Delphi Mason Wheeler 2009-12-10T01:05:18Z 2009-12-10T01:05:18Z <p>This looks like a bug in the compiler. I'm able to reproduce this under Delphi 2010. Please report it in QC.</p> <p>The workaround's simple enough, though. Declare </p> <pre><code>TRecList = class(TList&lt;TItemRec&gt;); </code></pre> <p>instead, and it works.</p> <p>As for <code>TObjectList&lt;T&gt;</code>, it's exactly the same as <code>TList&lt;T&gt;</code> except that it will only accept objects, and it adds the OwnsObjects property. If OwnsObjects is set to True, then when you free the list, or call the <code>Clear</code> or <code>Delete</code> methods, it will free all the objects removed from the list.</p> http://stackoverflow.com/questions/1876879/records-in-delphi/1876943#1876943 4 Answer by Mason Wheeler for Records in Delphi Mason Wheeler 2009-12-09T21:16:48Z 2009-12-09T21:16:48Z <p>For 1 and 2: records are value types, while classes are reference types. They're allocated on the stack, or directly in the memory space of any larger variable that contains them, instead of through a pointer, and automatically cleaned up by the compiler when they go out of scope. </p> <p>As for your third question, a <code>TList&lt;TMyRecord&gt;</code> internally declares an <code>array of TMyRecord</code> for storage space. All the records in it will be cleaned up when the list is destroyed. If you want to delete a specific one, use the <code>Delete</code> method to delete by index, or the <code>Remove</code> method to find and delete. But be aware that since it's a value type, everything you do will be making copies of the record, not copying references to it.</p> http://stackoverflow.com/questions/1866180/how-do-i-create-an-instance-from-a-string-that-provides-the-class-name/1866501#1866501 5 Answer by Mason Wheeler for How do I create an instance from a string that provides the class name? Mason Wheeler 2009-12-08T11:57:01Z 2009-12-08T11:57:01Z <p>The TRipple constructor isn't being called because it's not virtual.</p> <p>When you're constructing an object from a class reference, the compiler doesn't know what the final class type is yet, so it can't assign the right constructor in code. All it knows is that it's descending from TPersistent, so it writes out code to call the constructor for TPersistent, which is TObject.Create. If you want to call the right constructor, you have to do it virtually.</p> <p>There's already a virtual constructor defined for reading classes from a class name. It's defined in TComponent. Make TRipple descend from TComponent and override its virtual constructor (the one that takes an Owner as a parameter) and then your code will work.</p> http://stackoverflow.com/questions/1858917/is-it-safe-to-cast-generics-in-delphi/1860131#1860131 2 Answer by Mason Wheeler for Is it safe to cast generics in Delphi? Mason Wheeler 2009-12-07T13:55:05Z 2009-12-07T13:55:05Z <p>No, there's no "base TDictionary class that all TDictionary versions descend from". The parameter types are part of the class type. The parent class of <code>TDictionary&lt;T, U&gt;</code> is <code>TEnumerable&lt;TPair&lt;T, U&gt;&gt;</code>, and the parent class of that is <code>TObject</code>.</p> <p>This is a bit annoying, but it's necessary to preserve type safety. Lets say you had a <code>TDictionary&lt;string, TMyObject&gt;</code>, and you passed it to a function that's expecting a <code>TDictionary&lt;string, TObject&gt;</code>. You might expect this to work, since you can pass a TMyObject to a TObject parameter. But it doesn't, and there's a good reason.</p> <p>The compiler can't check the actual type inside the receiving function at compile-time, so there's nothing stopping the routine from taking your dictionary and calling <code>.Add(Self.Name, Self)</code>, where Self is a TForm (or anything else) and not a TMyObject. Since all object references are sizeof(pointer) in size, this would seem to work just fine, but when you get it back in your code that knows what the second parameter is supposed to be, you've got a big problem.</p> <p>There are ways to make Generics work as you'd expect without trashing type safety, by placing constraints on the receiving function, but Delphi doesn't currently implement it. Delphi Prism does, and I've been trying to get the Delphi team to implement it in the next release, but we'll have to see...</p> http://stackoverflow.com/questions/1857288/delphi-records-and-c-structs/1857320#1857320 5 Answer by Mason Wheeler for delphi records and c structs Mason Wheeler 2009-12-07T01:39:34Z 2009-12-07T01:39:34Z <p>No, there are no hidden fields, and Delphi records and C structs can be mapped to each other 1:1, with a few caveats:</p> <ul> <li><p>Don't use any data type C doesn't understand. This includes objects, dynamic arrays, and Delphi strings.</p></li> <li><p>C and Delphi sometimes have different ideas about how to byte-align fields. Test your records and verify that they work on the C side. If they don't, try using <strong>packed record</strong> instead of <strong>record</strong>.</p></li> <li><p>When passing a pointer to a record from C to Delphi or vice versa, make sure that the side receiving it doesn't try to free or reallocate the memory. It belongs to the memory manager that created it.</p></li> </ul> http://stackoverflow.com/questions/1849303/pre-sorting-analysis-algorithm 7 Pre-sorting analysis algorithm? Mason Wheeler 2009-12-04T19:59:21Z 2009-12-06T23:00:29Z <p>It's a well-known isssue with Quicksort that when the data set is in or almost in sort order, performance degrades horribly. In this case, Insertion Sort, which is normally very slow, is easily the best choice. The question is knowing when to use which.</p> <p>Is there an algorithm available to run through a data set, apply a comparison factor, and return a report on how close the data set is to being in sort order? I prefer Delphi/Pascal, but I can read other languages if the example isn't overly complex.</p> http://stackoverflow.com/questions/1847801/library-to-parse-sql-statements/1848031#1848031 5 Answer by Mason Wheeler for Library to parse SQL statements. Mason Wheeler 2009-12-04T16:19:16Z 2009-12-04T16:19:16Z <p>Take a look at <a href="http://www.devincook.com/goldparser/" rel="nofollow">Gold Parser.</a> It's got a Delphi version available, and SQL grammar on the download page.</p> http://stackoverflow.com/questions/1835161/looking-for-a-local-database-for-d2009 5 Looking for a local database for D2009+ Mason Wheeler 2009-12-02T19:15:45Z 2009-12-04T00:08:39Z <p>I'm trying to update a legacy app that does all its data storage in a hacked-together system of BDE Paradox files. The program works pretty well, under certain narrow conditions, but it has serious performance issues.</p> <p>I'd like to try and improve things by updating to a better database system. What I need is a local database, preferably one where I can store the whole thing in one file instead of the current "one or more files per table" system. It has to support foreign-key relationships and table indexing, and it has to be able to return a result quickly from a query of a table with hundreds of thousands of elements.</p> <p>This last one is important. The current system is indexed, but that doesn't seem to matter much. All the queries seem to run in O(N) time where N is the total size of the table, and it gets horrifically slow when the tables start to get large. I'm not really sure why, but that has to go away.</p> <p>And it has to work under D2009 and later. Can anyone provide some recommendations?</p> http://stackoverflow.com/questions/1842923/how-to-do-word-wrap-in-a-devexpress-tcxgrid 3 How to do word wrap in a DevExpress TcxGrid? Mason Wheeler 2009-12-03T21:06:47Z 2009-12-03T22:09:47Z <p>I've got a long line of text that would be a lot easier to view if it would just word wrap around multiple lines, but I can't seem to find the option for it. Does anyone know how to enable word-wrap functionality?</p> http://stackoverflow.com/questions/1839217/how-to-implement-a-callback-method-within-dll-delphi-tjvpluginmanager-tjvplu/1839294#1839294 2 Answer by Mason Wheeler for How to implement a callback method within DLL (Delphi / TJVPluginManager + TJvPlugin) Mason Wheeler 2009-12-03T11:17:04Z 2009-12-03T11:17:04Z <p>The basic concept is pretty simple. A callback method is a pointer to a method that you pass to some code so that it can call it at a specific time to allow you to customize its behavior. If you have any experience at all with Delphi, you're already familiar with callback methods under a different name: "event handlers".</p> <p>Try something like this in your plugin:</p> <pre><code>type TMyEvent = procedure(param1, param2, param3: integer) of object; procedure AddCallback(callback: TMyEvent); </code></pre> <p>This procedure would take the TMyEvent method pointer passed in and store it somewhere. Let's say in a variable called FCallback. When the time comes for it to call your app, the code would look like this:</p> <pre><code>if assigned(FCallback) then FCallback(param1, param2, param3); </code></pre> <p>You would call it from your app like this, when you're setting up the plugin:</p> <pre><code>MyPlugin.AddCallback(self.callbackProc); </code></pre> <p>Sometimes you'll need to put an @ in front of it (@self.callbackProc) so the compiler can tell that it's a method pointer and not a method call, but this is not always necessary.</p> http://stackoverflow.com/questions/1734989/is-there-a-hex-editor-component-for-recent-delphi-versions 1 Is there a hex editor component for recent Delphi versions? Mason Wheeler 2009-11-14T17:44:24Z 2009-12-02T19:26:35Z <p>I've been able to find a few hex controls by searching online, but none that will compile under Unicode. Does anyone know if there is one available?</p> http://stackoverflow.com/questions/1823027/is-there-a-static-constrctors-destructors-help-topic/1823304#1823304 2 Answer by Mason Wheeler for Is there a Static Constrctors/Destructors Help topic Mason Wheeler 2009-12-01T00:26:10Z 2009-12-01T00:26:10Z <p>Allen Bauer wrote a few blog posts about them and how they work:</p> <p><a href="http://blogs.embarcadero.com/abauer/2009/09/04/38899" rel="nofollow">http://blogs.embarcadero.com/abauer/2009/09/04/38899</a></p> <p><a href="http://blogs.embarcadero.com/abauer/2009/09/03/38898" rel="nofollow">http://blogs.embarcadero.com/abauer/2009/09/03/38898</a></p> <p><a href="http://blogs.embarcadero.com/abauer/2009/05/29/38888" rel="nofollow">http://blogs.embarcadero.com/abauer/2009/05/29/38888</a></p> http://stackoverflow.com/questions/1815669/any-free-shaped-button-components-available 1 Any free shaped button components available? Mason Wheeler 2009-11-29T14:26:39Z 2009-11-30T11:49:22Z <p>I recently downloaded the source to an "open source" project that unfortunately has dependencies on a bunch of expensive proprietary libraries, including <a href="http://www.woll2woll.com/1stClass.html" rel="nofollow">Infopower 1stClass</a>, which it seems to use primarily for TfcShapeButton, a component that acts like a standard TBitBtn, except that you can give it an arbitrary polygonal shape by describing a list of points. The DFM code looks like this:</p> <pre><code> PointList.Strings = ( '8,29' '18,19' '28,29' '20,37' '16,37') </code></pre> <p>I'm trying to clean this project up and make it look like a real open-source project that anyone can download and build without having to shell out hundreds of dollars for component libraries, but I'd like to change the look and feel as little as possible. So does anyone know of an open-source shape button component like this that will work with D2009 and up?</p> http://stackoverflow.com/questions/1811615/how-to-share-variables-among-libraries-in-delphi-2009/1811703#1811703 1 Answer by Mason Wheeler for How to share variables among libraries in Delphi 2009? Mason Wheeler 2009-11-28T05:41:15Z 2009-11-28T05:41:15Z <p>It seems that by "libraries" you mean BPL Packages, so here are the guidelines:</p> <p>Each BPL, when it gets loaded, loads all the units in it. No unit can be loaded more than once. That means that if more than one package needs access to one of the globals, then it has to either be in one package that the other(s) have in their <strong>Requires</strong> list, or in a separate package that all the others Require.</p> <p>As for static vs. dynamic loading, if your program absolutely needs it, make it statically linked. Dynamic loading is for optional features, such as plug-ins. (If you want to go that route, take a look at JVPlugin in the JVCL. It's a very useful system.)</p> http://stackoverflow.com/questions/1811654/delphi-2010-inlining-useless/1811677#1811677 7 Answer by Mason Wheeler for Delphi 2010 inlining useless?! Mason Wheeler 2009-11-28T05:31:18Z 2009-11-28T05:31:18Z <p>There's a compiler option for automatic inlining of short routines. In Project Options, under Delphi Compiler -> Compiling -> Code Generation, turn "Code inlining control" to Auto. Be aware, though, that this should only be on a release build, since inlined code is difficult to debug.</p> <p>Also, you said that you don't mind making your program larger as long as it gets faster, but that often inlining makes it slower. You should be aware that that might be related. The larger your compiled code is, the more instruction cache misses you'll have, which slows down execution.</p> <p>If you really want to speed your program up, run it through a profiler. I recommend <a href="http://delphitools.info/samplingprofiler/" rel="nofollow">Sampling Profiler</a>, which is free, is made to work with Delphi code (including 2010) and doesn't slow down your execution. It'll show you a detailed report of what code you're actually spending the most time executing. Once you've found that, you can focus on the bottlenecks and try to optimize them.</p> <p>Hope this helps, and welcome to StackOverflow! Feel free to come back with any more questions in the future. :)</p> http://stackoverflow.com/questions/1810055/which-is-the-correct-text-comparison-method-for-an-international-application-an/1810099#1810099 2 Answer by Mason Wheeler for which is the correct text comparison method for an international application...AnsiCompareText or CompareText? Mason Wheeler 2009-11-27T18:23:49Z 2009-11-27T18:23:49Z <p>Seems to me that the correct comparison is the one that gives the same results as your database, if only for consistency's sake. Use AnsiCompareText and then you won't have to worry about mismatching results.</p> http://stackoverflow.com/questions/1809339/what-do-you-use-as-wpf-alternative-for-win32-delphi/1809374#1809374 3 Answer by Mason Wheeler for What do you use as WPF alternative for Win32 Delphi? Mason Wheeler 2009-11-27T15:33:45Z 2009-11-27T15:33:45Z <p>The Delphi VCL still works just fine for me, and without WPF's infamous "learning cliff".</p> http://stackoverflow.com/questions/712011/delphi-parameter-object-is-improperly-defined-inconsistent-or-incomplete-infor 1 Delphi: "Parameter object is improperly defined. Inconsistent or incomplete information was provided." Mason Wheeler 2009-04-02T23:23:55Z 2009-11-26T14:35:54Z <p>I'm trying to insert a record into a table in a 3-tier database setup, and the middle-tier server generates the error message above as an OLE exception when it tries to add the first parameter to the query.</p> <p>I've Googled this error, and I find the same result consistently: it comes from having a colon in a string somewhere in your query, which b0rks ADO's SQL parser. This is not the case here. There are no spurious colons anywhere. I've checked and rechecked the object definition against the schema for the table I'm trying to insert into. Everything checks out, and this has my coworkers stumped. Does anyone know what else could be causing this? I'm at my wits' end here.</p> <p>I'm using Delphi 2007 and SQL Server 2005.</p> http://stackoverflow.com/questions/1803426/difference-between-pansichar-and-pchar/1803523#1803523 1 Answer by Mason Wheeler for Difference between PAnsiChar and PChar Mason Wheeler 2009-11-26T12:55:22Z 2009-11-26T12:55:22Z <p>PChar is a pointer to a "char", whatever that happens to be. In D2009 and later, Char means a UnicodeChar. Before that, Char was an AnsiChar.</p> <p>The difference is that if you're using D2007 and migrate to a later version, the definition of PChar will change, while the definition of PAnsiChar will not.</p> http://stackoverflow.com/questions/1796859/thread-context-on-delphi/1796939#1796939 2 Answer by Mason Wheeler for Thread context on Delphi Mason Wheeler 2009-11-25T13:33:47Z 2009-11-25T13:33:47Z <ol> <li><p>Yes. When the thread is running, all the code it runs gets executed within its own thread context, unless that code's been sent to another thread, for example with the Synchronize method.</p></li> <li><p>Almost. You have 10 instances of the TThread object, each with its own data, running at the same time. There's only one copy of the actual code to the procedure, but multiple data objects can use it at once.</p></li> <li><p>Any code that's not thread-safe (that might access the VCL, or that will write to any shared data, or read from shared data that something else might write to) needs to be protected.</p></li> </ol> http://stackoverflow.com/questions/1913529/ensuring-functions-within-a-webservice-are-secure-in-delphi/1914767#1914767 Comment by Mason Wheeler on Ensuring functions within a webservice are secure in delphi Mason Wheeler 2009-12-16T14:17:19Z 2009-12-16T14:17:19Z No stored procedures? Ouch! Doesn't sound very advantageous to me. :P http://stackoverflow.com/questions/1911907/what-does-shfileoperation-do-when-the-recycle-bin-is-full Comment by Mason Wheeler on What does ShFileOperation do when the recycle bin is full? Mason Wheeler 2009-12-16T04:29:41Z 2009-12-16T04:29:41Z I wasn't aware that the Recycle Bin can be &quot;full&quot;. How does that work? http://stackoverflow.com/questions/1903664/what-bookkeeping-data-does-a-delphi-dynamic-array-contain/1904143#1904143 Comment by Mason Wheeler on What bookkeeping data does a Delphi dynamic array contain? Mason Wheeler 2009-12-15T05:38:45Z 2009-12-15T05:38:45Z Yes. What I meant by that was that Task Manager accurately measures what it measures, which is how much the app has requested from Windows, not necessarily how much the app is actually using internally. http://stackoverflow.com/questions/1903664/what-bookkeeping-data-does-a-delphi-dynamic-array-contain/1904143#1904143 Comment by Mason Wheeler on What bookkeeping data does a Delphi dynamic array contain? Mason Wheeler 2009-12-14T23:25:06Z 2009-12-14T23:25:06Z You're right. It's right there in the code. And Task Manager is pretty accurate, but what it measures is the amount of RAM that the app has allocated from Windows. So the real question is, why is FastMM grabbing so much more memory than it needs from the OS? Maybe to reduce the total number of memory requests required, and keep fragmentation down? http://stackoverflow.com/questions/1903664/what-bookkeeping-data-does-a-delphi-dynamic-array-contain/1903939#1903939 Comment by Mason Wheeler on What bookkeeping data does a Delphi dynamic array contain? Mason Wheeler 2009-12-14T22:28:14Z 2009-12-14T22:28:14Z I don't think so. All the relevant routines seem to take type info as a separate parameter, which the compiler keeps track of. http://stackoverflow.com/questions/1900457/delphi-creating-controls-before-form-create-is-run Comment by Mason Wheeler on Delphi - Creating controls before form Create is run? Mason Wheeler 2009-12-14T16:23:25Z 2009-12-14T16:23:25Z I think we found the problem. See the edit to my reply. http://stackoverflow.com/questions/1900457/delphi-creating-controls-before-form-create-is-run/1900834#1900834 Comment by Mason Wheeler on Delphi - Creating controls before form Create is run? Mason Wheeler 2009-12-14T14:48:07Z 2009-12-14T14:48:07Z TRadioPanel is a VCL Form, which is placed on other forms? Do you mean it's a frame? http://stackoverflow.com/questions/1900457/delphi-creating-controls-before-form-create-is-run/1900834#1900834 Comment by Mason Wheeler on Delphi - Creating controls before form Create is run? Mason Wheeler 2009-12-14T13:51:09Z 2009-12-14T13:51:09Z It should be created. If you check, all the other objects on the form will already be created by then. Maybe something's going wrong while deserializing the component? Hard to tell without more information. BTW is this a button directly on your form, or is it a sub-component of a larger component that you've placed on your form? http://stackoverflow.com/questions/1900457/delphi-creating-controls-before-form-create-is-run Comment by Mason Wheeler on Delphi - Creating controls before form Create is run? Mason Wheeler 2009-12-14T13:09:51Z 2009-12-14T13:09:51Z Welcome to Stack Overflow, Michael. :) http://stackoverflow.com/questions/1897663/how-to-get-enumeration-type-into-stringlist/1897771#1897771 Comment by Mason Wheeler on How to get enumeration type into stringlist? Mason Wheeler 2009-12-14T03:29:12Z 2009-12-14T03:29:12Z Oh, well if you're looking for an Object Inspector, I believe the JVCL has one. Try looking through the code and seeing how it works. http://stackoverflow.com/questions/1896992/jsplitpane-analogue-for-delphi Comment by Mason Wheeler on JSplitPane analogue for Delphi Mason Wheeler 2009-12-13T16:58:51Z 2009-12-13T16:58:51Z What sort of problems are you having with TSplitter? http://stackoverflow.com/questions/1896538/delphi-onclick-problem-with-multiple-units/1896587#1896587 Comment by Mason Wheeler on Delphi OnClick Problem with Multiple Units Mason Wheeler 2009-12-13T14:28:21Z 2009-12-13T14:28:21Z Declare a method on your form with the correct signature, and put the code you're trying to execute in there. http://stackoverflow.com/questions/1893125/how-can-a-shared-event-handler-know-which-controls-event-its-handling/1893414#1893414 Comment by Mason Wheeler on How can a shared event handler know which control's event it's handling? Mason Wheeler 2009-12-12T13:54:47Z 2009-12-12T13:54:47Z As-casting basically walks a linked list from the object's actual type to the type you're casting to, looking for matches. If you do it in a tight loop and the &quot;as type&quot; is several levels of inheritance above the actual type, it can give a definite performance hit, but aside from that you'll probably never notice it. http://stackoverflow.com/questions/1893125/how-can-a-shared-event-handler-know-which-controls-event-its-handling/1893199#1893199 Comment by Mason Wheeler on How can a shared event handler know which control's event it's handling? Mason Wheeler 2009-12-12T12:35:04Z 2009-12-12T12:35:04Z <a href="http://tech.turbu-rpg.com/56/as-sertion-casting" rel="nofollow">tech.turbu-rpg.com/56/as-sertion-casting</a> <b>As</b> is a cast, not a conversion, but it checks to make sure you've got the type right and raises an exception otherwise. http://stackoverflow.com/questions/1890490/upgrade-to-delphi-2010-or-stick-with-delphi-7-forever Comment by Mason Wheeler on Upgrade to Delphi 2010, or stick with Delphi 7 "forever"? Mason Wheeler 2009-12-12T04:48:56Z 2009-12-12T04:48:56Z I had a friend who wanted to learn just yesterday, but was driven off by the sticker shock. That particular barrier to entry is <i>way</i> too high.