User Rob Kennedy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:49:49Zhttp://stackoverflow.com/feeds/user/33732http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823542/how-to-send-a-http-post-request-in-delphi-using-wininet-api/1823920#18239200Answer by Rob Kennedy for How to send a HTTP POST Request in Delphi using WinInet api.Rob Kennedy2009-12-01T04:00:55Z2009-12-01T04:00:55Z<p>The third parameter (lpszObjectName) to <a href="http://msdn.microsoft.com/en-us/library/aa384233.aspx" rel="nofollow"><code>HttpOpenRequest</code></a> should be the <em>URL</em> you wish to request. That's why the documentation describes the fifth parameter (lpszReferer) as "a pointer to a null-terminated string that specifies the URL of the document from which the URL in the request (lpszObjectName) was obtained."</p>
<p>The posted data gets sent with <a href="http://msdn.microsoft.com/en-us/library/aa384247.aspx" rel="nofollow"><code>HttpSendRequest</code></a>; the lpOptional parameter is described like this:</p>
<blockquote>
<p>Pointer to a buffer containing any optional data to be sent immediately after the request headers. This parameter is generally used for POST and PUT operations. The optional data can be the resource or information being posted to the server. This parameter can be NULL if there is no optional data to send.</p>
</blockquote>
<p>The second parameter to <a href="http://msdn.microsoft.com/en-us/library/aa384363.aspx" rel="nofollow"><code>InternetOpen</code></a> should be <em>just the server name</em>; it should not include the protocol. The protocol you specify with the sixth parameter.</p>
<p>After you've sent the request, you can read the response with <a href="http://msdn.microsoft.com/en-us/library/aa385103.aspx" rel="nofollow"><code>InternetReadFile</code></a> and <a href="http://msdn.microsoft.com/en-us/library/aa385100.aspx" rel="nofollow"><code>InternetQueryDataAvailable</code></a>.</p>
<p>Don't just check whether the API functions return zero and then proceed on the next line. If they fail, call <code>GetLastError</code> to find out why. The code you've posted will not raise exceptions, so it's futile to catch any. (And it's foolish to "handle" them the way you're doing so anyway. Don't catch an exception that you don't already know how to fix. Let everything else go up to the caller, or the caller's caller, etc.)</p>
http://stackoverflow.com/questions/1819180/delphi-call-dll-with-function-pointer-parameter/1821340#18213402Answer by Rob Kennedy for (Delphi) Call DLL with function pointer parameterRob Kennedy2009-11-30T17:56:48Z2009-11-30T17:56:48Z<p>If you're not sure what you're doing, always start with the most <em>literal</em> translation. The function prototype says it receives a pointer to a pointer to a char, so that's what you should use:</p>
<pre><code>type
PTR_Allocate = procedure(param1: ^^Char; param2: ^LongWord); cdecl;
</code></pre>
<p>Once you're sure it's right, <em>then</em> start replacing things with their more Delphi-like equivalents. If you skip this first step, you might never get it right because you'll just keep making changes to something that started out wrong.</p>
<p>So, are you sure the above is right? Not quite. <code>Char</code> in Delphi can have different meanings depending on the product version. You're using Delphi 7, but you might upgrade, so you might share this code with someone else, so you should be explicit about what size Char you want. Use AnsiChar when you need a one-byte type.</p>
<pre><code>type
PTR_Allocate = procedure(param1: ^^AnsiChar; param2: ^LongWord); cdecl;
</code></pre>
<p>Now we can start making it look more like Delphi. One level of pointer parameter can be replaced with a "var" or "out" directive. Do that to each parameter:</p>
<pre><code>type
PTR_Allocate = procedure(out param1: ^AnsiChar; var param2: LongWord); cdecl;
</code></pre>
<p>Pointer-to-AnsiChar is such a common type that Delphi already has a name for it: PAnsiChar. Use the idiomatic name:</p>
<pre><code>type
PTR_Allocate = procedure(out param1: PAnsiChar; var param2: LongWord); cdecl;
</code></pre>
<p>And finally, you might wish to take some liberty with the whole notion that there are characters involved at all. You're clearly allocating memory for arbitrary byte buffers, so Byte is probably a better choice than any character type. Recent Delphi versions declare a pointer-to-byte type, so use that:</p>
<pre><code>type
PTR_Allocate = procedure(out param1: PByte; var param2: LongWord); cdecl;
</code></pre>
<p><hr></p>
<p>Now on to <code>SetAllocateFunction</code>. It says it receives a <code>PTR_Allocate</code> parameter, which is a pointer to a function. Delphi's procedure types are implicitly pointers, so the type we've declared above is already exactly right for the Delphi equivalent. Don't pass it by reference with an extra "var" directive or you will have the problems you've seen, even before your program attempts to allocate any memory. This is something the other answers have overlooked.</p>
<pre><code>procedure SetAllocateFunction(param: PTR_Allocate); cdecl;
</code></pre>
<p>Don't add an underscore to the start of the name, either, unless you <em>want</em> to make it inconvenient to call in your own code. If it's exported from the DLL using a different name, then use a "name" clause when you write the function's implementation:</p>
<pre><code>procedure SetAllocateFunction; extern 'foo.dll' name '_SetAllocateFunction';
</code></pre>
<p><hr></p>
<p>Finally, how to implement the allocation function. Start with something that matches the signature for PTR_Allocate, and then go ahead and implement it using as literal a translation as possible from the original C++ code.</p>
<pre><code>procedure Allocate(out pbuffer: PByte; var psize: LongWord; cdecl;
begin
psize := psize * 2;
GetMem(pbuffer, psize);
end;
</code></pre>
<p>You can set it with the function from before:</p>
<pre><code>SetAllocateFunction(Allocate);
</code></pre>
<p>Notice I didn't need a separate variable and I haven't used the <code>@</code> operator. If you need to use the <code>@</code> operator to mention a function pointer, in <em>most</em> cases, you're doing it wrong. You usually don't need it. Using that operator can <em>hide</em> errors in your program, such as signature mismatches, because the default setting is for the <code>@</code> operator to be <em>untyped</em>. Using it removes the type from the function pointer, and untyped pointers are compatible with everything in Delphi, so they fit with any other function-pointer type, including the ones with wrong signatures.</p>
<p>Only use <code>@</code> on a function pointer when the compiler has already indicated that it has tried to <em>call</em> the function, such as by mentioning how you don't have enough parameters or by mentioning the function's return type.</p>
http://stackoverflow.com/questions/1818291/is-there-any-tools-utility-to-convert-string-to-ansistring-in-pascal-source-f/1821187#18211871Answer by Rob Kennedy for Is there any tools/utility to convert "string" to "AnsiString" in pascal source files?Rob Kennedy2009-11-30T17:27:55Z2009-11-30T17:27:55Z<p>You can use <a href="http://unxutils.sourceforge.net/" rel="nofollow"><code>sed</code></a> for that.</p>
<pre>
sed -i bak -e "s/string/AnsiString/g" *.pas
</pre>
<p>It would be a very bad idea, though. <strong>There's no reason your code shouldn't compile in <em>all</em> Delphi versions.</strong> The meaning of "string" has changed, but so what? Your Delphi 2007 code doesn't need to be used <em>with</em> your Delphi 2009 code. The DCU file formats are different, so you'd have to recompile anything you change anyway.</p>
<p>By changing everything to AnsiString, you're essentially rejecting everything new that Delphi 2009 offers. If that's what you want to do, you could have saved yourself a lot of money by simply not upgrading to Delphi 2009 at all. Why buy a product and then not use any of its features? Since everything else in the product is Unicode, your program's performance will go down the tubes as it continually converts between string formats. You'll also drown in compiler warnings from all the conversions.</p>
<p>Don't force square pegs into round holes, especially when you have a perfectly good set of round pegs sitting right next to you.</p>
http://stackoverflow.com/questions/1795013/c-how-to-use-stdlessint-with-boostbind-and-boostlambda/1795041#17950412Answer by Rob Kennedy for C++: how to use std::less<int> with boost::bind and boost::lambda?Rob Kennedy2009-11-25T06:32:25Z2009-11-25T06:32:25Z<p>All you're missing is another <code>bind</code> (and the template parameters on <code>pair</code>):</p>
<pre><code>std::lower_bound(entries.begin(), entries.end(), k,
boost::bind(comparator,
boost::bind(&std::pair<int, string>::first, _1),
k))
</code></pre>
<p>You don't have to do that on the less-than operator in your original code because Boost.Bind provides overloads for that operator that know how to handle the return type of <code>boost::bind</code>.</p>
http://stackoverflow.com/questions/1794903/why-it-shows-nullpointerexception/1794942#179494211Answer by Rob Kennedy for why it shows NullPointerException?Rob Kennedy2009-11-25T05:55:26Z2009-11-25T06:23:00Z<p>It shows <code>NullPointerException</code> because you have a null pointer on line 149. I don't know which one is line 149, so let's consider the options:</p>
<pre><code>StringBuffer user = new StringBuffer();
</code></pre>
<p>Can't be that line. It's creating a new object.</p>
<pre><code>SystemManagement students = new SystemManagement();
</code></pre>
<p>Can't be that line, either, for the same reason. (Although I'm puzzled what a system management is, and why "students" would be a good name for such an object.)</p>
<pre><code>String name1 = students.getName();
</code></pre>
<p>Can't be that line. We already know <code>students</code> can't be null (or else the previous line would have thrown a different exception without allowing execution to reach this line at all).</p>
<pre><code>char char1 = name1.charAt(0);
</code></pre>
<p><strong>Maybe that one. Use your debugger</strong> to inspect the value of <code>name1</code>. Is it null? What name do you <em>expect</em> to get from a brand new system management?</p>
<pre><code>String family1 = students.getFamily();
</code></pre>
<p>Can't be that one.</p>
<pre><code>char char2 = family1.charAt(1);
</code></pre>
<p><strong>Maybe that one.</strong> What family do you expect from a brand new system management?</p>
<pre><code>setUserName(name1 + "." + family1);
</code></pre>
<p>Can't be this one. If either of those two string variables were null, you'd have gotten the exception earlier, when you called <code>charAt</code> on them.</p>
<p>Everything after that line either uses the two string objects or it uses newly created objects, so we can eliminate the rest of the method from consideration. Focus your attention on the two lines I pointed out (or on the one line that you <em>know</em> to be line 149).</p>
<p><hr></p>
<p>You've changed your code to check that <code>name1</code> and <code>family1</code> aren't null before you use them, but I don't think you've really considered the underlying problem. What is a new SystemManagement <em>supposed</em> to give you for user name and family name? Will they ever be anything <em>other</em> than null?</p>
<p>Obviously, one or both of those values is null, so you skip over everything else in the method up to the last line, where you call <code>getUserName</code>. Since you've skipped the call to <code>setUserName</code>, what value is <code>getUserName</code> supposed to return instead? (If you don't know, go find out.)</p>
<p>When you ask "Why does my program do <em>X</em>?" answer with another question: "Why <em>shouldn't</em> it do <em>X</em>?" You're the one writing the code, so the program is ultimately doing exactly what you told it to do. If it's not doing what you expected, then you gave it wrong instructions. Go through your code, one line at a time if you have to, and figure out where things went wrong. Make sure you understand exactly what each line of your code will do. If you have a line and you don't understand it, go read the documentation, ask your instructor, or ask here. Walk through the execution <em>on paper</em>, keeping track of each variable's value and crossing out old values as you re-assign them. If you have multiple instances of a class, make sure you keep track of which instance you're working with at any given time.</p>
<p>(Someday, you might hit a problem that's due to external factors. A buggy compiler, bad RAM, poorly implemented specifications, etc. Today is not that day. If you suspect any of those, make sure you've first thoroughly ruled out any possibility of it being your own mistake instead.)</p>
http://stackoverflow.com/questions/1772911/where-should-i-begin-when-building-a-component/1773039#17730395Answer by Rob Kennedy for Where should I begin when building a component?Rob Kennedy2009-11-20T20:26:40Z2009-11-20T20:26:40Z<p>As far as I know, <a href="http://rads.stackoverflow.com/amzn/click/0201461366" rel="nofollow"><em>Delphi Component Design</em></a>, by Danny Thorpe, is still the best book on the subject. Component design hasn't changed significantly in the last 15 years, so whatever books you have probably aren't as outdated as you think. There are three things to keep in mind while reading older references:</p>
<ol>
<li><p>Names of certain units have changed. There's no DsgnIDE anymore, for example. It's DesignIDE instead.</p></li>
<li><p>Design-time code is strictly separated from run-time code now. This means you can't use DesignIDE in your component's unit, or else you're barred from using run-time packages. Older Delphi versions didn't have this technical restriction (although it's always been a legal restriction), so old code examples you find might need to change a little bit.</p></li>
<li><p>Strings are Unicode now, so as with all old code examples you find, there might be some invalid assumptions about character sizes that you'll need to recognize.</p></li>
</ol>
<p>The biggest obstacle to writing components is that you're expected to use various <em>protected</em> members of the classes you descend from, but those frequently aren't documented, so you'll have to be much more willing to go read the VCL source code for examples of how various methods are used.</p>
http://stackoverflow.com/questions/1766583/working-with-ime-names-in-delphi/1767872#17678721Answer by Rob Kennedy for Working with IME names in DelphiRob Kennedy2009-11-20T02:02:15Z2009-11-20T02:02:15Z<p>They are not ISO language names. They are names of keyboard layouts. Look at the implementation of <code>TScreen.GetImes</code> in <em>Forms.pas</em> to see that the list comes from reading the <em>layout text</em> key values from the <em>HKey_Local_Machine\System\CurrentControlSet\Control\Keyboard Layouts</em> registry keys.</p>
<p>Some values from my computer that make it obvious it's not a list of language names include <em>Latin American</em>, <em>United Kingdom Extended</em>, <em>Chinese (Simplified) - US Keyboard</em>, <em>Divehi Phonetic</em>, <em>Lithuanian IBM</em>, and <em>Russian (Typewriter)</em>.</p>
http://stackoverflow.com/questions/1764478/regex-to-match-ampentity-or-amp0-9-and-capture-amp/1764608#17646082Answer by Rob Kennedy for Regex To Match &entity; or &#0-9; And Capture &Rob Kennedy2009-11-19T16:29:16Z2009-11-19T16:29:16Z<p>I gather that you want to match <code>&amp;</code>, but only if it is followed by an alphanumeric character or certain punctuation. That calls for <em>lookahead</em>. This regular expression should match what you want without capturing <em>or consuming</em> any additional characters.</p>
<p><code>(&amp;)(?=[#?a-zA-Z0-9;])</code></p>
http://stackoverflow.com/questions/1758917/delphi-pascal-overloading-a-constructor-with-a-different-prototype/1759217#17592177Answer by Rob Kennedy for Delphi/pascal: overloading a constructor with a different prototypeRob Kennedy2009-11-18T21:30:29Z2009-11-18T21:30:29Z<p>There's a really easy way to avoid this. <strong>Give your new constructor a different name.</strong> Unlike some other popular languages, Delphi has <em>named constructors</em>; you don't have to call them Create. You could call your new one CreateWithDataset and not interfere with the virtual Create constructor at all.</p>
<pre><code>TfrmEndoscopistSearch = class(TForm)
/// original constructor kept for compatibility
constructor Create(AOwner: TComponent); override;
/// additional constructor allows for a caller-defined base data set
constructor CreateWithDataset(AOwner: TComponent; ADataSet: TDataSet; ACaption: string = '');
end;
</code></pre>
<p>In fact, unless you're instantiating this class polymorphically, you don't even need the original constructor. You could declare your new one like this:</p>
<pre><code>TfrmEndoscopistSearch = class(TForm)
/// additional constructor allows for a caller-defined base data set
constructor Create(AOwner: TComponent; ADataSet: TDataSet; ACaption: string = ''); reintroduce;
end;
</code></pre>
<p>Attempting to call the one-argument constructor directly on TfrmEndoscopistSearch would yield a compilation error.</p>
<p><hr></p>
<p>(Creating it polymorphically would generally involve using Application.CreateForm:</p>
<pre><code>Application.CreateForm(TfrmEndoscopistSearch, frmEndoscopistSearch);
</code></pre>
<p>That always calls the one-argument virtual constructor introduced in TComponent. Unless it's your main form, you don't need to do that. I've written about <a href="http://www.cs.wisc.edu/~rkennedy/createform" rel="nofollow">my feelings on Application.CreateForm</a> before.)</p>
http://stackoverflow.com/questions/1757638/how-to-get-the-size-of-an-image-in-bytes-with-delphi/1757875#17578751Answer by Rob Kennedy for How to get the size of an image in bytes with Delphi?Rob Kennedy2009-11-18T17:55:00Z2009-11-18T17:55:00Z<p>TImage does not have any way to determine the size of whatever graphic it happens to be holding at a given time. That's not its job. Its job is only to <em>display</em> things. The TGraphic object manages the in-memory representation, and it also determines how to draw itself onto a given canvas. TImage really knows nothing at all. TGraphic might, but it doesn't necessarily keep track of the file size; that might be different from the amount of memory necessary to have the data in memory.</p>
<p>The way to determine the size of a file is to <em>have a file</em> or something file-like, such as a stream. As you mentioned in your comment, you can save the image to a stream and then find out the size of the stream.</p>
<pre><code>function GetGraphicSize(g: TGraphic): Integer;
var
ms: TStream;
begin
ms := TMemoryStream.Create;
try
g.SaveToStream(ms);
Result := ms.Size;
finally
ms.Free;
end;
end;
</code></pre>
<p>If that's too costly to compute each time you need the size, then remember the size from the first time you see the image so you don't need to computer it anew each time. How did the thumbnail list get its images to begin with? If they came from files, then you could have simply fetched the file size as you were generating the thumbnails.</p>
http://stackoverflow.com/questions/1753893/how-do-i-show-a-final-form-on-exiting-in-delphi/1754085#175408511Answer by Rob Kennedy for How Do I Show A Final Form On Exiting In Delphi?Rob Kennedy2009-11-18T06:39:09Z2009-11-18T06:39:09Z<p>Instead of trying to shoehorn something into the main form, go to the place where you <em>know</em> everything else is finished running: the point where <code>Application.Run</code> returns. Create a new procedure that creates, shows, and destroys your farewell form, and then call it in your DPR file like this:</p>
<pre><code>begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
TThankYouForm.Execute;
end.
</code></pre>
<p>The display function can be along the lines of <a href="http://stackoverflow.com/questions/1753893/how-do-i-show-a-final-form-on-exiting-in-delphi/1753942#1753942">what Mghie's answer demonstrated</a>:</p>
<pre><code>class procedure TThankYouForm.Execute;
begin
with Create(nil) do try
ShowModal;
finally
Free;
end;
end;
</code></pre>
http://stackoverflow.com/questions/1751256/how-to-get-hot-node-coords-of-tvirtualstringtree/1751852#17518522Answer by Rob Kennedy for How to get hot node coords of TVirtualStringTree?Rob Kennedy2009-11-17T21:16:24Z2009-11-17T21:16:24Z<p>You can get the coordinates of any node with the <code>GetDisplayRect</code> method. Also, <code>InvalidateNode</code> will tell you the coordinates of the node you just invalidated.</p>
<p>For your purposes, I don't think you need to know the coordinates of any arbitrary node, though. Instead, you need to know, when you're painting the node, whether the node you're painting is the hot one. All the node-specific owner-draw events tell you both the current node and the coordinates, except for <code>OnPaintText</code>, which only tells you the node. There's no need to track the current hot node yourself, though. Just check whether <code>Node = Sender.HotNode</code> to determine what style to use for painting the node and its text.</p>
<p>You might be able to avoid the whole issue, though. The control has a fair amount of hot-node-specific code already, so it might just be a matter of finding what properties to configure instead of having to paint everything yourself.</p>
http://stackoverflow.com/questions/1744763/passing-objects-as-parameters-cannot-nil-an-object/1744890#17448904Answer by Rob Kennedy for Passing objects as parameters - Cannot NIL an objectRob Kennedy2009-11-16T21:13:01Z2009-11-17T16:03:07Z<p>The correct way to implement this is to always be clear about who is responsible for every object. Who owns the cube?</p>
<p>If your display object owns the cube, then nobody else should ever attempt to free it. According to this code, calling <code>CubAssign</code> <em>transfers ownership</em> to the display object because the display object always frees the cube object. Therefore, any code that calls <code>CubAssign</code> must remember to never try to free the object itself.</p>
<p>One way to do that is to assign <code>nil</code> to the original cube reference. That way, the caller can't be tempted to free the object because it won't have any reference to it anyway.</p>
<p>Another way is to set a Boolean value somewhere. When the code calls <code>CubAssign</code>, it should afterward assign <code>False</code> to the associated Boolean value, like this:</p>
<pre><code>CubAssign(Cub, ReleaseCubOnExit);
IOwnCub := not ReleaseCubOnExit;
</code></pre>
<p>Then, when you're about the free the cube, check whether you own it first:</p>
<pre><code>procedure TForm1.FormDestroy(Sender: TObject);
begin
Display.CubRelease;
if IOwnCub then
Cub.Free;
end;
</code></pre>
<p>You claim that you don't know whether <code>CubRelease</code> actually freed anything. In fact you do, though, because the implementation you showed above <em>always</em> frees the object. I suspect you meant to make use of the <code>ReleaseCubOnExit</code> property like this:</p>
<pre><code>procedure TDisplay.CubRelease;
begin
if ReleaseCubOnExit then
FCub.Free;
FCub := nil;
Clear;
end;
</code></pre>
<p>The exception-catching code you had was pointless since it doesn't really solve what caused the exception, so I've removed it. I've also removed the check for whether <code>FCub</code> is a null reference because it doesn't matter. It's always safe to call <code>FreeOnNil</code> on a null reference, so don't bother checking beforehand. It just clutters your code. The <code>FreeOnNil</code> call itself was a little pointless, too, since you need the variable to be <code>nil</code> regardless of whether there's anything to free.</p>
<p>Once your display object is honoring the <code>ReleaseCubOnExit</code> property, your other code can use it, too. Instead of keeping track of ownership with that <code>IOwnCub</code> variable I mentioned before, you could use the display's property, like this:</p>
<pre><code>procedure TForm1.FormDestroy(Sender: TObject);
begin
Display.CubRelease;
if not Display.ReleaseCubOnExit then
Cub.Free;
Cub := nil;
end;
</code></pre>
<p><hr></p>
<p>So, why, when you free <code>FCub</code>, is <code>Cub</code> not also set to <code>nil</code>? Because that's not how variables work. They are two separate variables. You know this already, in fact. They start life as two variables. One belongs to the form class, and one belongs to the display class. You initialize the form's variable, probably something like this:</p>
<pre><code>Cub := TCube.Create;
</code></pre>
<p>Does that also set the value of the display object's <code>FCub</code> variable? No, of course not. Why should it? For <code>FCub</code> to get a value, you needed to assign it later, in the <code>CubAssign</code> method. They're two separate variables. Changes you make to the value of one does not affect the value of the other. Maybe the object part is confusing you. You know that separate integer variables aren't affected by each other, right?</p>
<pre><code>var
x, y: Integer;
x := 4;
y := x;
x := 3;
Assert(y = 4);
</code></pre>
<p>Although we assigned <code>y</code> using <code>x</code>, we can make further changes to <code>x</code> without affecting <code>y</code>. The assertion passes because <code>y</code> continues to retain its previous value, 4. The same goes for variables of object-reference type:</p>
<pre><code>var
x, y: TObject;
x := TObject.Create;
y := x;
x := nil;
Assert(y <> nil);
</code></pre>
<p>We changed the value of <code>x</code>, but the value of <code>y</code> remained intact.</p>
<p>Even though two variables <strong>refer</strong> to the same object, they are still two separate variables. The object itself exists independently of the two variables referring to it. Maybe a diagram will help.</p>
<pre>
Cub
+-----+
| o----+
+-----+ |
\ object
+-->+-------+
FCub / | |
+-----+ | | |
| o----+ +-------+
+-----+
</pre>
<p>Two variables referring to a single object.</p>
<p>Calling <code>Free</code> on a variable does not change the value of the variable. It only destroys the object <em>referred to</em> by the variable. That's why there are two different functions, <code>Free</code> and <code>FreeAndNil</code>. The latter assigns <code>nil</code> to the variable passed in. As we've established above, assigning a value to one variable won't change any others that happen to have the same value, so after you call <code>FreeAndNil(FCub)</code>, the diagram above changes to look like this:</p>
<pre>
Cub
+-----+
| o------> ???
+-----+
FCub
+-----+
| nil |
+-----+
</pre>
<p><code>Cub</code> is what we call a <em>dangling reference</em> because the arrow is just dangling off in space, not pointing to anything valid anymore.</p>
<p><hr></p>
<p>So, how do you fix this? The display object doesn't know about the other reference to the cube object. You could give the display a reference to the form at the same time you give it a reference to the cube:</p>
<pre><code>procedure TDisplay.CubAssign(Obj: TCube; Form: TForm1; ReleaseOnExit);
begin
FCub := Obj;
FForm := Form;
FReleaseOnExit := ReleaseOnExit;
end;
</code></pre>
<p>Then, when the cube is freed, clear the reference on the form, too:</p>
<pre><code>FreeAndNil(FCub);
FForm.Cub := nil;
</code></pre>
<p>That creates what's called <em>tight coupling</em>; the two classes now cannot exist apart from each other because the display form requires a <code>TForm1</code> instance. It won't work with any other kinds of forms, and the cubes it holds must belong to the form.</p>
<p>Tight coupling is generally a bad idea. It will fix this specific problem, so it probably looks good to you right now, but it will eventually stifle development of your program because you won't be able to reuse anything. A better solution to your dangling-reference problem is given by the first sentence of this answer. If the cube object can be destroyed at any time without the form's knowledge, then the form shouldn't be using its <code>Cub</code> variable anymore because it doesn't <em>own</em> the object it refers to.</p>
<p>You could mitigate the problem by giving the cube a list, where it can keep track of anyone who's interested in knowing about its destruction. The list could be one of <code>TNotifyEvent</code> method pointers. As the cube object is being destroyed, it can go through the list and call each of the method pointers. The form object will have previously registered a method with the cube object. When that method gets called, the <em>form</em> can clear its own reference to the cube. This way, the cube doesn't need to know where all its references are, and neither does the display. The form can use the <code>Cub</code> variable as long as the destruction method doesn't get called. This technique of notifications to interested parties is known as the <em>observer pattern</em>.</p>
http://stackoverflow.com/questions/1744505/should-i-subtract-1-from-the-upper-bound-of-my-for-loops/1745311#17453118Answer by Rob Kennedy for Should I subtract 1 from the upper bound of my "for" loops?Rob Kennedy2009-11-16T22:38:08Z2009-11-16T23:44:59Z<p>If you're only interested in the MDI children, as you seem to be, given you're using the form's <a href="http://docwiki.embarcadero.com/VCL/en/Forms.TCustomForm.MDIChildCount" rel="nofollow"><code>MDIChildCount</code></a>, then use the form's <a href="http://docwiki.embarcadero.com/VCL/en/Forms.TCustomForm.MDIChildren" rel="nofollow"><code>MDIChildren</code></a> property. Those two properties go together, just like the screen's <a href="http://docwiki.embarcadero.com/VCL/en/Forms.TScreen.FormCount" rel="nofollow"><code>FormCount</code></a> and <a href="http://docwiki.embarcadero.com/VCL/en/Forms.TScreen.Forms" rel="nofollow"><code>Forms</code></a> properties are a pair. Your code is mixing a <em>form</em> property with a <em>screen</em> property.</p>
<pre><code>begin
for I := 0 to MDIChildCount - 1 do
begin
if MDIChildren[I] is TFrmMessage then
begin
</code></pre>
<p>Furthermore, you should definitely subtract 1 from the number of query managers, or else it means you're not properly keeping track of how many query managers you have in the first place. The "-1" you see in most code is there because the upper bound of a Delphi "for" loop is <em>inclusive</em>. The loop variable will start at the lower bound and the loop will continue running until the variable <em>passes</em> the upper bound. It may help you to reason about what happens in the base case, when there are no items in the list. In that case, the loop shouldn't run at all, right? Because there's nothing there to find. A loop set to run from "<code>0 to 0</code>" will execute one time, so the upper bound would need to be <em>negative</em> to prevent the loop from running. (This is all described in <a href="http://docwiki.embarcadero.com/RADStudio/en/Declarations%5Fand%5FStatements#For%5FStatements" rel="nofollow">the documentation</a>.)</p>
<p>As for why your function returns a null reference even when you think it shouldn't, I can only assume that it's due to the other problems in your code. Perhaps you're not looping over as many forms as you thought you were, or perhaps you're going beyond the end of the query-manager list and getting some undefined value. The placement of your <code>Result</code> assignment is correct, although it doesn't really matter where you put it since the only other place it gets assigned is right before the function exits.</p>
<p><hr></p>
<p>I see <a href="http://forums.about.com/ab-delphi/messages?lgnF=y&msg=18302.1" rel="nofollow">you asked about MDI children</a> on About.com. There, <a href="http://delphi.about.com/od/delphitips2009/qt/delphi-mdi-child-count-by-class.htm" rel="nofollow">Zarco Gajic answered your question</a> by giving you code like this:</p>
<pre><code>for cnt := 0 to -1 + MDIChildCount do
</code></pre>
<p>Although it's valid code, it is not idiomatic. I have never seen anyone else write code like that before, so you would be wise not to pick up that habit. When we want one less than something, we do not add a literal negative one to the value. Rather, we subtract positive one:</p>
<pre><code>for cnt := 0 to MDIChildCount - 1 do
</code></pre>
<p>Alternatively, I sometimes use the <a href="http://docwiki.embarcadero.com/VCL/en/System.Pred" rel="nofollow"><code>Pred</code></a> standard function:</p>
<pre><code>for cnt := 0 to Pred(MDIChildCount) do
</code></pre>
http://stackoverflow.com/questions/859024/how-can-i-use-jquery-in-greasemonkey/859092#8590926Answer by Rob Kennedy for How can I use jQuery in Greasemonkey?Rob Kennedy2009-05-13T16:50:52Z2009-11-16T08:58:51Z<p>Perhaps you don't have a recent enough version of Greasemonkey. It was version 0.8 that added <code>@require</code>. Also, remember that <code>@require</code> is <strong>only processed when the script is first installed.</strong> If you change the list of required scripts, you need to uninstall it and reinstall it; Greasemonkey downloads the required script once at installation and uses a cached copy thereafter.</p>
<p>Have you tried the technique given on the <a href="http://wiki.greasespot.net/Main%5FPage" rel="nofollow">Greasespot wiki</a>, which adds a <code>script</code> element manually?</p>
<ul>
<li><a href="http://wiki.greasespot.net/Code%5Fsnippets#Use%5FjQuery%5Fin%5Fa%5FGreaseMonkey%5Fscript" rel="nofollow">Use jQuery in a GreaseMonkey script</a></li>
</ul>
http://stackoverflow.com/questions/1734757/delphi-2009-idirc-mdi-and-problems-with-hanging/1735300#17353002Answer by Rob Kennedy for (Delphi 2009) idIRC, MDI, and problems with hanging.Rob Kennedy2009-11-14T19:23:23Z2009-11-14T19:23:23Z<p><a href="http://groups.google.com/group/alt.comp.lang.borland-delphi/msg/0af6b3e8e8bd98ac" rel="nofollow">As I told you in <em>alt.comp.lang.borland-delphi</em> earlier today</a>, the problem is that Indy runs its event handlers in the same thread that does the blocking socket calls, which is not the same thread as your GUI. All GUI operations must take place in the same thread, but you are creating a new window in the socket thread.</p>
<p>To solve it, your event handler should post a notification to the main thread, which the main thread will handle asynchronously whenever it happens to next check for messages.</p>
<p>If you have a recent-enough Delphi version, you could try the <a href="http://docwiki.embarcadero.com/VCL/en/Classes.TThread.Queue" rel="nofollow"><code>TThread.Queue</code></a> method, which works a lot like <a href="http://docwiki.embarcadero.com/VCL/en/Classes.TThread.Synchronize" rel="nofollow"><code>Synchronize</code></a>, except the calling thread doesn't block waiting for the main thread to run the given method. They both have the same limitation regarding their method parameters, though; they only accept a zero-parameter method. That makes it cumbersome to transfer extra information for the method to use when it's eventually called. It's particularly bad for <em>queued</em> methods since whatever extra data you provide for them must remain intact for as long as it takes for the main thread to run it; the calling thread needs to make sure it doesn't overwrite the extra data before the queued method gets called.</p>
<p>A better plan is probably to just post a message to some designated window of the main thread. <a href="http://docwiki.embarcadero.com/VCL/en/Forms.TApplication.MainForm" rel="nofollow"><code>Application.MainForm</code></a> is a tempting target, but Delphi forms are liable to be re-created without notice, so whatever window handle your other threads use might not be valid at the time they try to post a message. And reading the <code>MainForm.Handle</code> property on demand isn't safe, either, since if the form has no handle at the time, it will get created in the socket thread's context, which will cause all sorts of problems later. Instead, have the main thread create a new dedicated window for receiving thread messages with <a href="http://docwiki.embarcadero.com/VCL/en/Classes.AllocateHWnd" rel="nofollow"><code>AllocateHWnd</code></a>.</p>
<p>Once you have a target for messages to go to, you can arrange for threads to post and receive them. Define a message value and post them with <code>PostMessage</code>.</p>
<pre><code>const
am_NewQuery = wm_App + 1;
PostMessage(TargetHandle, am_NewQuery, ...);
</code></pre>
<p>To send the extra data the recipient will need to fully handle the event, messages have two parameters. If you only need two pieces of information, then you can pass your data directly in those parameters. If the messages need more information, though, then you'll need to define a record to hold it all. It could look something like this:</p>
<pre><code>type
PNewQuery = ^TNewQuery;
TNewQuery = record
Host: string;
FromNickname: string;
end;
</code></pre>
<p>Prepare and post the message like this:</p>
<pre><code>procedure NewQuery(const Server, MsgFrom: string);
var
Data: PNewQuery;
begin
New(Data);
Data.Host := Server;
Data.FromNickname := MsgFrom;
PostMessage(TargetHandle, am_NewQuery, 0, LParam(Data));
end;
</code></pre>
<p>Note that the caller allocates a new record pointer, but it does not free it. It will get freed by the recipient.</p>
<pre><code>class procedure TSomeObject.HandleThreadMessage(var Message: TMessage);
var
NewQueryData: PNewQuery;
begin
case Message.Msg of
am_NewQuery: begin
NewQueryData := PNewQuery(Message.LParam);
try
Child := TFrmMessage.Create(NewQueryData.Host, NewQueryData.FromNickname);
TN := GetNodeByText(ChanServTree, NewQueryData.Host, True); // Find parent node
with ChanServTree.Items.AddChild(TN, NewQueryData.FromNickname) do begin
Selected := True;
Tag := 2; // TYPE OF QUERY
Data := Child; // reference to form we created
end;
finally
Dispose(NewQueryData);
end;
end;
else
Message.Result := DefWindowProc(TargetHandle, Message.Msg, Message.WParam, Message.LParam);
end;
end;
</code></pre>
<p>I've made a couple of other changes to your code. One is that I made the child form's constructor accept the two pieces of information it needs to create itself properly. If the form wants its caption to be the nickname, then just tell it the nickname and let the form do whatever it needs to with that information.</p>
http://stackoverflow.com/questions/1718273/what-does-this-if-statement-containing-very-similar-regular-expression-matches-do/1718352#17183522Answer by Rob Kennedy for What does this if statement containing very similar regular expression matches do?Rob Kennedy2009-11-11T21:58:58Z2009-11-11T21:58:58Z<p>In this context, the "/" character is not acting as a mathematical division operator or as some kind of prefix (like for Windows command-line options). Rather, "/" is the usual <em>quoting</em> character for enclosing <strong>regular expressions</strong>.</p>
<p>Everything between the pair of slashes forms a regular expression and does not denote any executable code, which brings us to what I suspect was another source of confusion by thinking that the "=" in there was some kind of assignment or equality operator. Inside a regular expression, it's just an ordinary character, as is the space character. Spaces are significant, and the presence or absence of one means that those two regular expressions are not identical. They can be consolidated into a single regular expression as demonstrated by Sinan's answer, using the "?" regular-expression operator.</p>
http://stackoverflow.com/questions/1713376/how-do-i-get-a-handle-to-splitwinmain/1713450#17134500Answer by Rob Kennedy for How do I get a handle to split_winmainRob Kennedy2009-11-11T06:36:38Z2009-11-11T06:36:38Z<p>That function is declared in the <code>boost::program_options</code> namespace. If all you do is use its name alone, the compiler doesn't know what you're talking about. You have a few options:</p>
<ul>
<li><p>Use the fully qualified name when you call it:</p>
<pre><code>boost::program_options::split_winmain(...);
</code></pre></li>
<li><p>Tell the compiler which function you mean:</p>
<pre><code>using boost::program_options::split_winmain;
split_winmain(...);
</code></pre></li>
<li><p>Bring the entire namespace into the current scope:</p>
<pre><code>using namespace boost::program_options;
split_winmain(...);
</code></pre></li>
<li><p>Make a namespace alias:</p>
<pre><code>namespace po = boost::program_options;
po::split_winmain(...);
</code></pre></li>
</ul>
<p>I prefer the last one.</p>
<p>Do not define the <code>_WIN32</code> macro; the compiler will do that for you when it's appropriate.</p>
http://stackoverflow.com/questions/1704895/access-violation-when-calling-external-function-c-from-delphi-application/1705063#17050633Answer by Rob Kennedy for Access violation when calling external function (C++) from Delphi applicationRob Kennedy2009-11-10T01:10:30Z2009-11-10T01:10:30Z<p>The first thing you need to do is make sure your struct definitions are the same. Unless you're using a 16-bit C++ compiler, the type <code>unsigned int</code> is definitely not a 16-bit type, and yet Delphi's <code>Word</code> type is. Use <code>Cardinal</code> instead. If you have Delphi 2009 or later, then your <code>Char</code> type is a two-byte type; use <code>AnsiChar</code> instead.</p>
<p>Even with those changes, though, you're doomed. Your C++ type uses the Microsoft-specific <code>CString</code> type. There is no equivalent to that in Delphi or any other non-Microsoft-C++ language. You've attempted to use Delphi's <code>string</code> type in its place, but they are only similar in their names. Their binary layout in memory is not the same at all.</p>
<p>There is nothing you can with that struct definition.</p>
<p>If you or someone else in your organization is the author of that DLL, then change it to look more like every other DLL you've ever used. Pass character pointers or arrays, not any class type. If the DLL is from another party, then request the author to change it for you. That choice of API was irresponsible and short-sighted.</p>
<p>If you can't do that, then you'll have to write a wrapper DLL in C++ that takes the C++ struct and converts it to another struct that's more friendly to non-C++ languages.</p>
http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking/1701864#17018642Answer by Rob Kennedy for How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks?Rob Kennedy2009-11-09T15:44:12Z2009-11-09T15:44:12Z<p>If you don't want to risk crashes or memory leaks, then craft your API using the Windows API as a model. There, the API functions generally don't allocate their own memory. Instead, the caller passes a buffer and tells the API how big the buffer is. The API fills the buffer up to that limit. See the <code>GetWindowText</code> function, for example. Functions don't <em>return</em> pointers, unless they're pointers to things the caller already provided. Instead, the caller provides everything itself, and the function just uses whatever it's given. You almost never see an output buffer parameter that isn't accompanied by another parameter telling the buffer's size.</p>
<p>A further enhancement you can make to that technique is to allow the function to <em>tell</em> the caller how big the buffer needs to be. When the input pointer is a null pointer, then the function can return how many bytes the caller needs to provide. The caller will call the function twice.</p>
<p>You don't need to derive your API from scratch. Use already-working APIs as examples for how to expose your own.</p>
http://stackoverflow.com/questions/1700366/loading-a-delphi-object-run-time-using-bpl/1701568#17015680Answer by Rob Kennedy for Loading a Delphi Object Run Time using BPLRob Kennedy2009-11-09T15:01:05Z2009-11-09T15:01:05Z<p>I see nothing in your problem description suggesting you would need to explicitly export anything from the package or that you would need to load it dynamically at run time. Instead, it's enough that your functions reside in a run-time package that can be replaced separately from the main program.</p>
<p>Start a new package project and move your class's unit into that project along with any other units it depends on. Compile the project. If the compiler warns about "implicitly including" any other units, add those to the package, too.</p>
<p>Now, remove any of the package units from the EXE project. There should be no units that are members of both projects. Next, turn on the "build with run-time packages" checkbox in your EXE's project options. Add your package to the semicolon-separated list of package names. The RTL and VCL packages will probably also be on that list.</p>
<p>Compile both projects, and you're done.</p>
<p>If you make changes to your class implementation, you can recompile the package only and send a new version to customers. The program will automatically get the new changes when you replace the original file with the new one. The package is listed in the program's import table, so the OS will automatically load the BPL file when it loads the EXE. The EXE doesn't need to run any special code to load the package.</p>
http://stackoverflow.com/questions/1699490/regular-expression-in-javascript/1699524#16995240Answer by Rob Kennedy for Regular expression in javascript?Rob Kennedy2009-11-09T07:09:28Z2009-11-09T07:09:28Z<p>You can write a <em>regular expression literal</em> enclosed in slashes like this:</p>
<pre><code>var re = /\w+/;
</code></pre>
<p>That matches something that contains one or more word characters.</p>
<p>You can also create a regular expression from a string:</p>
<pre><code>var re = new RegExp("\\w+");
</code></pre>
<p>Notice that since that's a string literal, I have to double the backslash to <em>escape</em> its special meaning for strings.</p>
http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699401#16994016Answer by Rob Kennedy for Returning a string from a BPL functionRob Kennedy2009-11-09T06:38:15Z2009-11-09T06:38:15Z<p>You haven't configured your EXE project to "build with run-time packages." Find that in the "packages" section of your project options. (<a href="http://docwiki.embarcadero.com/RADStudio/en/Packages%5F%28Options%29" rel="nofollow">Documentation</a>)</p>
<p>The <a href="http://docwiki.embarcadero.com/VCL/en/SysUtils.EInvalidPointer" rel="nofollow">EInvalidPointer</a> exception comes when a memory manager tries to free something that it didn't allocate. That suggests you have two different memory managers active. Your BPL is using the one from the RTL package, which appears on your package's "requires" list. Your EXE, on the other hand, is using the memory manager compiled into the EXE module.</p>
<p>Fix that by telling your EXE to use run-time packages, and then make sure the RTL package is on the list of required packages.</p>
http://stackoverflow.com/questions/1697329/getting-object-as-a-result-from-func-proc-in-delphi/1697780#16977806Answer by Rob Kennedy for Getting object as a result from func/proc in DelphiRob Kennedy2009-11-08T20:14:21Z2009-11-08T20:14:21Z<p><strong>There is no best practice.</strong> The primary thing you should do, though, is to make sure it's always clear who is responsible for destroying the object at any given time, even when an exception occurs.</p>
<p>There's nothing wrong with a function creating a new instance and returning it. Such a function is a <a href="http://en.wikipedia.org/wiki/Factory%5Fmethod%5Fpattern" rel="nofollow"><em>factory</em></a>. You can treat it just like a class's constructor, so you should make sure that it behaves like a constructor: Either return a valid object or throw an exception. It never returns a null reference.</p>
<pre><code>function Func: TMyObj;
begin
Result := TMyObj.Create;
try
Result.X := Y;
except
Result.Free;
raise;
end;
end;
</code></pre>
<p>That's an exception-handling pattern you don't see very often, but it's important for this style of function. Returning the object <em>transfers ownership</em> from the function to the caller, but only if it manages to execute completely. If it has to leave early because of an exception, it frees the object because the caller has no way to free it itself. (Functions that terminate due to an exception do not have return values.) The caller will use it like this:</p>
<pre><code>O := Func;
try
writeln(O.X);
finally
O.Free;
end;
</code></pre>
<p>If there's an exception in <code>Func</code> then <code>O</code> never gets assigned, so there's nothing available for the caller to free.</p>
<p><hr></p>
<p>When the caller creates the object and you pass it to another function to initialize it, do not make the parameter a "var" parameter. That places certain restrictions on the caller, who must use a variable of exactly the type requested by the function, even if some descendant type was created instead.</p>
<p>Such a function should <em>not</em> free the object. The caller doesn't grant ownership responsibility to the functions it calls, especially when it plans on using the object after the function returns.</p>
http://stackoverflow.com/questions/1691176/how-do-i-use-gdi-to-change-the-color-of-a-line-when-it-overlaps-a-region/1691389#16913893Answer by Rob Kennedy for How do I use GDI+ to change the color of a line when it overlaps a region?Rob Kennedy2009-11-07T00:18:44Z2009-11-07T00:18:44Z<p>Both methods seem viable.</p>
<p>To do your first method, define three <a href="http://msdn.microsoft.com/en-us/library/system.drawing.region.aspx" rel="nofollow"><code>Region</code></a> or <a href="http://msdn.microsoft.com/en-us/library/system.drawing.rectangle.aspx" rel="nofollow"><code>Rectangle</code></a> objects for the three ranges in your graph, and then make three <a href="http://msdn.microsoft.com/en-us/library/system.drawing.pen.aspx" rel="nofollow"><code>Pen</code></a> objects, each with a different color. Call the <a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.setclip.aspx" rel="nofollow"><code>Graphics.SetClip</code></a> method for the first region, and draw your entire curve using the first pen. Anything outside the current clipping region won't show up, so you don't have to worry about figuring out the intersection points yourself. Then set the clipping region to the second region and draw the entire curve again using the second pen. Repeat using the third region and pen.</p>
<p>For your second method, create a <a href="http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx" rel="nofollow"><code>Bitmap</code></a> with the full height of your drawing area, with any width. Paint the entire bitmap with the color regions you want. Define a <a href="http://msdn.microsoft.com/en-us/library/system.drawing.texturebrush.aspx" rel="nofollow">textured brush</a> and use it to create you pen. Then draw the entire path at once. <a href="http://msdn.microsoft.com/en-us/library/swtkt67b.aspx" rel="nofollow">MSDN has an example.</a></p>
http://stackoverflow.com/questions/1690908/more-memory-for-tmemo-trichedit/1691039#16910395Answer by Rob Kennedy for more memory for TMemo / TRichEditRob Kennedy2009-11-06T22:47:35Z2009-11-06T22:47:35Z<p>Allocate memory with <a href="http://msdn.microsoft.com/en-us/library/cc430149.aspx" rel="nofollow"><code>LocalAlloc</code></a> and then give it to the edit control with the <a href="http://msdn.microsoft.com/en-us/library/bb761641.aspx" rel="nofollow"><code>em_SetHandle</code></a> message. You can handle the <a href="http://msdn.microsoft.com/en-us/library/bb761678.aspx" rel="nofollow"><code>en_ErrSpace</code></a> notification if the edit control requires more space. MSDN describes the process in the <a href="http://msdn.microsoft.com/en-us/library/bb775456.aspx#text%5Fbuffer" rel="nofollow">"About Edit Controls" article</a>. It doesn't work on rich-edit controls, though; they don't store their data in a contiguous buffer like edit controls do.</p>
http://stackoverflow.com/questions/1687935/how-do-i-remove-items-from-the-default-right-click-menu-in-delphi-2010/1688054#16880547Answer by Rob Kennedy for How do I remove items from the default right-click menu in Delphi 2010?Rob Kennedy2009-11-06T14:46:23Z2009-11-06T14:46:23Z<p>The OS inserts them. The entire menu is generated by the underlying Windows control, not by Delphi.</p>
<p>To have a different menu, provide your own <code>TPopupMenu</code> component, set the control's <code>PopupMenu</code> property, and provide whatever menu items you want.</p>
http://stackoverflow.com/questions/1685083/compiling-matlab-to-c-problem-fatal-error-c1083-cannot-open-include-file-wi/1685177#16851772Answer by Rob Kennedy for Compiling Matlab to C++ Problem: fatal error C1083: Cannot open include file: 'windows.h' Rob Kennedy2009-11-06T03:13:07Z2009-11-06T03:13:07Z<p>The error message you quote comes from Visual C++, so you're clearly <em>not</em> using lcc, and thus it won't make any difference what files you put in lcc's directories. Try running <code>mbuild -setup</code> to configure Matlab to use a different compiler command.</p>
<p>If you (or Matlab, on your behalf) are going to run the Visual C++ command-line compiler, then you should run it in a command prompt with all the right environment variables set up, such as the include path. Visual Studio should have put an item on your Start menu for that, or else you can run the <code>vsvars32.bat</code> file from within some other console window.</p>
http://stackoverflow.com/questions/1683708/delphi-mdi-application-next-window-menu-item/1684553#16845531Answer by Rob Kennedy for Delphi MDI Application Next Window menu itemRob Kennedy2009-11-06T00:09:51Z2009-11-06T00:09:51Z<p>Send the main form a <a href="http://msdn.microsoft.com/en-us/library/ms646360.aspx" rel="nofollow"><code>wm_SysCommand</code></a> message. Use <code>sc_NextWindow</code> or <code>sc_PrevWindow</code> for the <em>wParam</em> parameter.</p>
http://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphi/1679467#16794676Answer by Rob Kennedy for Quick padding of a string in DelphiRob Kennedy2009-11-05T09:51:10Z2009-11-05T09:51:10Z<p>Your new function involves three strings, the input, the result from <code>StringOfChar</code>, and the function result. One of them gets destroyed when your function returns. You could do it in two, with nothing getting destroyed or re-allocated.</p>
<ol>
<li>Allocate a string of the total required length.</li>
<li>Fill the first portion of it with your padding character.</li>
<li>Fill the rest of it with the input string.</li>
</ol>
<p>Here's an example:</p>
<pre><code>function cwLeftPad(const aString: AnsiString; aCharCount: Integer; aChar: AnsiChar): AnsiString;
var
PadCount: Integer;
begin
PadCount := ACharCount - Length(AString);
if PadCount > 0 then begin
SetLength(Result, ACharCount);
FillChar(Result[1], PadCount, AChar);
Move(AString[1], Result[PadCount + 1], Length(AString));
end else
Result := AString;
end;
</code></pre>
<p>I don't know whether Delphi 2009 and later provide a double-byte Char-based equivalent of FillChar, and if they do, I don't know what it's called, so I have changed the signature of the function to explicitly use AnsiString. If you need WideString or UnicodeString, you'll have to find the FillChar replacement that handles two-byte characters. (FillChar has a confusing name as of Delphi 2009 since it doesn't handle full-sized Char values.)</p>
<p>Another thing to consider is whether you really need to call that function so often in the first place. The fastest code is the code that never runs.</p>
http://stackoverflow.com/questions/1826577/create-process-doesnt-workComment by Rob Kennedy on Create Process doesn't workRob Kennedy2009-12-01T14:57:32Z2009-12-01T14:57:32ZDidn't the compiler warn you about the uninitialized <code>si</code> variable? Never ignore compiler warnings.http://stackoverflow.com/questions/1824507/switch-off-the-new-delphi-2010-find-feature/1825510#1825510Comment by Rob Kennedy on Switch off the new Delphi 2010 Find featureRob Kennedy2009-12-01T14:52:38Z2009-12-01T14:52:38ZSo, what is your answer to the question of how to turn off the new search functionality and use the old instead?http://stackoverflow.com/questions/1824373/delphi-copy-string-to-byte-array/1824541#1824541Comment by Rob Kennedy on Delphi, Copy string to Byte arrayRob Kennedy2009-12-01T14:47:57Z2009-12-01T14:47:57ZThat doesn't copy anything, and it makes <code>a</code> point to something that isn't what its type says it is.http://stackoverflow.com/questions/1824533/what-does-it-mean-by-c-runtime/1824542#1824542Comment by Rob Kennedy on What does it mean by C++ runtime?Rob Kennedy2009-12-01T13:41:24Z2009-12-01T13:41:24ZAre you asking us or telling us, Benny?http://stackoverflow.com/questions/1818291/is-there-any-tools-utility-to-convert-string-to-ansistring-in-pascal-source-f/1821187#1821187Comment by Rob Kennedy on Is there any tools/utility to convert "string" to "AnsiString" in pascal source files?Rob Kennedy2009-12-01T02:57:50Z2009-12-01T02:57:50ZThen the first thing you should try is to not change anything at all. Test your program with the new compiler. Find out what actual problems you have.http://stackoverflow.com/questions/1817262/shlwapi-strformatbytesize-and-delphi-2010-unicode/1817470#1817470Comment by Rob Kennedy on ShLwApi.StrFormatByteSize and Delphi 2010 UnicodeRob Kennedy2009-11-30T05:13:55Z2009-11-30T05:13:55ZThe call to FillChar isn't very useful anyway. Avoid the risk of calling it incorrectly (as Bill did) by not calling it at all.http://stackoverflow.com/questions/1817262/shlwapi-strformatbytesize-and-delphi-2010-unicodeComment by Rob Kennedy on ShLwApi.StrFormatByteSize and Delphi 2010 UnicodeRob Kennedy2009-11-30T05:05:35Z2009-11-30T05:05:35ZFix it? What makes <i>you</i> think there's something wrong with it? Did you do anything to attempt to debug it? Do you understand how it's supposed to work? Have you read the documentation for the functions you're calling? What Web site did you copy this code from, anyway?http://stackoverflow.com/questions/1810055/which-is-the-correct-text-comparison-method-for-an-international-application-an/1810290#1810290Comment by Rob Kennedy on which is the correct text comparison method for an international application...AnsiCompareText or CompareText?Rob Kennedy2009-11-28T21:25:39Z2009-11-28T21:25:39ZThe Ansi functions are Unicode as of Delphi 2009. (Didn't the readme mention that?) Compatibility of function names was deemed more important than strictly logical function names. Also see the new AnsiStrings unit, which has the old MBCS functions.http://stackoverflow.com/questions/1809816/how-to-use-stdtransform-with-templates/1809885#1809885Comment by Rob Kennedy on How to use std::transform with templatesRob Kennedy2009-11-27T17:42:37Z2009-11-27T17:42:37ZAnd the <i>reason</i> it works is that <code>bind1st</code> doesn't accept ordinary function pointers. It requires functor objects. The <code>mem_fun</code> and <code>ptr_fun</code> functions turn function pointers into functors suitable for use with the binders.http://stackoverflow.com/questions/1796777/delphi-call-a-dll/1797007#1797007Comment by Rob Kennedy on Delphi call a DLLRob Kennedy2009-11-25T23:02:30Z2009-11-25T23:02:30ZThe parameters should be passed by value or by reference according to how they're declared in the C++, C#, and Delphi declarations shown above. You don't get much leeway there. If you have documentation for this function, then I urge you to post a <i>new</i> question about how to call the function; include a link to the documentation, or at least tell everyone what product this function belongs to. "API.dll" isn't helpful at all.http://stackoverflow.com/questions/1796777/delphi-call-a-dll/1797007#1797007Comment by Rob Kennedy on Delphi call a DLLRob Kennedy2009-11-25T18:18:08Z2009-11-25T18:18:08ZAre you the one who asked the question? Please remember to log in with the same credentials you used before. Regardless, how is anyone supposed to demonstrate how to call this function? We have no idea where it's from or what it's supposed to do. If you know, then go check the documentation.http://stackoverflow.com/questions/1796777/delphi-call-a-dll/1797746#1797746Comment by Rob Kennedy on Delphi call a DLLRob Kennedy2009-11-25T18:15:45Z2009-11-25T18:15:45ZMason, <code>char**</code> also means "a simple char buffer to be allocated by the called function and returned to the caller." The C# declaration is especially telling in that regard.http://stackoverflow.com/questions/1796777/delphi-call-a-dll/1796874#1796874Comment by Rob Kennedy on Delphi call a DLLRob Kennedy2009-11-25T18:11:38Z2009-11-25T18:11:38ZIf it holds an image, then <code>Byte</code> is almost certainly a better choice, as reflected by the C# declaration. The C++ code should have used <code>unsigned char</code>.http://stackoverflow.com/questions/1797423/convert-function-to-delphi-2010-unicode/1798641#1798641Comment by Rob Kennedy on convert function to delphi 2010 (unicode)Rob Kennedy2009-11-25T18:01:49Z2009-11-25T18:01:49ZWelcome to Stack Overflow. The "answer" section is for <i>answers</i> to the question. What you have posted here is not an answer. It belongs as a <i>comment</i> responding to Mghie's answer. Your reputation is still low, so you can't leave comments everywhere, but the minimum is waived for your own questions, so you are allowed to comment here. I recommend you delete this "answer" before other people come along and vote it down (since it's not helpful in answering your question).http://stackoverflow.com/questions/1797423/convert-function-to-delphi-2010-unicodeComment by Rob Kennedy on convert function to delphi 2010 (unicode)Rob Kennedy2009-11-25T17:55:18Z2009-11-25T17:55:18ZSay, what happens if I have a real file named "NOT a shortuct by extension!" and I make a link to it? How will this function's caller know the difference?