User Uwe Raabe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:17:56Zhttp://stackoverflow.com/feeds/user/26833http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aero1How to programmatically disable window animation under Vista Aero?Uwe Raabe2009-07-16T12:14:19Z2009-12-04T16:40:03Z
<p>My application does automated screenshots of several dynamically created forms. This works perfectly under Windows XP, but doesn't work well under Vista Aero. Most of the forms appear semitransparent in the screenshots. The problem lies in the window animation of Aero.</p>
<p>How can I check/disable/enable this animation from inside a Delphi (2007+) program?</p>
<p>Or as an alternative: How can I make sure the form is displayed properly before making the screenshot?</p>
http://stackoverflow.com/questions/1775962/can-i-create-an-object-of-the-same-type-as-itself/1776420#17764202Answer by Uwe Raabe for Can I create an object of the same type as itself?Uwe Raabe2009-11-21T19:07:55Z2009-11-21T19:07:55Z<p>If you have a new class derived from TMyObject like <code>TMyOtherObject = class(TMyObject)</code>, the TrimEnds function will still return a TMyObject instead of a TMyOtherObject as one might expect.</p>
<p>You can fix this by using this scheme:</p>
<pre><code>TMyObjectClass = class of TMyObject;
function TMyObject.TrimEnds: TMyObject;
begin
Result:= TMyObjectClass(ClassType).Create;
Result.DoStuff;
end;
</code></pre>
http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de4What are the ways of interchanging string data between clients and a server in Delphi?Uwe Raabe2009-11-13T13:48:25Z2009-11-17T11:14:15Z
<p>I have a server and some clients (about 50) in an intranet. The clients send short (about 40 character) string data to the server and the server answers with a similar string. There are up to (but not permanently) 2-3 requests per second for each client. The server has to serialize the requests to get the response strings.</p>
<p>The system should have as less as possible impact on the network as possible (i.e. the server may run something like a webserver already). It should be as easy to install and administer as possible.</p>
<p>What are the possibilities to achieve this using Delphi (Client: D7, Server up to D2010)?</p>
http://stackoverflow.com/questions/1740320/how-to-show-hex-code-char/1740624#17406245Answer by Uwe Raabe for how to show hex code char ?Uwe Raabe2009-11-16T07:28:08Z2009-11-16T15:46:38Z<p>If you are in D2009/2010:</p>
<pre><code>var
F: TextFile;
Line: string;
Code: Integer;
Ch: Char;
...
Readln(F, Line);
Code := StrToInt('$' + Line);
Ch := Char(Code);
...
</code></pre>
<p>otherwise replace Char with WideChar.</p>
<p>Of course the code can be compressed a little bit, but I left this out for clarity.</p>
<p>EDIT: For those of you being not afraid of type casting there is also the <em>HexToBin</em> function in classes.pas.</p>
http://stackoverflow.com/questions/1716870/how-to-find-the-actual-width-of-grid-component-with-scrollbar-in-delphi/1718214#17182141Answer by Uwe Raabe for How to find the actual width of grid component with scrollbar in DelphiUwe Raabe2009-11-11T21:29:13Z2009-11-12T08:14:31Z<p>Perhaps this may be helpful. It is part of a class helper for TDBGrid that auto sizes the last column, so that the grid has no empty space. Should be easy to adjust to your needs.</p>
<p>As you may notice, the CalcDrawInfo method is what you are seeking for. As it is protected you can either use a class helper or the usual protected-hack to get hands on it.</p>
<pre><code>procedure TDbGridHelper.AutoSizeLastColumn;
var
DrawInfo: TGridDrawInfo;
ColNo: Integer;
begin
ColNo := ColCount - 1;
CalcDrawInfo(DrawInfo);
if (DrawInfo.Horz.LastFullVisibleCell < ColNo - 1) then Exit;
if (DrawInfo.Horz.LastFullVisibleCell < ColNo) then
ColWidths[ColNo] := DrawInfo.Horz.GridBoundary - DrawInfo.Horz.FullVisBoundary
else
ColWidths[ColNo] := ColWidths[ColNo] + DrawInfo.Horz.GridExtent - DrawInfo.Horz.FullVisBoundary
end;
</code></pre>
http://stackoverflow.com/questions/1648975/how-can-i-efficiently-retrieve-the-number-of-files-in-a-directory/1649024#16490246Answer by Uwe Raabe for How can I efficiently retrieve the number of files in a directory?Uwe Raabe2009-10-30T10:28:51Z2009-10-30T21:03:25Z<p>I think the fastest way is to use the TDirectory.GetFiles method located in IOutils.pas. As the number of (visible) files in a directory may be different for each user, there is only a tiny chance that there is just a number to retrieve somehow.</p>
<p>The FindFirst/FindNext approach (which is wrapped in the above method) doesn't actually traverse files, it only traverses entries in a table, so it might be faster than expected.</p>
http://stackoverflow.com/questions/1642510/loading-bde-bpl-from-another-directory/1642812#16428121Answer by Uwe Raabe for Loading BDE BPL from another directoryUwe Raabe2009-10-29T10:36:49Z2009-10-29T10:36:49Z<p>Try to put the folder of your bpl in the front of the windows search path.</p>
http://stackoverflow.com/questions/1640616/how-to-move-to-the-next-control-inside-a-frame/1642029#16420291Answer by Uwe Raabe for How to move to the next control inside a frame?Uwe Raabe2009-10-29T06:57:57Z2009-10-29T06:57:57Z<p>You can place a TButton on the form, make it small and hide it under some other control. Set the Default property to true (that makes it getting the Enter key) and place the following into the OnClick event:</p>
<pre><code>SelectNext(ActiveControl, true, true);
</code></pre>
http://stackoverflow.com/questions/1634919/project-load-faster/1635575#16355753Answer by Uwe Raabe for project load fasterUwe Raabe2009-10-28T07:03:35Z2009-10-28T07:03:35Z<p>In one of my projects I gained a tremendous decrease in loading time by disabling the autocreation of forms. Only the mainform is created in the DPR, all others are created when needed.</p>
http://stackoverflow.com/questions/1629401/converting-tform-win32-app-to-win7-gadget-delphi/1629973#16299732Answer by Uwe Raabe for converting TForm win32 app to Win7 gadget (delphi)Uwe Raabe2009-10-27T10:38:13Z2009-10-27T10:38:13Z<p>If you are able to read German, there is a tutorial at <a href="http://www.delphipraxis.net/topic162626.html" rel="nofollow">www.delphipraxis.net</a>. Perhaps someone may translate it to English...</p>
http://stackoverflow.com/questions/1624663/overloading-array-insertion/1624868#16248682Answer by Uwe Raabe for Overloading array insertion?Uwe Raabe2009-10-26T13:43:36Z2009-10-26T13:43:36Z<p>You didn't specify your Delphi version, but this is a classic example for generics (available in D2009 and higher).</p>
http://stackoverflow.com/questions/1624071/resuming-suspended-thread-in-delphi-2010/1624179#16241796Answer by Uwe Raabe for Resuming suspended thread in Delphi 2010?Uwe Raabe2009-10-26T10:54:54Z2009-10-26T10:54:54Z<p>Short answer: call inherited Create(false) and omitt the Start! </p>
<p>The actual Start of a non-create-suspended thread is done in AfterConstruction, which is called after all constructors have been called.</p>
http://stackoverflow.com/questions/1611636/how-to-create-a-case-in-sensitive-tequalitycomparer-for-tdictionary/1612261#16122611Answer by Uwe Raabe for How to create a case in-sensitive TEqualityComparer for TDictionary?Uwe Raabe2009-10-23T09:11:21Z2009-10-23T09:11:21Z<p>The HashCode has to be the same for all values that return Equals = true! Try making Value uppercase in the GetHashCode before sending it to your HashFunction.</p>
<p>BTW, the original Equals is already case-insensitive.</p>
http://stackoverflow.com/questions/1552565/implementing-a-tag-panel-control-in-delphi/1552930#15529306Answer by Uwe Raabe for Implementing a 'tag panel' control in Delphi?Uwe Raabe2009-10-12T05:53:38Z2009-10-12T05:53:38Z<p>When you are on a recent Delphi version use a TFlowPanel and some appropriate controls for the tags. A simple TButton or a TLinkLabel should do for that.</p>
http://stackoverflow.com/questions/1514656/need-a-namevalue-class-similar-to-tstringlist-but-the-value-part-is-variant/1514889#15148893Answer by Uwe Raabe for Need a name=value class similar to TStringList but the value part is variantUwe Raabe2009-10-03T21:19:03Z2009-10-03T21:19:03Z<p>You can derive from TStringList and use the Objects property to hold a wrapper object for a variant.</p>
http://stackoverflow.com/questions/1443327/dcc-error-e2161-error-rlink32-too-many-resources-to-handle-delphi-error/1446489#14464891Answer by Uwe Raabe for [DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi ErrorUwe Raabe2009-09-18T19:43:35Z2009-09-18T19:43:35Z<p>The <a href="http://cc.embarcadero.com/Item/26127" rel="nofollow">PngComponents</a> have a component TPngImageCollection. Perhaps this will do for you.</p>
http://stackoverflow.com/questions/1338201/delphi-2009-pass-component-name-onclick-event-then-set-property/1339176#13391760Answer by Uwe Raabe for Delphi 2009: Pass component name onclick event then set propertyUwe Raabe2009-08-27T06:22:46Z2009-08-27T06:22:46Z<p>A small change to your code should do the trick:</p>
<pre><code>procedure TForm1.CustomSpeedButton1Click(Sender: TObject);
var
btn: TCustomSpeedButton;
begin
btn := Sender as TCustomSpeedButton;
Receiver := btn.Name;
ViewComments(btn.CommentTitle, btn.CommentText);
end;
</code></pre>
<p>and after editing the comment:</p>
<pre><code>procedure TForm1.StoreComments(comment: string);
var
btn: TCustomSpeedButton;
begin
btn := FindComponent(Receiver) as TCustomSpeedButton;
btn.CommentText := comment;
end;
</code></pre>
<p>You can also memorize the button itself instead of just it's name.</p>
http://stackoverflow.com/questions/1318141/is-it-possible-to-add-additional-guids-to-a-typelib1Is it possible to add additional GUIDs to a typelib?Uwe Raabe2009-08-23T09:18:49Z2009-08-23T17:09:36Z
<p>I have a typelib that describes some interfaces. As some of these interfaces are used as a category, I want to add the category IDs to the typelib. So the question is:</p>
<p>a) how can this be done in Delphi (2007 and up)?</p>
<p>or as an alternative</p>
<p>b) is it possible and advisable to use the interface GUID for the CATID?</p>
http://stackoverflow.com/questions/1301136/unsatisfied-forward-or-external-declaration/1301217#13012175Answer by Uwe Raabe for unsatisfied forward or external declarationUwe Raabe2009-08-19T16:49:40Z2009-08-19T16:49:40Z<p>You have declared this method but didn't implement it.</p>
http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288663#12886630Answer by Uwe Raabe for Converting a Double to an Integer for GetHashCode in DelphiUwe Raabe2009-08-17T15:39:23Z2009-08-17T18:13:45Z<p>I guess the Java thing can be implemented in Delphi like this:</p>
<pre><code>type
TVarRec = record
case Integer of
0: ( FInt1: Integer; )
1: ( FSingle: Single; )
end;
function GetHashCode(Value: Double): Integer;
var
arec: TVarRec;
begin
arec.FSingle := Value;
Result := arec.FInt1;
end;
</code></pre>
<p>The idea behind is to reduce the precision of the Double value to match the binary size of an Integer (Sizeof(Single) = Sizeof(Integer)). If your values can be represented in Single precision without collision, this will give a good hash value.</p>
<p>Edit: As the typecast won't compile in my D2009, I adapted the variant record solution.</p>
http://stackoverflow.com/questions/1282123/is-there-a-way-to-save-the-state-of-an-object-for-a-faster-reload-later/1282240#12822407Answer by Uwe Raabe for Is there a way to save the state of an object for a faster reload later?Uwe Raabe2009-08-15T16:20:16Z2009-08-15T16:20:16Z<ul>
<li>derive each object from <strong>TComponent</strong></li>
<li>make all properties you want to save <strong>published</strong></li>
<li>create one <strong>root</strong> component as the <strong>owner</strong> of the others</li>
<li>use a <strong>TFileStream</strong> or <strong>TMemoryStream</strong> to store and load the root</li>
</ul>
http://stackoverflow.com/questions/1277309/delphi-2007-and-ifdef-directive-fails-to-see-our-conditional/1277400#12774002Answer by Uwe Raabe for Delphi 2007 and {$IFDEF...} directive, fails to see our conditionalUwe Raabe2009-08-14T11:35:22Z2009-08-14T11:35:22Z<p>You should always make a "build all" when you change those conditions.</p>
http://stackoverflow.com/questions/1277214/how-to-make-a-form-docked-when-the-project-is-ran/1277394#12773944Answer by Uwe Raabe for How to make a form docked when the project is ran?Uwe Raabe2009-08-14T11:33:40Z2009-08-14T11:33:40Z<p>You can use the ManualDock method.</p>
http://stackoverflow.com/questions/1276173/how-to-implement-multiple-inheritance-in-delphi/1277243#12772430Answer by Uwe Raabe for How to implement multiple inheritance in delphi ?Uwe Raabe2009-08-14T10:54:41Z2009-08-14T10:54:41Z<p>A variation of Brian Frost's suggestion:</p>
<pre><code> TBikeWheel = class
TBikeWheelXYZ = class( TBikeWheel )
TBike = class
FFrontWheel : TBikeWheel;
protected
function CreateWheel: TBikeWheel; virtual;
public
property FrontWheel : TBikeWheel
read FrontWheel
end;
TBikeABC = class( TBike)
protected
function CreateWheel: TBikeWheel; override;
end;
function TBikeABC.CreateWheel: TBikeWheel;
begin
result := TBikeWheel.Create;
end;
TBikeXYZ = class( TBike)
protected
function CreateWheel: TBikeWheel; override;
end;
function TBikeXYZ.CreateWheel: TBikeWheel;
begin
result := TBikeWheelXYZ.Create;
end;
</code></pre>
http://stackoverflow.com/questions/1259849/delphi-how-to-programmatically-adjust-visual-ordering-of-components-with-align/1261383#12613837Answer by Uwe Raabe for Delphi: How to programmatically adjust visual ordering of components with align = alTopUwe Raabe2009-08-11T16:09:06Z2009-08-11T18:27:26Z<p>You can easily move a top-aligned panel to the top by setting its <strong>Top</strong> property to <strong>0</strong>. Do this in reverse requested order (bottom panel first) and you are done.</p>
http://stackoverflow.com/questions/1259563/good-os-delphi-exception-handling-libraries/1259659#125965913Answer by Uwe Raabe for Good OS Delphi exception handling libraries?Uwe Raabe2009-08-11T10:57:40Z2009-08-11T10:57:40Z<p>Not open source, but absolutely fabulous: <a href="http://www.madshi.net/madExceptDescription.htm" rel="nofollow">madExcept</a></p>
http://stackoverflow.com/questions/1253205/preventing-the-ide-from-changing-a-packages-requires-clause/1253615#12536154Answer by Uwe Raabe for Preventing the IDE from changing a package's "requires" clauseUwe Raabe2009-08-10T07:59:41Z2009-08-10T07:59:41Z<p>You should explicitly reference each of the units mentioned in the dialog in the <strong>contains</strong> section of the DPK file. The dialog only shows units that are <strong>implicitly</strong> (= not listed in <strong>contains</strong>) included and suggests <strong>requiring</strong> the package they originally belong to. </p>
http://stackoverflow.com/questions/1197771/added-the-apptype-console-directive-and-now-my-application-runs-very-slowly-m/1199678#11996780Answer by Uwe Raabe for Added the {APPTYPE CONSOLE} directive and now my application runs very slowly. Moving the mouse makes it run faster.Uwe Raabe2009-07-29T11:45:24Z2009-07-29T11:45:24Z<p>If some threads in your console application call Synchronize (and I guess the Indy stuff is actually doing that), you have to make some preparations:</p>
<p>Assign a method to the <strong>WakeMainThread</strong> variable. This method must have the signature of TNotifyEvent.</p>
<p>Inside this method call <strong>CheckSynchronize</strong>.</p>
<p>For additional information see the Delphi help for these two items.</p>
http://stackoverflow.com/questions/1187487/how-to-access-delphi-function-at-dpr-scope/1188340#11883406Answer by Uwe Raabe for How to access delphi function at DPR scopeUwe Raabe2009-07-27T14:07:06Z2009-07-27T14:07:06Z<p>You can declare a method variable in the unit that matches the signature of the function in the DPR. At the very beginning of the program you set the method variable to the function. Inside the unit you call the method variable.</p>
<p>Example:</p>
<p>(DPR)</p>
<pre><code>uses
Unit1;
function DoSomething(Par: Integer): Integer;
begin
...
end;
...
begin
DoSomethingVar := DoSomething;
...
end;
</code></pre>
<p>(unit)</p>
<pre><code>unit Unit1;
interface
...
var
DoSomethingVar: function(Par1: Integer): Integer;
...
implementation
...
SomeResult := DoSomethingVar(SomeParameter);
...
</code></pre>
http://stackoverflow.com/questions/1188215/delphi-2006-duplicate-function-names/1188314#11883141Answer by Uwe Raabe for Delphi 2006 duplicate function namesUwe Raabe2009-07-27T14:00:22Z2009-07-27T14:00:22Z<p>From the sight of the compiler, duplicate function names are not duplicate if they reside in different scopes. Finding these ambiguities (in sight of the programmer) is supported quite well by <a href="http://www.peganza.com/#PAL" rel="nofollow">Pascal Analyzer</a>.</p>
http://stackoverflow.com/questions/1881366/d2007-installed-ide-extensions-now-one-important-component-doesnt-workComment by Uwe Raabe on D2007: Installed IDE Extensions - now one important component doesn't work Uwe Raabe2009-12-10T15:27:13Z2009-12-10T15:27:13ZYou can register at www.delphipraxis.net and contact him via private mail. His user name is "jbg".http://stackoverflow.com/questions/1876704/fix-broken-german-characters/1879260#1879260Comment by Uwe Raabe on fix broken german characters Uwe Raabe2009-12-10T08:56:15Z2009-12-10T08:56:15Z...assuming that the file can be handled as a text file.http://stackoverflow.com/questions/1876704/fix-broken-german-charactersComment by Uwe Raabe on fix broken german characters Uwe Raabe2009-12-10T07:29:55Z2009-12-10T07:29:55ZWhat kind of file are the texts stored in? ASCII, Unicode, ...?http://stackoverflow.com/questions/1876704/fix-broken-german-charactersComment by Uwe Raabe on fix broken german characters Uwe Raabe2009-12-09T21:18:30Z2009-12-09T21:18:30ZIf it is of any interest, the correct text reads: "Wählen Sie eine Fachgröße"http://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aeroComment by Uwe Raabe on How to programmatically disable window animation under Vista Aero?Uwe Raabe2009-12-08T07:41:48Z2009-12-08T07:41:48ZA few lines below - look at my answer to my own question.http://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aero/1147242#1147242Comment by Uwe Raabe on How to programmatically disable window animation under Vista Aero?Uwe Raabe2009-12-05T12:18:08Z2009-12-05T12:18:08ZThat is indeed a possibility. Althoug, I wouldn't do it in my case as it would increase the time used a lot, just because of the shear number od the screenshots to take.
But at least it is an option.http://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aeroComment by Uwe Raabe on How to programmatically disable window animation under Vista Aero?Uwe Raabe2009-12-05T12:15:21Z2009-12-05T12:15:21ZI didn't say it "is" a property - I said it is "as easy as setting" a property.http://stackoverflow.com/questions/1775962/can-i-create-an-object-of-the-same-type-as-itself/1776420#1776420Comment by Uwe Raabe on Can I create an object of the same type as itself?Uwe Raabe2009-11-22T23:23:44Z2009-11-22T23:23:44Z@mjustin: That is a complete different case, because Clazz is declared as TClass. So only TObject.Create is executed. This would be the same as I would write result := ClassType.Create, but that will give a type mismatch. The typecast guarantees that in my example TMyClass.Create will be executed.http://stackoverflow.com/questions/1775962/can-i-create-an-object-of-the-same-type-as-itself/1776420#1776420Comment by Uwe Raabe on Can I create an object of the same type as itself?Uwe Raabe2009-11-22T09:59:50Z2009-11-22T09:59:50Z@gabr: Only when the derived class has its own create. In that case the base Create has to be virtual and the derived must override it. The use of ClassType only guarantees that the correct class is instantiated - the user has to take care that the correct Create is called.http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-deComment by Uwe Raabe on What are the ways of interchanging string data between clients and a server in Delphi?Uwe Raabe2009-11-14T15:34:40Z2009-11-14T15:34:40ZThanks to all for your suggestions.http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1730768#1730768Comment by Uwe Raabe on What are the ways of interchanging string data between clients and a server in Delphi?Uwe Raabe2009-11-14T10:29:34Z2009-11-14T10:29:34ZICS and Indy seem to be quite comparable. Can you elaborate WHY you never liked Indy?http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1730606#1730606Comment by Uwe Raabe on What are the ways of interchanging string data between clients and a server in Delphi?Uwe Raabe2009-11-14T10:25:53Z2009-11-14T10:25:53ZGiven the download page Synapse has still only experimental D2009 support. This doesn't give much confidence IMHO.http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1730606#1730606Comment by Uwe Raabe on What are the ways of interchanging string data between clients and a server in Delphi?Uwe Raabe2009-11-13T22:36:53Z2009-11-13T22:36:53ZWill have a look.http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1729489#1729489Comment by Uwe Raabe on What are the ways of interchanging string data between clients and a server in Delphi?Uwe Raabe2009-11-13T14:27:59Z2009-11-13T14:27:59ZThe SSL is an interesting idea.http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1729419#1729419Comment by Uwe Raabe on What are the ways of interchanging string data between clients and a server in Delphi?Uwe Raabe2009-11-13T14:27:25Z2009-11-13T14:27:25ZI already have a look at those. Only wanted to gather suggestions...