User Allen Bauer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:32:51Zhttp://stackoverflow.com/feeds/user/20552http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1621572/get-correct-relative-path-in-delphi/1622018#16220187Answer by Allen Bauer for Get Correct Relative Path in DelphiAllen Bauer2009-10-25T20:46:35Z2009-10-25T20:46:35Z<p>I'm presuming you mean relative to the directory of the main HTML document. You can call SetCurrentDir() to the directory containing the main HTML document, or you can simply prepend that path to the relative one.</p>
<pre><code>if FileExists(ExtractFilePath(MainDocument) + HypRef) then...
</code></pre>
<p>You really don't <strong>need</strong> to call ExpandFileName() since the OS will properly resolve the '..' and '.' pieces. However, if you intend to use the path for identity then they should all be cannonicalized using ExpandFileName().</p>
http://stackoverflow.com/questions/1620890/trouble-with-detecting-mouse-movements-in-a-tcxgrid-when-dragging-files-from-wind/1621384#16213843Answer by Allen Bauer for Trouble with detecting mouse movements in a TcxGrid when dragging files from Windows ExplorerAllen Bauer2009-10-25T16:53:08Z2009-10-25T16:53:08Z<p>Rather than using the WM_DROPFILES message, you should use OLE Drag'n'Drop. Look at the RegisterDropTarget API. You can get more detailed information about <strong>where</strong> a drag or drop is taking place. You can also accept more kinds of drag objects.</p>
http://stackoverflow.com/questions/1505983/system-wide-keyboard-hook-on-vista-and-later/1506961#15069616Answer by Allen Bauer for System wide keyboard hook on Vista and laterAllen Bauer2009-10-01T23:08:38Z2009-10-01T23:08:38Z<p>Make sure the process hosting the hook is at the same privilege level of the application you intend to hook. Keyboard and other hooks are a high security risk, so Vista and later was changed to only allow system-wide hooks in processes within a common certain security context. In other words, if you start the hook host process with user rights, it will only hook processes that are at the same privilege level. If you think about it, this make sense because you would not want a user-level process being able to inject code into an admin-level process. That is bad on so many levels.</p>
http://stackoverflow.com/questions/1481965/how-to-recreate-a-function-retrieving-the-highest-element-of-an-object/1482199#14821995Answer by Allen Bauer for How to recreate a function retrieving the highest element of an object?Allen Bauer2009-09-26T21:13:45Z2009-09-26T21:13:45Z<p>The High() (and Low()) functions are referred to as "standard functions" which means they're intrinsic to the compiler. Like Write and Writeln, they don't really exist as normal Pascal function declarations. The compiler ensures that they are in the "System" unit scope merely as a convenience and to allow function of the same name within other scopes. This also allows you to qualify them by using System.High() to explicitly reference the System unit version. Since they are intrinsic, the compiler will automatically generate the proper code sequence for the type being considered. This also means that trying to duplicate the full functionality of them is nigh impossible. Just stick with the intrinsic standard functions.</p>
http://stackoverflow.com/questions/1455822/exception-einouterror-in-the-data-module-at-000c50bc-i-o-error-103/1456584#14565844Answer by Allen Bauer for exception EInoutError in the Data Module at 000C50BC I/O Error 103Allen Bauer2009-09-21T20:12:35Z2009-09-21T20:12:35Z<p>Make sure the application is compiled as a console application {$APPTYPE CONSOLE} since calling Write or Writeln to write to stdout and the console is not opened, it will fail like this. Using {$APPTYPE CONSOLE} will have the side-effect of either using the existing console from which the application is started, or create a new console window to use.</p>
<p>Another solution is to redirect the Output standard text file (stdout) to a file. Try this:</p>
<pre><code>AssignFile(Output, 'logfile.log');
Rewrite(Output);
</code></pre>
<p>Now all regular "Write" or "Writeln" calls will go to "logfile.log" file.</p>
http://stackoverflow.com/questions/1159963/delphi-2009-only-halts-at-breakpoints-in-one-unit/1161127#11611273Answer by Allen Bauer for Delphi 2009 only halts at breakpoints in one unitAllen Bauer2009-07-21T19:09:20Z2009-07-21T19:09:20Z<p>Chances are when you first moved the project to D2009 you built your units without debug info. Now that those units have been created, they don't get rebuilt every time. What you are probably seeing is that the breakpoint only works in the unit you're currently editing and making changes to. This is consistent with the fact that the compiler knows to rebuild that unit (with the now properly set debug flags), and that unit only.</p>
<p>The solution is the make sure the Debug configuration is selected and then do a full build.</p>
http://stackoverflow.com/questions/1150265/how-does-one-change-the-text-on-the-clipboard-without-altering-the-format-informa/1151976#11519763Answer by Allen Bauer for How does one change the text on the clipboard without altering the format information?Allen Bauer2009-07-20T06:35:24Z2009-07-20T06:35:24Z<p>Yep, Nick. I think in this case you're going to be stuck with the solution already suggested. The clipboard is one area that hasn't really gotten much attention in the enhancement department throughout the years. That is probably because it does need to be simple, ubiquitous, and functional.</p>
http://stackoverflow.com/questions/1148383/why-is-debughook-not-set-to-1-in-my-delphi-add-in-dll/1148516#11485163Answer by Allen Bauer for Why is DebugHook not set to 1 in my Delphi add-in DLL?Allen Bauer2009-07-18T20:44:53Z2009-07-18T20:44:53Z<p>If for some reason the Delphi evaluator is unable to lookup the DebugHook global, it would be unable to set that value. Try to compile/run the DLL from the IDE and set the "host application" in the Run|Parameters dialog to the the Office app you intend to call your DLL from. It is possible that this may be a bug in how the evaluator uses the remote debug symbols.</p>
http://stackoverflow.com/questions/1119566/how-to-get-the-address-of-result/1120144#11201446Answer by Allen Bauer for How to get the address of Result?Allen Bauer2009-07-13T15:26:48Z2009-07-14T15:54:39Z<p>First of all, your declaration specifies that it is only returning a single byte, not an array of bytes and certainly not a pointer to an array. In its current state, you're going to overwrite the stack and crash horribly. You could use an untyped "var" parameter instead of a function result.</p>
<pre><code>class procedure TCelebrity.ReadArray<T>(length:integer; var Result);
var b:pointer;
begin
b := @Result;
if IndexR + SizeOf(T) * length > High(DataRead) + 1 then
raise Exception.Create('error');
Move(DataRead[IndexR],b^,SizeOf(T) * length);
Inc(IndexR,SizeOf(T) * length);
end;
</code></pre>
<p>Then call it like this:</p>
<pre><code>c.ReadArray<byte>(4, ar[5]);
</code></pre>
<p>However, that is still very dangerous. You <strong>must</strong> ensure that at a given offset in array 'ar' there is enough remaining room for the bytes you intend to write. </p>
http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111840#111184011Answer by Allen Bauer for Why Do You Use Delphi?Allen Bauer2009-07-10T20:33:02Z2009-07-10T20:33:02Z<p>Because I help develop Delphi itself? Couldn't resist... :-)</p>
<p>I've also used Turbo Pascal from way, way back. I know C, C++, C#, some Java, Assembler(x86, 8080, Z80, 68xx, others...), Basic, Forth, Lisp, yada-yada. Of all of them, Delphi (Object Pascal) is the most comfortable and familiar even though I'm rather proficient in many of the others.</p>
http://stackoverflow.com/questions/1060591/opening-a-tstream-on-stdin-stdout-in-a-delphi-console-app/1060928#106092817Answer by Allen Bauer for Opening a TStream on stdin/stdout in a Delphi console appAllen Bauer2009-06-29T22:38:08Z2009-06-29T22:38:08Z<p>Off the top of my head:</p>
<pre><code> InputStream := THandleStream.Create(GetStdHandle(STD_INPUT_HANDLE));
OutputStream := THandleStream.Create(GetStdHandle(STD_OUTPUT_HANDLE));
</code></pre>
<p>Give that ago..</p>
http://stackoverflow.com/questions/988725/how-do-i-keep-vista-from-killing-my-program-on-exceptions/988878#98887811Answer by Allen Bauer for How do I keep Vista from killing my program on exceptions?Allen Bauer2009-06-12T20:26:53Z2009-06-12T20:26:53Z<p>Check to ensure that the global variable in System, JITEnable is still set to 0. If that variable is set to 1, hardware (and external) exceptions will cause that behavior by calling UnhandledExceptionFilter. If it is set to 2, <strong>any</strong> exception will cause it.</p>
http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-329Why does the Mac ABI require 16-byte stack alignment for x86-32?Allen Bauer2009-03-04T21:12:41Z2009-05-22T19:34:55Z
<p>I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte boundaries only. Yes, some of the MMX/SSE instructions require 16byte alignments, but if that is a requirement of the callee, then it should ensure the alignments are correct. Why burden <strong>every</strong> caller with this extra requirement? This can actually cause some drops in performance because every call-site must manage this requirement. Am I missing something?</p>
<p><strong>Update:</strong> After some more investigation into this and some consultation with some internal colleagues, I have some theories about this:</p>
<ol>
<li>Consistency between the PPC, x86, and x64 version of the OS</li>
<li>It seems that the GCC codegen now consistently does a sub esp,xxx and then "mov"s the data onto the stack rather than simply doing a "push" instruction. This could actually be faster on some hardware.</li>
<li>While this does complicate the call sites a little, there is very little extra overhead when using the default "cdecl" convention where the caller cleans up the stack.</li>
</ol>
<p>The issue I have with the last item, is that for calling conventions that rely on the callee cleaning the stack, the above requirements <strong>really</strong> "uglifies" the codegen. For instance, what some compiler decided to implement a faster register-based calling style for its own internal use (ie any code that isn't intended to be called from other languages or sources)? This stack-alignment thing could negate some of the performance gains achieved by passing some parameters in registers.</p>
<p><strong>Update:</strong> So far the only real answers have been consistency, but to me that's a bit too easy of an answer. I have well over 20 years experience with the x86 architecture and if consistency, not performance, or something else concrete, is really the reason then I respectfully suggest that is a bit naive for the developers to require it. They're ignoring nearly three decades of tools and support. Especially if they're expecting tools vendors to quickly and easily adapt their tools for their platform (maybe not... it <strong>is</strong> Apple...) without having to jump through several seemingly unnecessary hoops.</p>
<p>I'll give this topic another day or so then close it...</p>
http://stackoverflow.com/questions/832203/how-to-get-the-highest-value-from-a-delphi-set/835727#8357272Answer by Allen Bauer for How to get the highest value from a Delphi set?Allen Bauer2009-05-07T16:29:44Z2009-05-07T16:29:44Z<p>Here is a little quicker version that uses knowledge of the internal structure of the byte set.</p>
<pre><code>type
TByteSet = set of Byte;
function HighestElement(const ByteSet: TByteSet): Byte;
type
TSetBytes = array[0..SizeOf(TByteSet) - 1] of Byte;
var
I, J: Integer;
B: Byte;
SetBytes: TSetBytes;
begin
if ByteSet <> [] then
begin
SetBytes := TSetBytes(ByteSet);
// Start at the top and work down, one byte at a time
for I := SizeOf(TByteSet) - 1 downto 0 do
begin
// Any bits set here
B := SetBytes[I];
if B <> 0 then
begin
Result := I * 8;
for J := 0 to 7 do
if (B shr J) and 1 <> 0 then
begin
Result := Result + J;
Exit;
end;
end;
end;
end else
// No elements set
end;
</code></pre>
<p>You can change the type of the set, TByteSet, to nearly any set type, and this function should still work. Just replace TByteSet within the function decl and body with the type of your set. You can also modify it to return the actual element type if using a set of AnsiChar, or a set of some enumeration type. To get the lowest value, change the "I" for loop to "0 to SizeOf(TByteSet) - 1" and the if test in the "J" loop to "if (B shl J) and $80 <> 0"</p>
http://stackoverflow.com/questions/783825/why-most-delphi-examples-use-fillchar-to-initialize-records/784441#78444112Answer by Allen Bauer for Why most Delphi examples use FillChar() to initialize records?Allen Bauer2009-04-24T03:50:14Z2009-04-24T03:50:14Z<p>Historical reasons, mostly. FillChar() dates back to the Turbo Pascal days and was used for such purposes. The name is really a bit of a misnomer because while it says Fill**Char**(), it is really Fill**Byte**(). The reason is that the last parameter can take a char <strong>or</strong> a byte. So FillChar(Foo, SizeOf(Foo), #0) and FillChar(Foo, SizeOf(Foo), 0) are equivalent. Another source of confusion is that as of Delphi 2009, FillChar still only fills bytes even though Char is equivalent to WideChar. While looking at the most common uses for FillChar in order to determine whether most folks use FillChar to actually fill memory with character data or just use it to initialize memory with some given byte value, we found that it was the latter case that dominated its use rather than the former. With that we decided to keep FillChar byte-centric.</p>
<p>It is true that clearing a record with FillChar that contains a field declared using one of the "managed" types (strings, Variant, Interface, dynamic arrays) can be unsafe if not used in the proper context. In the example you gave, however, it is actually safe to call FillChar on the locally declared record variable <em>as long as it is the first thing you ever do to the record within that scope</em>. The reason is that the compiler has generated code to initialize the string field in the record. This will have already set the string field to 0 (nil). Calling FillChar(Foo, SizeOf(Foo), 0) will just overwrite the whole record with 0 bytes, including the string field which is already 0. Using FillChar on the record variable <strong>after</strong> a value was assigned to the string field, is not recommended. Using your initialized constant technique is a very good solution this problem because the compiler can generate the proper code to ensure the existing record values are properly finalized during the assignment.</p>
http://stackoverflow.com/questions/760513/where-can-i-find-information-on-the-structure-of-the-delphi-vmt/761101#7611017Answer by Allen Bauer for Where can I find information on the structure of the Delphi VMT?Allen Bauer2009-04-17T16:19:58Z2009-04-17T16:19:58Z<p>What about the VMT structure are you wanting to know? You also do know that it is an internal implementation detail that is subject to change (and has changed over time). To answer your specific question, here is a simple way to find the number of virtual methods for a given class:</p>
<pre><code>function GetVirtualMethodCount(AClass: TClass): Integer;
begin
Result := (PInteger(Integer(AClass) + vmtClassName)^ -
(Integer(AClass) + vmtParent) - SizeOf(Pointer)) div SizeOf(Pointer);
end;
</code></pre>
<p>This works because I happen to know that the string representing the class name is placed immediately following all the virtual method vectors in the VMT. I also know that there are 11 virtual methods (for D2009, 9 for D2007 and prior) on all TObjects that are negatively offset from the VMT pointer itself. That is the reason for the vmtParent reference. Finally, by using a TClass class reference, you can pass any TObject derived class into this function and get the number of virtual methods.</p>
http://stackoverflow.com/questions/741735/what-is-the-meaning-of-the-reintroduce-and-override-directives-in-delphi/742112#74211217Answer by Allen Bauer for What is the meaning of the reintroduce and override directives in Delphi?Allen Bauer2009-04-12T17:53:03Z2009-04-12T17:53:03Z<p>The reference to Jim's answer, which was excellent BTW, only described the when and where to use the directives. Another part of the answer is why are they needed anyway? Many languages get along just fine without them, right? When designing aspects of the Delphi Object Pascal Language, OOP (Object Oriented Programming) had been in the mainstream for several years. During this time it was observed that using many of the languages that had adopted those concepts (Turbo Pascal, C++, etc..) to develop application frameworks suffered from what I called the "version 2" problem.</p>
<p>Suppose you developed an awesome framework using language X and released it as version 1. Your users raved at all it could do and it became heavily used. Flush with success, you decide to release version 2 with even more awesomeness. You specifically made sure it was fully backward compatible. Suddenly, you users started reporting strange behaviors. Their own virtual methods were being called at strange times. Many reported that their old code would not compile with the new version. Strange. All the same objects, methods, and functionality still remained. All you did was add a few virtual methods to some base classes, some new object types, and some new optional functionality. What happened?</p>
<p>The override and reintroduce directives serve to eliminate this problem by requiring that in order to actually <em>override</em> a virtual method you must use the override directive in place of the virtual directive. If you happen to introduce your own virtual method that has the same name as one of your ancestors' virtual methods, the compiler now warns you, but will still do the right thing. In this case, using reintroduce, not only suppresses that warning, it also serves to document in the source you intended to do that.</p>
<p>Without the override and reintroduce directives, you would not be able to continually evolve your framework without fear of breaking all your users. And if your users had to make massive modifications every time a new version is released, then they would be loathe to adopt the new version. Finally, using "override" also allows the framework designer to change the type of virtual in the ancestors without breaking user code. For instance, in Delphi many methods are marked "dynamic" which is a table-based runtime method lookup form of polymorphism. It's doesn't perform quite as fast as a regular virtual so it is usually used for methods that are rarely overridden and/or are responses to user actions where the extra overhead is never noticed. Suppose in V1 of the framework a method was marked "dynamic" but in practice it ended up being overridden and called more than you intended. In V2, you could change it to "virtual" without fear of user's code being broken.</p>
<p>Delphi's Object Pascal language isn't the only language to recognize this problem. C# requires the use of an "override" directive for the exact same reason. The C++ standards committee is finally recognizing the problem and are modifying the language to support it... sort of. In C++, if a method's name and parameter list matches an ancestor's virtual, then it is an override (even if you don't say "virtual" on the descendant!). For the upcoming new C++ standard, if you specify "virtual" and the signatures don't match then it is a new virtual method introduced on current class. If there is a signature match with the ancestor and the writer <em>didn't</em> intend to override, then the "new" keyword is used to tell the compiler that this is a <strong>new</strong> virtual for this class.</p>
http://stackoverflow.com/questions/673248/is-there-a-delphi-code-documentor-that-supports-current-delphi-syntax/674022#6740222Answer by Allen Bauer for Is there a Delphi code documentor that supports current Delphi syntax?Allen Bauer2009-03-23T16:13:17Z2009-03-23T16:13:17Z<p>Have you looked at the --doc switch for the Delphi compiler? AFAIK, the Delphi compiler understands the Delphi syntax pretty well ;-). </p>
http://stackoverflow.com/questions/631902/how-do-i-turn-specific-delphi-warnings-and-hints-off/632328#63232814Answer by Allen Bauer for How do I turn specific Delphi warnings and hints off?Allen Bauer2009-03-10T21:20:38Z2009-03-10T21:20:38Z<p>You are not able to disable specific hints like you can with warnings. Hints are those things that would not have any potential adverse affects on your runtime code. For instance, when you see the hint "Value assigned to 'varname' never used" it is merely a suggestion for something you should probably "clean up" in your code, but it won't cause any potential runtime errors (other than your own logic errors, of course :-). Hints are always best addressed by tweaking the code.</p>
<p>Warnings, on the other hand, are those things that <strong>could</strong> possibly cause unintended runtime behaviors and <strong>really</strong> should be addressed. For instance, using a variable before assigning a value to it is clearly a case of an uninitialized variable and that can lead to "bad things." In the vast majority of times, warnings should be addressed by "fixing" the code. Even then, in certain circumstances you may deem the warning as a "false positive" and are certain the code is functioning correctly. In those cases, you can disable a specific warning. Disabling all warnings is dangerous.</p>
http://stackoverflow.com/questions/627355/why-does-my-custom-component-raise-avs-in-the-ide/627403#62740314Answer by Allen Bauer for Why does my custom component raise AVs in the IDE?Allen Bauer2009-03-09T18:10:09Z2009-03-09T18:10:09Z<p>You can debug this yourself. Open the package project that contains your component. Then go to Run|Parameters and enter the IDE itself as the Host Application. Run the IDE from within the IDE. Then repeat your steps to reproduce the AV, and the IDE should stop and show you where things are failing. You can use normal debugging techniques from there.</p>
http://stackoverflow.com/questions/620506/left-side-cannot-be-assigned-to-for-record-type-properties-in-delphi/620631#6206317Answer by Allen Bauer for "Left side cannot be assigned to" for record type properties in DelphiAllen Bauer2009-03-06T22:11:20Z2009-03-07T00:20:57Z<p>Since "Rec" is a property, the compiler treats it a little differently because it has to first evaluate the "read" of the property decl. Consider this, which is semantically equivalent to your example:</p>
<pre><code>...
property Rec: TRec read GetRec write FRec;
...
</code></pre>
<p>If you look at it like this, you can see that the first reference to "Rec" (before the dot '.'), has to call GetRec, which will create a temporary local copy of Rec. These temporaries are by design "read-only." This is what you're running into.</p>
<p>Another thing you can do here is to break out the individual fields of the record as properties on the containing class:</p>
<pre><code>...
property RecField: Integer read FRec.A write FRec.A;
...
</code></pre>
<p>This will allow you to directly assign through the property to the field of that embedded record in the class instance.</p>
http://stackoverflow.com/questions/620582/increment-hex-string/620722#6207227Answer by Allen Bauer for Increment hex stringAllen Bauer2009-03-06T22:36:12Z2009-03-06T23:40:04Z<p>You could also do this by creating a "variant record" and just using Inc();</p>
<pre><code>type
testrec = record
case Byte of
0: (data: array[0..3] of AnsiChar);
1: (intSequence: Integer);
end;
var
Sequence: testrec;
begin
Sequence.data = #$b1#$87#$1c#$67; // reversed because of "endian-ness"
Inc(Sequence.intSequence);
end;
</code></pre>
<p>In this case, the data and intSequence fields "overlay" each other in memory, so any writes to one field will immediately reflect in the other.</p>
http://stackoverflow.com/questions/617654/how-does-writeln-really-work/617695#61769521Answer by Allen Bauer for How does WriteLn() really work?Allen Bauer2009-03-06T04:40:03Z2009-03-06T04:40:03Z<p>Writeln is what we call a compiler "magic" function. If you look in System.pas, you won't find a Writeln that is declared anything like what you would expect. The compiler literally breaks it all down into individual calls to various special runtime library functions. </p>
<p>In short, there is no way to implement your own version that does all the same things as the built-in writeln without modifying the compiler.</p>
http://stackoverflow.com/questions/609970/how-to-import-a-function-from-a-dll-made-in-delphi/611628#6116287Answer by Allen Bauer for How to import a function from a DLL made in Delphi?Allen Bauer2009-03-04T17:29:55Z2009-03-04T18:24:01Z<p>Since you don't have the source to the DLL, you'll need to get a little creative on the C side of things. Even though the ShortString is listed as the function result, it is actually the responsibility of the <strong>caller</strong> to provide a location in which to place the result. Because this is a stdcall function, parameters are passed in from right to left, so that means that the address of the ShortString result is passed in last. To get this to line up, it will need to the first parameter listed. I'll do the first API, GetCPUID. In C, it might look something like this:</p>
<pre><code>typedef struct ShortString {
char len;
char data[255];
};
typedef void (_stdcall *GETCPUID)(struct ShortString *result, BYTE cpuCore);
GETCPUID pGetSerial;
HMODULE hWtsLib = LoadLibrary("HardwareIDExtractor.dll");
if (hWtsLib) {
ShortString serial;
pGetSerial = (GETCPUID)GetProcAddress(hWtsLib, "GetCPUID");
pGetSerial(&serial, '1');
char *str = malloc(serial.len + 1); // include space for the trailing \0
strlcpy(str, serial.data, serial.len);
str[serial.len] = '\0'; // drop in the trailing null
}
</code></pre>
<p>I'll leave the GetPartitionID as an exercise for the reader :-).</p>
http://stackoverflow.com/questions/587979/adding-forms-and-frames-to-packages/588489#5884896Answer by Allen Bauer for Adding forms and frames to packagesAllen Bauer2009-02-25T23:56:28Z2009-02-25T23:56:28Z<p>Vegar is on the right track. In order for the project manager to display the .dfm node, it needs to know that a form/frame/datamodule is associated with the pas file. It looks at the {Form1} comment in the .dpk or .dpr file for this information. If, when adding a file to the project, the IDE doesn't recognize that there is a .dfm associated with it, make sure the .pas file has the {$R *.dfm} directive in the clear. By that, I should not be buried in an IFDEF or otherwise obscured by potential syntax errors in the file. The IDE uses the presence of this directive to decide whether or not it should try and open the .dfm in the designer.</p>
<p>The IDE doesn't just take for granted that if there is a Unit1.pas and a Unit1.dfm, that they are really supposed to be together. Consider that you created a new form unit and it was called Unit1. Now you deleted just the Unit1.pas and then just went and created a new unit which would be given the name Unit1.pas. There is no reference to the old, stale Unit1.dfm out there on the disk from this new, same-base-named, Unit1.pas. It would be strange and confusing if the IDE were to just blindly open that .dfm.</p>
http://stackoverflow.com/questions/586482/is-there-a-way-to-disable-the-hint-for-a-topendialog-in-delphi/587390#5873901Answer by Allen Bauer for is there a way to disable the hint for a TOpenDialog in delphiAllen Bauer2009-02-25T19:11:53Z2009-02-25T19:11:53Z<p>Since this is a Windows common dialog, you may have to jump in and hook into the dialogproc and manually try and process the tooltip messages. You can look here for a start about how to customize the common dialogs; <a href="http://msdn.microsoft.com/en-us/library/ms646951.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms646951.aspx</a>. You can also look at creating your own TOpenDialog descendant and override the WndProc protected method to get access to the dialog messages and notifications. I suspect you'd also need to do some deeper hooking and start getting into dealing with the explorer shell. The file list in that dialog is actually an instance of parts of the Windows Explorer shell.</p>
<p>Another question is what is it you're trying to accomplish by hiding this information from the user? Maybe there is some other solution to what you're trying to do rather than disabling some intrinsic functionality?</p>
http://stackoverflow.com/questions/582903/whats-the-difference-between-createwnd-and-createwindowhandle/583743#58374312Answer by Allen Bauer for What's the difference between CreateWnd and CreateWindowHandle?Allen Bauer2009-02-24T21:44:54Z2009-02-24T21:44:54Z<p>So far most of the answers here are pretty much on the mark and you would do well to heed their advice. However, there is a little more to this story. To your specific question about when you would override one or the other, I'll try and nutshell things a little bit. </p>
<p><strong>CreateParams();</strong></p>
<p>In general, most of the time all you really need to do is to override CreateParams(). If all you want to do is to subclass (remember Windows style "subclassing?" See Petzold's seminal work on Windows programming) an existing control class and wrap it up in a VCL control, you do this from CreateParams. You can also control what style bits are set and other various parameters. We've made the process of creating a "subclass" very easy. Just call CreateSubClass() from your CreateParams() method. See the core VCL controls for an example such as TCheckBox or TButton.</p>
<p><strong>CreateWnd();</strong></p>
<p>You would override this one if you need to do a little bit more with the window handle once it is created. For instance, if you have a control that is some kind of list, tree, or otherwise requires post-creation configuration, you'd do that here. Call the inherited CreateWnd, and when it returns (you know you have a valid handle if you return from CreateWnd because it will raise and exception if something went awry), just apply your extra magic. A common scenario is to take the data that is cached in an instance TStrings list and actually move it into the underlying window control. The TListBox is a classic example of this.</p>
<p><strong>CreateWindowHandle();</strong></p>
<p>I had to go refresh my memory on this one, but it seems this is one is rarely, if ever, overridden. In the few cases inside VCL itself, it appears that it is used to work around specific Windows version and locale oddities with some controls, such as the TEdit and TMemo. The other more clear-cut case is in TCustomForm itself. In this case it is there to support the old MDI (mutli-document interface) model. In this case MDI children cannot be created using the normal CreateWindowEx() API, you have to send a message to the MDI parent frame to actually create the handle. So the only reason to overide this method is if the actual process of creating the handle is done via a means completely different than the old tried-and-true CreateWindowEx().</p>
<p>I did notice that your question was merely asking about the creation process, but there are corresponding methods that are overridden in some cases for both handle destruction and the "voodoo" that sometimes surrounds handle recreation. But these are other topics that should be covered separately :-).</p>
http://stackoverflow.com/questions/582721/why-shouldnt-you-use-a-handle-during-component-creation-or-streaming/582830#58283011Answer by Allen Bauer for Why shouldn't you use a handle during component creation or streaming?Allen Bauer2009-02-24T17:59:33Z2009-02-24T17:59:33Z<p>At it's core, it's a performance thing. There are potentially other "bad" side-effects that can happen as well since during the streaming process. Things are in "mid-construction" and all that is normally expected to be there are probably not.</p>
<p>When you reference the "Handle" property, this will initiate the handle creation process. This is because reading Handle actually calls GetHandle. Do this too soon in the streaming process, and you may end up with, at best, slower streaming performance, at worse, a partially configured "handle."</p>
<p>If you need to refer to the Handle properly from within a property setter, you should check if the handle has been created by checking HandleAllocated, and only then do you reference it. If you needed to make some flag changes to the handle like calling SetWindowLong() or something, then you should "cache" that state in the component instance and then override CreateWnd and apply those settings at that point. Another option is to defer all handle access while streaming (if csLoading in ComponentState then) until the Loaded virtual method is called.</p>
<p>Finally, you need to be aware of cases where your handle may need to get recreated. This can happen if the surrounding form or the parent component's handle goes through a recreate process. Up until more recent releases of Windows, the only way to change some window flags was to destroy the handle and recreate with new flags in the CreateWindowEx() call. There are many components that still do this. You know if you're in a recreate situation by checking (csRecreating in ControlState).</p>
<p>So to directly answer your question, the best place is to override CreateWnd and do your work in there. CreateWnd will only be called when the handle gets created. A properly designed component should get only one call to CreateWnd right before it is going to be shown.</p>
http://stackoverflow.com/questions/576968/delphi-class-tlistview-not-found/578738#5787384Answer by Allen Bauer for Delphi - Class TListView not foundAllen Bauer2009-02-23T18:31:58Z2009-02-23T18:31:58Z<p>This is typically an error during the streaming of a .DFM. Usually this error occurs with TLabel components because many folks remove the TLabel fields from the form or frame in order to cut down on the clutter and reduce the instance size of the form. The common and confusing mistake they make, however, is that in their over-zealousness, they remove <strong>all</strong> TLabel references. That is when bad things start to happen. Let me run down how the streaming system locates a component's class.</p>
<p>Remember that the class reference in the .DFM is <em>just a string</em>. The streaming system has to convert this string into a class reference (TComponentClass). There are two mechanisms that the streaming system uses to do this. The first one is very simple and involves a global list of class references. You can call RegisterClass or RegisterClasses to explicitly make the streaming system aware of it. The second is much more subtle and not very well known; in fact it is all part of the "magic" of Delphi :-). When the compiler builds the form, all the fields that represent the components on the form are processed and an internal table is built as part of the RTTI or metadata for the form/frame/datamodule itself. This table contains a list of references to all the individual component types represented by the component fields. So even if a component is <strong>not</strong> in the global list, it can still be found by scanning through this compiler generated table. That is what the Classes.TReader.GetFieldClass() method does.</p>
<p>Back to my TLabel example, this problem is easily fixed by simply ensuring that <em>at least one of a given component type has a field.</em> So as long as there is at least field of type TLabel, <strong>all</strong> the other TLabels will load just fine. So in your case, make sure the TListView or TImage fields haven't been deleted.</p>
http://stackoverflow.com/questions/569995/getmem-x-reallocmem/570150#57015011Answer by Allen Bauer for GetMem x ReallocMemAllen Bauer2009-02-20T16:09:02Z2009-02-20T16:21:40Z<p>GetMem always allocates memory, FreeMem always releases/frees memory, ReallocMem may do one, the other, or both. In fact, when used properly, ReAllocMem is really the only memory management API needed. If you start with a nil pointer, and call ReAllocMem with a size > 0, then it acts like GetMem. If you call ReAllocMem with size = 0, then it acts like FreeMem. The only time it actually "re-allocates" memory is if the pointer is non-nil and the size > 0.</p>
<p>New and Dispose are designed to work with typed pointers or for you "old-skool" folks, the older Turbo Pascal object model (the old "object) syntax. New and Dispose will also ensure that any typed pointer that is a reference to a managed type will properly initialize that type. For instance given the following:</p>
<pre><code>type
PMyRec = ^TMyRec;
TMyRec = record
Name: string;
Value: Variant;
end;
var
Rec: PMyRec;
begin
New(Rec);
try
Rec.Name := 'TestValue';
Rec.Value := 100;
...
finally
Dispose(Rec);
end;
end;
</code></pre>
<p>New and Dispose will ensure that the Name and Value fields of the record are properly initialized and finalized or cleaned-up. New and Dispose, in the above case is equivalent to:</p>
<pre><code>GetMem(Rec, SizeOf(Rec^));
Initialize(Rec);
...
Finalize(Rec);
FreeMem(Rec);
</code></pre>
<p>For the example you gave, Gamecat is right, you would probably be better off using a dynamic array since they are better managed by the compiler and they also carry their own intrinsic length. With your example, you would have to separately keep track of the number of items in the array, such that wherever you passed around the array, you'd also have to pass around the currently allocate length. By using a dynamic array, all the information is kept neatly packaged together. This would allow you to iterate over the array regardless of the current length by simply doing one of the following:</p>
<pre><code>var
Member: TMemberData;
Items: array of TMemberData;
...
begin
SetLength(Items, Value);
for Member in Items do // iterate over each element in the array
...
for Low(Items) to High(Items) do // same as above only using std functions
...
end;
</code></pre>
<p>Finally, another reason you would probably want to use a dynamic array is that if TMemberData contained strings, variants, interfaces or other "managed" types, they will be properly initialized and finalized without the need to do that manually.</p>
http://stackoverflow.com/questions/1817262/shlwapi-strformatbytesize-and-delphi-2010-unicode/1817958#1817958Comment by Allen Bauer on ShLwApi.StrFormatByteSize and Delphi 2010 UnicodeAllen Bauer2009-11-30T06:13:58Z2009-11-30T06:13:58ZThat's a bug in the header translation. The unadorned API should be directed to the "W" version. In fact, it is declared with PChar, which in D2009 and D2010, is the same as PWideChar. So even if you called it, it would be wrong. http://stackoverflow.com/questions/1809348/is-it-good-practice-to-use-a-dynamic-array-in-an-object-field/1809578#1809578Comment by Allen Bauer on Is it good practice to use a Dynamic Array in an object field ?Allen Bauer2009-11-27T21:43:06Z2009-11-27T21:43:06Z"this can cause eventual errors from the memory manager" Would you mind elaborating? What does that mean?http://stackoverflow.com/questions/1806339/is-it-better-to-use-tthreads-synchronize-or-use-window-messages-for-ipc-betwee/1806947#1806947Comment by Allen Bauer on Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread?Allen Bauer2009-11-27T21:40:12Z2009-11-27T21:40:12ZEver since D6, TThread doesn't use SendMessage anymore. It uses a thread-safe work queue where the "work" intended for the main thread is placed. A message is <i>posted</i> to the main thread to indicate that work is available and the background thread blocks on an event. When the main message loop is about to go idle, it calls "CheckSynchronize" to see if any work is waiting. If so, it processes it. Once a work item is completed, the event on which the background thread is blocked is set to indicate completion. Introduced in D2006 timeframe, TThread.Queue method was added that doesn't block.http://stackoverflow.com/questions/1605671/can-delphi-5-generate-a-pdb-file-that-vs-can-use/1605779#1605779Comment by Allen Bauer on Can Delphi 5 generate a .PDB file that VS can use?Allen Bauer2009-10-22T17:01:37Z2009-10-22T17:01:37ZAgreed. This is extremely frustrating to many tool vendors, not just us on the RAD Studio team. Maybe MS should support the Turbo Debugger format which is actually documented and we even provide a library to read them. :-).http://stackoverflow.com/questions/1516493/difference-between-strict-private-and-protected-access-modifiers-in-delphi/1516551#1516551Comment by Allen Bauer on Difference between "strict private" and "protected" Access Modifiers in Delphi?Allen Bauer2009-10-04T15:19:43Z2009-10-04T15:19:43Z So who defined what "standard OOP" is? I was unaware that there was some OOP standards board. OOP merely defines a paradigm centered around encapsulation, inheritance, and polymorphism. There is no strict (pun intended) rule about how access modifiers are to be implemented. To better clarify, the access rules implement implicit "friendship" at the unit level without adding explicit syntax to do so.http://stackoverflow.com/questions/1455822/exception-einouterror-in-the-data-module-at-000c50bc-i-o-error-103/1456584#1456584Comment by Allen Bauer on exception EInoutError in the Data Module at 000C50BC I/O Error 103Allen Bauer2009-09-22T05:19:47Z2009-09-22T05:19:47ZDid you check the file while it was running? Could be due to buffering, so the data may not be fully written until the app terminates or the output file is closed.http://stackoverflow.com/questions/1400502/string-concatenation-vs-string-format/1400551#1400551Comment by Allen Bauer on String concatenation VS string formatAllen Bauer2009-09-09T17:04:58Z2009-09-09T17:04:58ZThat is identical to s := V1 + V2; Concat is a compiler "magic" function that is collapsed to call the same internal helper as <str> + <str>.http://stackoverflow.com/questions/1119566/how-to-get-the-address-of-result/1120144#1120144Comment by Allen Bauer on How to get the address of Result?Allen Bauer2009-07-14T15:55:10Z2009-07-14T15:55:10ZYes, that was a copy/paste error. I fixed it. Thanks for catching that.http://stackoverflow.com/questions/1116136/how-to-declare-a-pointerbyte/1116182#1116182Comment by Allen Bauer on How to declare a pointer(byte^)?Allen Bauer2009-07-12T16:45:02Z2009-07-12T16:45:02ZPByte is declared in System, so there should be no need to "use" Windows.http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1014512#1014512Comment by Allen Bauer on Problem with Delphi 2009 and old-style object typeAllen Bauer2009-06-18T20:30:06Z2009-06-18T20:30:06ZMinor nit: 1995 ;-) Trust me. My wife will never let me forget that date.http://stackoverflow.com/questions/916843/is-it-safe-to-use-free-instead-of-release-for-modal-forms-in-delphi/916857#916857Comment by Allen Bauer on Is it safe to use Free instead of Release for modal forms in Delphi?Allen Bauer2009-05-27T17:49:54Z2009-05-27T17:49:54ZIf MyForm is a local variable, using FreeAndNil() is certainly overkill. MyForm.Free is sufficient, in fact MyForm.Destroy would work just as well.http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/621826#621826Comment by Allen Bauer on Why does the Mac ABI require 16-byte stack alignment for x86-32?Allen Bauer2009-05-07T16:04:32Z2009-05-07T16:04:32ZIt doesn't seem to hurt the Windows and Linux kernels to not be aligned. What is so special about the MacOS on x86?http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/832624#832624Comment by Allen Bauer on Why does the Mac ABI require 16-byte stack alignment for x86-32?Allen Bauer2009-05-07T16:02:20Z2009-05-07T16:02:20ZThat is the best reason I can come up with as well... however the requirement is that the stack is aligned <i>before</i> the call. Once the callee is in control, the stack is no longer aligned! (the return address is now the top of the stack).http://stackoverflow.com/questions/760513/where-can-i-find-information-on-the-structure-of-the-delphi-vmt/761101#761101Comment by Allen Bauer on Where can I find information on the structure of the Delphi VMT?Allen Bauer2009-04-17T16:58:26Z2009-04-17T16:58:26ZI edited it to make it work for all versions at least back to D5.http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/670938#670938Comment by Allen Bauer on Delphi 2010 Beta: What's on your wishlist?Allen Bauer2009-04-14T19:19:37Z2009-04-14T19:19:37Z>Support .. Microsoft object .. format
Not only is it "very hard" but it is a veritable black hole of near futility. Supporting the <i>format</i> is completely different than supporting their object layout, name-mangling schemes, implicit links to the MS rtl, etc.. That is where it is nigh impossible.