User Ulrich Gerhardt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T05:09:41Zhttp://stackoverflow.com/feeds/user/35162http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808730/how-to-use-tcontrol-align-alcustom/1809281#18092812Answer by Ulrich Gerhardt for How to use TControl.Align := alCustom ?Ulrich Gerhardt2009-11-27T15:09:04Z2009-11-27T15:09:04Z<p>Have a look at Demo2 from <a href="http://cc.embarcadero.com/Item/17340" rel="nofollow">this download</a>.</p>
http://stackoverflow.com/questions/1758917/delphi-pascal-overloading-a-constructor-with-a-different-prototype/1758957#17589575Answer by Ulrich Gerhardt for Delphi/pascal: overloading a constructor with a different prototypeUlrich Gerhardt2009-11-18T20:46:54Z2009-11-18T20:53:37Z<p>Try adding <code>reintroduce</code> before the second <code>overload</code>, like this:</p>
<pre><code> TfrmEndoscopistSearch = class(TForm)
public
/// original constructor kept for compatibility
constructor Create(AOwner : TComponent); overload; override;
/// additional constructor allows for a caller-defined base data set
constructor Create(AOwner : TComponent; ADataSet : TDataSet; ACaption : string = ''); reintroduce; overload;
end;
</code></pre>
<p>This compiles in Turbo Delphi. I needed the <code>public</code> to make it compile because overloading of <code>published</code> methods is restricted.</p>
http://stackoverflow.com/questions/1701544/how-can-i-troubleshoot-design-time-packages-in-delphi-cbuilder/1701705#17017052Answer by Ulrich Gerhardt for How can I troubleshoot design-time packages in Delphi/C++Builder?Ulrich Gerhardt2009-11-09T15:22:20Z2009-11-09T15:22:20Z<p><a href="http://www.gexperts.org/faq.html/#crashes" rel="nofollow">Here</a> is how to debug an expert (GExperts in this case). This should be transferrable to your case.</p>
http://stackoverflow.com/questions/1642350/delphi-setlength-on-argument-of-type-array-of-tobject/1642599#16425995Answer by Ulrich Gerhardt for Delphi: SetLength() on argument of type "array of TObject"Ulrich Gerhardt2009-10-29T09:49:41Z2009-10-29T09:49:41Z<p>You are mixing <em>open arrays</em> (the parameter of Resize) and <em>dynamic arrays</em> (what SetLength expects). See <a href="http://rvelthuis.de/articles/articles-openarr.html" rel="nofollow">here</a> for an explanation - especially the part titled "Confusion".</p>
http://stackoverflow.com/questions/1606105/how-do-i-force-the-linker-to-include-a-function-i-need-during-debugging/1606334#16063340Answer by Ulrich Gerhardt for How do I force the linker to include a function I need during debugging?Ulrich Gerhardt2009-10-22T10:31:03Z2009-10-22T10:31:03Z<p>Maybe it works to call them in some initialization section, guarded by {IFDEF DEBUG} or {IFOPT D+}.</p>
http://stackoverflow.com/questions/1605588/how-to-wash-validate-a-string-to-assign-it-to-a-componentname/1605699#16056992Answer by Ulrich Gerhardt for How to wash/validate a string to assign it to a componentname ?Ulrich Gerhardt2009-10-22T08:16:42Z2009-10-22T08:29:05Z<p>I have written a routine</p>
<pre><code>// See SysUtils.IsValidIdent:
function MakeValidIdent(const AText: string): string;
const
Alpha = ['A'..'Z', 'a'..'z', '_'];
AlphaNumeric = Alpha + ['0'..'9'];
function IsValidChar(AIndex: Integer; AChar: Char): Boolean;
begin
if AIndex = 1 then
Result := AChar in Alpha
else
Result := AChar in AlphaNumeric;
end;
var
i: Integer;
begin
Result := AText;
for i := 1 to Length(Result) do
if not IsValidChar(i, Result[i]) then
Result[i] := '_';
end;
</code></pre>
<p>which makes Pascal identifiers from strings.
You might also want to copy FindUniqueName from Classes.pas and apply that to the result from MakeValidIdent.</p>
http://stackoverflow.com/questions/1593277/how-to-draw-on-the-entire-area-of-a-resized-timage-in-delphi/1593394#15933942Answer by Ulrich Gerhardt for How to draw on the entire area of a resized TImage in Delphi?Ulrich Gerhardt2009-10-20T09:18:00Z2009-10-20T09:18:00Z<p>Maybe you have to also adjust Image1.Picture.Width/Height or Image1.Picture.Bitmap.Width/Height.</p>
http://stackoverflow.com/questions/1559417/matching-windows-system-colors-light-on-dark0Matching windows system colors: light on darkUlrich Gerhardt2009-10-13T10:36:37Z2009-10-16T21:46:14Z
<p>I'm trying to make my app a good Windows citizen, so I use matching system colors (see <a href="http://blogs.msdn.com/oldnewthing/archive/2007/12/12/6648399.aspx" rel="nofollow">"When selecting system colors, match but don't mix"</a>) as much as possible. However, sometimes light text on a dark background (something like COLOR_APPWORKSPACE/clAppWorkSpace) seems most appropriate, but the system doesn't provide this. Do you have any recommendations regarding this?</p>
http://stackoverflow.com/questions/1559417/matching-windows-system-colors-light-on-dark/1578219#15782190Answer by Ulrich Gerhardt for Matching windows system colors: light on darkUlrich Gerhardt2009-10-16T13:58:28Z2009-10-16T13:58:28Z<p>My solution for now: I set the background color to COLOR_APPWORKSPACE/clAppWorkSpace because I assume it has the "dark background" semantic I want. To get a contrasting text color I just get the <a href="http://en.wikipedia.org/wiki/HSL%5Fand%5FHSV" rel="nofollow">HLS</a> representation of the same color and increase its lightness factor.</p>
http://stackoverflow.com/questions/1559623/matching-background-color-for-colorgraytext0Matching background color for COLOR_GRAYTEXTUlrich Gerhardt2009-10-13T11:23:41Z2009-10-13T15:50:07Z
<p>(Related question to <a href="http://stackoverflow.com/questions/1559417/matching-windows-system-colors-light-on-dark">"Matching windows system colors: light on dark"</a>.)</p>
<p>There doesn't seem to be an "official" background color for COLOR_GRAYTEXT. This looks strange to me. Do you know any?</p>
http://stackoverflow.com/questions/1556392/where-can-i-find-a-movable-toolbar-demo/1556633#15566330Answer by Ulrich Gerhardt for Where can I find a movable toolbar demo?Ulrich Gerhardt2009-10-12T20:17:24Z2009-10-13T09:05:41Z<p>You can put your toolbars in a standard VCL TCoolBar or TControlBar. AFAIR this can get a bit messy sometimes. For an example, have a look at the CoolStuff demo, as <a href="http://stackoverflow.com/questions/1556392/where-can-i-find-a-movable-toolbar-demo/1556812#1556812">skamradt</a> suggested.</p>
http://stackoverflow.com/questions/1454190/how-can-i-make-my-form-resize-more-smoothly/1454267#14542672Answer by Ulrich Gerhardt for How can I make my form resize more smoothly?Ulrich Gerhardt2009-09-21T12:25:03Z2009-09-21T13:39:00Z<p>Try using WM_SETREDRAW (<a href="http://blogs.msdn.com/oldnewthing/archive/2007/02/22/1742084.aspx" rel="nofollow"><strong>not</strong> LockWindowUpdate</a>).</p>
<p>You might also have a look at <a href="http://msdn.microsoft.com/en-us/library/ms632681%28VS.85%29.aspx" rel="nofollow">DeferWindowPos</a>.</p>
http://stackoverflow.com/questions/1443295/how-to-create-a-dynamic-array-of-single-as-a-property-in-a-class/1443424#14434242Answer by Ulrich Gerhardt for How to create a dynamic array of single as a property in a class Ulrich Gerhardt2009-09-18T09:23:14Z2009-09-18T09:23:14Z<p>You can use a <strong>named</strong> type - try TSingleDynArray from unit Types.
However using array properties (see The_Fox's answer) might be more appropriate.</p>
http://stackoverflow.com/questions/1439214/how-to-display-rich-text-in-a-tdbgrid/1439753#14397534Answer by Ulrich Gerhardt for How to display rich text in a TDBGrid?Ulrich Gerhardt2009-09-17T15:59:23Z2009-09-17T15:59:23Z<p>I don't know if this is transferrable to your situation, but I once used OwnerDrawing to get rich text. If this is an option check out DrawRtfText in unit <a href="http://flocke.vssd.de/prog/code/pascal/rtflabel/" rel="nofollow">DrawRichText</a>.</p>
http://stackoverflow.com/questions/1415267/how-do-i-make-the-scroll-bars-show-up-on-a-tscrollbox/1417564#14175640Answer by Ulrich Gerhardt for How do I make the scroll bars show up on a TScrollBox?Ulrich Gerhardt2009-09-13T11:46:51Z2009-09-14T09:36:19Z<p>If I'm not mistaken (no Delphi around to check) it suffices to set HorzScrollBar.Range big enough.</p>
<p><strong>EDIT:</strong> IIUC this DFM does what you want - entirely at design-time:</p>
<pre><code>object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 206
ClientWidth = 312
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
PixelsPerInch = 96
TextHeight = 13
object ScrollBox1: TScrollBox
Left = 8
Top = 8
Width = 150
Height = 150
HorzScrollBar.Range = 300
VertScrollBar.Range = 300
AutoScroll = False
TabOrder = 0
end
end
</code></pre>
http://stackoverflow.com/questions/511866/font-color-of-disabled-listbox0Font color of disabled listboxUlrich Gerhardt2009-02-04T15:35:15Z2009-09-09T14:10:26Z
<p>Hi everybody!</p>
<p>I want to draw some listview items disabled and would like to mimic the appearance of a disabled standard Windows listbox. Which colors does it use?
I can't find anything in my <a href="http://blogs.msdn.com/oldnewthing/archive/2007/12/12/6648399.aspx" rel="nofollow">reference chart</a> :-) or with Google.</p>
<p><strong>Edit:</strong> Shortly after posting the obvious occurred to me - it seems to be COLOR_GRAYTEXT.</p>
http://stackoverflow.com/questions/511866/font-color-of-disabled-listbox/1399935#13999350Answer by Ulrich Gerhardt for Font color of disabled listboxUlrich Gerhardt2009-09-09T14:10:26Z2009-09-09T14:10:26Z<p>I'm answering my own question to be able to close that issue (i.e. accept an answer).</p>
<p>A disabled windows listbox draws clGrayText on clWindow/COLOR_GRAYTEXT on COLOR_WINDOW.</p>
http://stackoverflow.com/questions/1361954/maintain-updown-associate-connection-while-recreating-the-associate1Maintain UpDown-Associate connection while recreating the associateUlrich Gerhardt2009-09-01T11:30:31Z2009-09-01T17:37:37Z
<p>I have an TUpDown control whose Associate is set to an instance of a TEdit subclass. The edit class calls RecreateWnd in its overriden DoEnter method. Unfortunately this kills the buddy connection at the API level which leads to strange behavior e.g. when clicking on the updown arrows.</p>
<p>My problem is that the edit instance doesn't know that it is the buddy of some updown to which it should reconnect and the updown isn't notified of the loss of its buddy. Any ideas how I could reconnect the two?</p>
http://stackoverflow.com/questions/1361954/maintain-updown-associate-connection-while-recreating-the-associate/1362424#13624242Answer by Ulrich Gerhardt for Maintain UpDown-Associate connection while recreating the associateUlrich Gerhardt2009-09-01T13:14:32Z2009-09-01T13:14:32Z<p>I noticed how TCustomUpDown.SetAssociate checks that updown and buddy have the same parent and uses this to avoid duplicate associations. So I tried calling my own RecreateWnd method:</p>
<pre><code>procedure TAlignedEdit.RecreateWnd;
var
i: Integer;
c: TControl;
ud: TCustomUpDown;
begin
ud := nil;
for i := 0 to Pred(Parent.ControlCount) do
begin
c := Parent.Controls[i];
if c is TCustomUpDown then
if THACK_CustomUpDown(c).Associate = Self then
begin
ud := TCustomUpDown(c);
Break;
end;
end;
inherited RecreateWnd;
if Assigned(ud) then
begin
THACK_CustomUpDown(ud).Associate := nil;
THACK_CustomUpDown(ud).Associate := Self;
end;
end;
</code></pre>
<p>et voila - it works!</p>
http://stackoverflow.com/questions/1336625/merge-tabs-from-child-form-into-main-form/1339424#13394240Answer by Ulrich Gerhardt for Merge tabs from child form into main formUlrich Gerhardt2009-08-27T07:35:42Z2009-08-27T07:35:42Z<p>I just tried</p>
<pre><code>procedure TForm1.Button1Click(Sender: TObject);
begin
while Form2.PageControl1.PageCount > 0 do
Form2.PageControl1.Pages[0].PageControl := PageControl1;
end;
</code></pre>
<p>and it worked fine. Am I missing something obvious, or why is everybody giving such sophisticated solutions? :-)</p>
http://stackoverflow.com/questions/1327640/how-to-stop-a-dialogs-default-and-cancel-behaviour-when-editing-a-ttreeview-node/1327841#13278411Answer by Ulrich Gerhardt for How to stop a dialogs default and cancel behaviour when editing a TTreeView nodeUlrich Gerhardt2009-08-25T12:01:34Z2009-08-25T12:01:34Z<p>Maybe it helps to temporarily set Default and Cancel to False in TTreeView.OnEditing and back to True in TTreeView.OnEdited. There's no OnCancelEdit - this might be a problem.</p>
http://stackoverflow.com/questions/1326452/how-do-i-make-a-tlabel-behave-like-a-hyperlink-in-delphi/1326562#13265620Answer by Ulrich Gerhardt for How do I make a TLabel behave like a hyperlink in Delphi?Ulrich Gerhardt2009-08-25T07:26:15Z2009-08-25T07:26:15Z<p>One can tab to and give focus to links in a browser. Therefore I would consider using a windowed control (like an owner-drawn TButton) for this task.</p>
http://stackoverflow.com/questions/1298031/including-resource-file-in-a-project-by-rc-file-rather-than-res-file/1298149#12981495Answer by Ulrich Gerhardt for Including resource file in a project by .RC file rather than .RES fileUlrich Gerhardt2009-08-19T06:42:11Z2009-08-19T07:56:02Z<p>Just add the rc file to your project via the "Project > Add to project" menu item. This creates the {$R 'myres.res' 'myres.rc'} line from the posting that <a href="http://stackoverflow.com/questions/1298031/including-resource-file-in-a-project-by-rc-file-rather-than-res-file/1298086#1298086">TOndrej links to</a>.</p>
http://stackoverflow.com/questions/1222633/genotechs-gtsizer-component/1223105#12231050Answer by Ulrich Gerhardt for GenoTechs GTSizer componentUlrich Gerhardt2009-08-03T15:49:54Z2009-08-03T15:49:54Z<p>Maybe <a href="http://www.devexpress.com/products/VCL/ExLayoutControl/" rel="nofollow">DevEx's Layout Control</a> does what you need. OTOH, it might be major overkill. :)</p>
http://stackoverflow.com/questions/1172149/how-to-change-length-of-dynamic-arrays-as-out-parameters/1172605#11726050Answer by Ulrich Gerhardt for How to change length of dynamic arrays as 'out' parameters?Ulrich Gerhardt2009-07-23T15:30:16Z2009-07-23T15:30:16Z<p>bassfriend and TOndrej have already shown you the solution. For background information read <a href="http://rvelthuis.de/articles/articles-openarr.html" rel="nofollow">this</a> - especially the part titled "Confusion".</p>
http://stackoverflow.com/questions/1102339/dcc32-environment-variables-in-cfg0dcc32: environment variables in *.cfgUlrich Gerhardt2009-07-09T07:25:55Z2009-07-10T08:19:21Z
<p>I'm trying to build a simple release build batch for our app. I'd like to use environment variables inside the <AppName>.cfg file. However these seem not to get expanded. Neither</p>
<pre><code>-U"$(DELPHIKOMP)\VclZip;..."
</code></pre>
<p>nor</p>
<pre><code>-U"%DELPHIKOMP%\VclZip;..."
</code></pre>
<p>work. However</p>
<pre><code>-U"C:\DelphiKomp\VclZip;..."
</code></pre>
<p>does. Any idea what I'm doing wrong?</p>
<p>Please note: We're using BDS2006, so MSBuild is no option for now.</p>
<p><strong>Update:</strong> As gabr suggested I wrote a little tool that expands the environment variables in my cfg and calls dcc32 for me. Thanks to all for their answers!</p>
http://stackoverflow.com/questions/1011916/chained-invocation-in-java-7/1011942#10119422Answer by Ulrich Gerhardt for Chained invocation in Java 7?Ulrich Gerhardt2009-06-18T10:24:16Z2009-06-18T10:24:16Z<p><a href="http://en.wikipedia.org/wiki/Fluent%5Finterface" rel="nofollow">This</a> might interest you.</p>
http://stackoverflow.com/questions/1011006/separating-interface-and-implementation-classes-in-delphi/1011224#101122413Answer by Ulrich Gerhardt for Separating Interface and Implementation classes in delphi?Ulrich Gerhardt2009-06-18T07:15:50Z2009-06-18T07:15:50Z<p>My first advice: Skip this $Include thing altogether. As Uwe wrote find a more Delphi-like solution.</p>
<p>If you really <strong>want</strong> to stay with the $Include style: The error you quote occurs because forward declarations don't work across "type" blocks. You forward declare TScheduleList in one block but define it in a different block. To cure this omit the "type" keyword in your *Intf.pas's and insert it in BusinessDomain.pas before the includes.</p>
http://stackoverflow.com/questions/967327/how-can-i-get-the-delphi-ides-main-form/967643#9676432Answer by Ulrich Gerhardt for How can I get the Delphi IDE's Main Form?Ulrich Gerhardt2009-06-09T00:22:44Z2009-06-09T00:22:44Z<p>IIRC the main form is called <code>TAppBuilder</code>, so something like <code>FindWindow('TAppBuilder',nil)</code> might be a starting point for you.</p>
http://stackoverflow.com/questions/919220/how-to-make-a-splash-screen-with-a-progress-bar-on-turbo-delphi/920138#9201381Answer by Ulrich Gerhardt for How to make a splash screen with a progress bar on Turbo Delphi?Ulrich Gerhardt2009-05-28T10:10:55Z2009-05-28T10:10:55Z<p>Maybe <a href="http://www.deltics.co.nz/blog/?p=295" rel="nofollow">this</a> is interesting for you.</p>
http://stackoverflow.com/questions/1740266/getstacktrace-in-delphi-7/1740313#1740313Comment by Ulrich Gerhardt on GetStackTrace in Delphi 7?Ulrich Gerhardt2009-12-01T12:50:29Z2009-12-01T12:50:29ZI just tried it with Firefox and IE7 - I get different pages but both show the answers at the bottom. Re "killing EE": +1 :-)http://stackoverflow.com/questions/622761/saving-strings-to-disk-under-delphi-2009/623280#623280Comment by Ulrich Gerhardt on Saving strings to disk under Delphi 2009Ulrich Gerhardt2009-11-27T07:12:22Z2009-11-27T07:12:22ZIs it possible to write something like <code>TShortUnicodeString<N: Integer> = record</code> analog to <code>string[N]</code> (I have no D2010 to test it.)http://stackoverflow.com/questions/1749945/tutorial-for-pascal-delphi-for-c-coders/1778900#1778900Comment by Ulrich Gerhardt on Tutorial for Pascal/Delphi for C++-CodersUlrich Gerhardt2009-11-23T22:38:40Z2009-11-23T22:38:40Z+1 for Delphi-Praxis.http://stackoverflow.com/questions/1749945/tutorial-for-pascal-delphi-for-c-coders/1778900#1778900Comment by Ulrich Gerhardt on Tutorial for Pascal/Delphi for C++-CodersUlrich Gerhardt2009-11-23T22:37:43Z2009-11-23T22:37:43ZFTR: <a href="http://www.delphi-forum.de/" rel="nofollow">delphi-forum.de</a>http://stackoverflow.com/questions/1781443/how-can-i-get-the-compile-date-and-time-in-delphi/1781507#1781507Comment by Ulrich Gerhardt on How Can I Get the Compile Date and Time in DelphiUlrich Gerhardt2009-11-23T08:31:22Z2009-11-23T08:31:22ZWe use this one for some months now and it works fine AFAICT.http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphiComment by Ulrich Gerhardt on How Do I Add A TLabel To The Menu Bar in Delphi?Ulrich Gerhardt2009-11-19T15:14:06Z2009-11-19T15:14:06ZI use EDA/EN_DIS_ABLE (available at <a href="http://www.heise.de/software/download/enable_disable_en_dis_able/7279" rel="nofollow">heise.de/software/download/…</a> or <a href="http://www.delphipraxis.net/topic166020,0,asc,0.html" rel="nofollow">delphipraxis.net/topic166020,0,asc,0.html/…</a>) if I'm curious. :-)http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphiComment by Ulrich Gerhardt on How Do I Add A TLabel To The Menu Bar in Delphi?Ulrich Gerhardt2009-11-19T06:28:47Z2009-11-19T06:28:47ZAre you sure that Beyond Compare uses the native menu (TMainMenu). Maybe it's some third party menu (Toolbar2000, DevEx, ...).http://stackoverflow.com/questions/1758917/delphi-pascal-overloading-a-constructor-with-a-different-prototype/1758957#1758957Comment by Ulrich Gerhardt on Delphi/pascal: overloading a constructor with a different prototypeUlrich Gerhardt2009-11-18T21:26:16Z2009-11-18T21:26:16ZSorry for having been unclear.http://stackoverflow.com/questions/1758917/delphi-pascal-overloading-a-constructor-with-a-different-prototype/1758957#1758957Comment by Ulrich Gerhardt on Delphi/pascal: overloading a constructor with a different prototypeUlrich Gerhardt2009-11-18T20:54:34Z2009-11-18T20:54:34ZI just tried - it is <i>before</i>. :-)http://stackoverflow.com/questions/1757638/how-to-get-the-size-of-an-image-in-bytes-with-delphi/1758165#1758165Comment by Ulrich Gerhardt on How to get the size of an image in bytes with Delphi?Ulrich Gerhardt2009-11-18T19:43:08Z2009-11-18T19:43:08ZIsn't this Rob's solution, just less flexible (TBitmap instead of TGraphic) and less safe (no exception safety)?http://stackoverflow.com/questions/1639125/form-is-hidden-behind-other-forms-when-showmodal-is-called/1639203#1639203Comment by Ulrich Gerhardt on Form is hidden behind other forms when ShowModal is called.Ulrich Gerhardt2009-11-18T19:38:08Z2009-11-18T19:38:08Z... besides poOwnerFormCenter which therefore seems an unfortunate idea).http://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphi/1679471#1679471Comment by Ulrich Gerhardt on Quick padding of a string in DelphiUlrich Gerhardt2009-11-05T10:45:55Z2009-11-05T10:45:55Z@sinibar - pass by ref: Yes, aString should be passed as const. Otherwise there's unnecessary reference count management (however no cloning).http://stackoverflow.com/questions/1606105/how-do-i-force-the-linker-to-include-a-function-i-need-during-debugging/1606334#1606334Comment by Ulrich Gerhardt on How do I force the linker to include a function I need during debugging?Ulrich Gerhardt2009-10-22T11:25:22Z2009-10-22T11:25:22ZOf course that would be nice to have. But at least it's a workaround that doesn't burden the release version. (Which GJ's published trick would, BTW. :-))http://stackoverflow.com/questions/1605671/can-delphi-5-generate-a-pdb-file-that-vs-can-useComment by Ulrich Gerhardt on Can Delphi 5 generate a .PDB file that VS can use?Ulrich Gerhardt2009-10-22T08:52:16Z2009-10-22T08:52:16ZI really don't remember Delphi 5 as bug-ridden. Admittedly the debugging features left some wishes compared to VS.http://stackoverflow.com/questions/1605588/how-to-wash-validate-a-string-to-assign-it-to-a-componentname/1605699#1605699Comment by Ulrich Gerhardt on How to wash/validate a string to assign it to a componentname ?Ulrich Gerhardt2009-10-22T08:41:42Z2009-10-22T08:41:42Z@Rob: Exactly. :-)