<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>bl.OGware</title>
	<atom:link href="https://ogware.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://ogware.wordpress.com</link>
	<description>infrequent grumblings of a software engineer and then some...   (also some Delphi programming)</description>
	<lastBuildDate>Thu, 15 Apr 2010 15:43:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<site xmlns="com-wordpress:feed-additions:1">7957066</site><cloud domain='ogware.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s2.wp.com/i/webclip.png</url>
		<title>bl.OGware</title>
		<link>https://ogware.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://ogware.wordpress.com/osd.xml" title="bl.OGware" />
	<atom:link rel='hub' href='https://ogware.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Interface unit for sending debug messages to SysInternals ProcessMonitor</title>
		<link>https://ogware.wordpress.com/2010/04/15/interface-unit-for-sending-debug-messages-to-sysinternals-processmonitor/</link>
					<comments>https://ogware.wordpress.com/2010/04/15/interface-unit-for-sending-debug-messages-to-sysinternals-processmonitor/#comments</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Thu, 15 Apr 2010 10:29:21 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[class-constructor]]></category>
		<category><![CDATA[class-destructor]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[debugview]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[processmonitor]]></category>
		<category><![CDATA[sysinternals]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=287</guid>

					<description><![CDATA[The latest version of SysInternals&#8216; excellent ProcessMonitor is now able to receive custom debug log messages and display them right in between the I/O logs. Even though I still don&#8217;t quite get the rationale for the need to create a new API for this (in contrast to simply merging in the functionality of DebugView) I [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The latest version of <a href="http://sysinternals.com">SysInternals</a>&#8216; excellent <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx">ProcessMonitor</a> is now able to <a href="http://www.wintellect.com/CS/blogs/jrobbins/archive/2010/04/13/see-the-i-o-you-caused-by-getting-your-diagnostic-tracing-into-process-monitor.aspx">receive custom debug log messages</a> and display them right in between the I/O logs.</p>
<p>Even though I still don&#8217;t quite get the rationale for the need to create a new API for this (in contrast to simply merging in the functionality of <a href="http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx">DebugView</a>) I went straight ahead and converted the API to Delphi.</p>
<p>This should work with Delphi 6 and later. I successfully tested with Delphi 2007, 2009 and 2010.</p>
<p>(<strong>Update:</strong> the originally posted version did actually not work with Delphi 2007 or earlier because I had inexplicably overlooked &#8220;that Unicode thing&#8221;&#8230; Thanks to GunSmoker for pointing that out! Using <code>$ifdef UNICODE</code> and <code>WideString</code> is a cheap cop-out, I know &#8211; but it works)</p>
<p>Enjoy:</p>
<pre class="brush: delphi; title: ; notranslate">
unit ProcMonDebugOutput;

interface

uses
  Windows;

type
  TProcessMonitorLogger = class
  private
    const
//      FILE_WRITE_ACCESS           = $00000002;
//      METHOD_BUFFERED             = $00000000;
//      FILE_DEVICE_PROCMON_LOG     = $00009535;
//      IOCTL_EXTERNAL_LOG_DEBUGOUT = CTL_CODE(FILE_DEVICE_PROCMON_LOG,
//                                             $81,
//                                             METHOD_BUFFERED,
//                                             FILE_WRITE_ACCESS);
      IOCTL_EXTERNAL_LOG_DEBUGOUT = $95358204;
    class var
      FDevice: THandle; // = INVALID_HANDLE_VALUE
    class function Open(): THandle;
    class procedure Close();
    {$IF CompilerVersion &gt;= 21}
    class constructor Create;
    class destructor Destroy;
    {$IFEND}
  public
    class function Output(const AOutputString: {$ifdef UNICODE}String{$else}WideString{$endif}): Boolean;
  end;
  PML = TProcessMonitorLogger;

implementation

{ TProcessMonitorLogger }

//function CTL_CODE(const ADevType, AFunc, AMethod, AAccess: Cardinal): Cardinal; inline;
//begin
//  Result := (ADevType shl 16) or (AAccess shl 14) or (AFunc shl 2) or AMethod;
//end;

{$IF CompilerVersion &gt;= 21}
class constructor TProcessMonitorLogger.Create;
begin
  FDevice := INVALID_HANDLE_VALUE;
end;

class destructor TProcessMonitorLogger.Destroy;
begin
  Close();
end;
{$IFEND}

class procedure TProcessMonitorLogger.Close;
begin
  if INVALID_HANDLE_VALUE &lt;&gt; FDevice then
    begin
      CloseHandle(FDevice);
      FDevice := INVALID_HANDLE_VALUE;
    end;
end;

class function TProcessMonitorLogger.Open(): THandle;
begin
  if INVALID_HANDLE_VALUE = FDevice then
    FDevice := CreateFile('\\.\Global\ProcmonDebugLogger',
                            GENERIC_READ or GENERIC_WRITE,
                            FILE_SHARE_READ or FILE_SHARE_WRITE or FILE_SHARE_DELETE,
                            nil,
                            OPEN_EXISTING,
                            FILE_ATTRIBUTE_NORMAL,
                            0);
  Result := FDevice;
end;

class function TProcessMonitorLogger.Output(const AOutputString: {$ifdef UNICODE}String{$else}WideString{$endif}): Boolean;
var
  lProcMonHwnd: THandle;
  lInputLength: Cardinal;
  lOutputLength: Cardinal;
  lLastError: Cardinal;
begin
  Result := False;
  if AOutputString = '' then
    SetLastError(ERROR_INVALID_PARAMETER)
  else
    begin
      lProcMonHwnd := Open();
      if lProcMonHwnd &lt;&gt; INVALID_HANDLE_VALUE then
        begin
          lInputLength := Length(AOutputString) * SizeOf(WideChar);
          lOutputLength := 0;
          Result := DeviceIoControl(lProcMonHwnd,
                                    IOCTL_EXTERNAL_LOG_DEBUGOUT,
                                    PWideChar(AOutputString),
                                    lInputLength,
                                    nil,
                                    0,
                                    lOutputLength,
                                    nil);
          if not Result then
            begin
              lLastError := GetLastError();
              if lLastError = ERROR_INVALID_PARAMETER then
                SetLastError(ERROR_WRITE_FAULT);
            end;
        end
      else
        SetLastError(ERROR_BAD_DRIVER);
    end;
end;

{$IF CompilerVersion &lt; 21}
initialization
  TProcessMonitorLogger.FDevice := INVALID_HANDLE_VALUE;
finalization
  TProcessMonitorLogger.Close();
{$IFEND}
end.
</pre>
<p>Usage:</p>
<pre class="brush: delphi; title: ; notranslate">
uses
  ProcMonDebugOutput;
begin
  PML.Output('How hard could it be?');
end;
</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2010/04/15/interface-unit-for-sending-debug-messages-to-sysinternals-processmonitor/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">287</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing an Office add-in&#8217;s load behaviour in multi-user environments</title>
		<link>https://ogware.wordpress.com/2009/12/11/changing-an-office-add-ins-load-behaviour-in-multi-user-environments/</link>
					<comments>https://ogware.wordpress.com/2009/12/11/changing-an-office-add-ins-load-behaviour-in-multi-user-environments/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Fri, 11 Dec 2009 08:53:40 +0000</pubDate>
				<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[loadbehavior]]></category>
		<category><![CDATA[multiuser]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[officeaddins]]></category>
		<category><![CDATA[outlookaddins]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[terminalserver]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=269</guid>

					<description><![CDATA[Let&#8217;s say you have bought or downloaded some third-party Office COM-addin to use on your Citrix- or Terminal Server. Many of these will by default install for all users. What if for one reason or another you only want to let a subset of your users work with that addin? Well, here&#8217;s what: Office determines [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s say you have bought or downloaded some third-party Office COM-addin to use on your Citrix- or Terminal Server. Many of these will by default install for all users. What if for one reason or another you only want to let a subset of your users work with that addin? Well, here&#8217;s what:</p>
<p>Office determines what addins to load by looking at the entries below the following two registry keys:</p>
<p><code>[HKEY_LOCAL_MACHINE\Software\Microsoft\Office\<em>OfficeApp</em>\Addins]</code></p>
<p><code>[HKEY_CURRENT_USER\Software\Microsoft\Office\<em>OfficeApp</em>\Addins]</code></p>
<p>(where <em>OfficeApp</em> should be replaced with Outlook, Word, Excel, etc.)</p>
<p>The sub-entries will be named after the addin&#8217;s ProgID, e.g. &#8220;Microsoft.VbaAddinForOutlook.1&#8221; is one included by default with most versions of Office. From the name it should typically be fairly obvious which entry belongs to the particular addin that you&#8217;re after. For the purpose discussed here it is irrelevant what values these sub-entries actually contain.</p>
<p>As you may have guessed the entries under <code>HKLM</code> define which addins get loaded for all users while the entries under <code>HKCU</code> define the ones that should be loaded for that user only. Thus, in order to change an addin&#8217;s load behaviour from &#8220;all users&#8221; to &#8220;some users&#8221; all you have to do is essentially move the relevant entry from <code>HKLM</code> to <code>HKCU</code>, e.g. by exporting the entry into a .reg-file and then deleting it, then using notepad to change the hive to <code>HKEY_CURRENT_USER</code> and finally re-import that .reg-file again for the users that should use the addin (or just use a group policy object). Remember that you will have to repeat this whenever you install an update of the addin in question as that will probably rewrite the entry under <code>HKLM</code>.</p>
<p>More details about addin registration from a developer&#8217;s point of view can be found on MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb386106.aspx">Registry Entries for Application-Level Add-ins</a><br />
(You can disregard the note about registration for all users being ignored in that article as that only applies to VSTO-addins, not to COM-addins)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/12/11/changing-an-office-add-ins-load-behaviour-in-multi-user-environments/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">269</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
		<item>
		<title>So that was Lucky 13 for me&#8230;</title>
		<link>https://ogware.wordpress.com/2009/10/07/so-that-was-lucky-13-for-me/</link>
					<comments>https://ogware.wordpress.com/2009/10/07/so-that-was-lucky-13-for-me/#comments</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Wed, 07 Oct 2009 16:17:20 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[ekon]]></category>
		<category><![CDATA[ekon13]]></category>
		<category><![CDATA[event]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=230</guid>

					<description><![CDATA[Marco has already blogged about it and now here is my report from this year&#8217;s Entwicklerkonferenz, aka Delphi Live Germany in Darmstadt. First off, I was pleased to see that attendance was definitely better than last year (where David I&#8217;s opening keynote was seen by about 30 people tops), though that might in part have [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Marco <a href="http://blog.marcocantu.com/blog/ekon_13_report.html">has already blogged about it</a> and now here is my report from this year&#8217;s <a href="http://entwicklerkonferenz.com">Entwicklerkonferenz</a>, aka <a href="http://delphilive.de">Delphi Live Germany</a> in Darmstadt.</p>
<p>First off, I was pleased to see that attendance was definitely better than last year (where David I&#8217;s opening keynote was seen by about 30 people tops), though that might in part have been caused by the unfortunate hotel situation back then. I haven&#8217;t heard of any definite numbers yet but my personal estimation would be that there were slightly more than a hundred people this year (which is of course still way below the numbers of a few years back). During the opening&#8217;s obligatory hand-raising segment only two or three people indicated they were there for the very first time. A harsh contrast to the results of the <a href="http://delphi-tage.de">Delphi Tage</a> event earlier this year where about a third of the audience outed themselves as first-timers.</p>
<p>A welcome gimmick (for me at least) was an offer for returning attendees of the conference to get a &#8220;free&#8221; <a href="http://www.monien.net/blog/index.php/2009/10/ekon-13-intellibook-an-exciting-new-idea-for-publishing-magazines-and-books/">netbook</a>. Though I have to strongly object to the &#8220;free&#8221; part of the campaign (you had to waive the usual &#8220;early bird&#8221; rebates when claiming it, so effectively you paid more than you otherwise would have), this worked out really well for me as I did not own such a thing so far and it worked fine right out of the box.</p>
<p>Another small thing that I found very nice compared to previous years was that in all conference rooms you were able to sit at an actual table (well, except for when they underestimated the attendance and had to bring in extra chairs which happened to me two or three times), which is not only more comfortable because of the additional leg space but also makes taking notes so much easier.</p>
<h2>Sessions</h2>
<p>As in most years I got to see some exceptional talks. Here are some of the ones that stood out for me:</p>
<h4><a href="http://hadihariri.com/blogengine/default.aspx">Hadi</a> on Test Driven Design</h4>
<p>This was a real eye-opener on many levels while being at the same time very entertaining and thorough. I especially appreciated how Hadi took the time to present the entire thought process behind the concept but doing so in a very subtle way that made it feel very natural how all the bits fell into place.</p>
<p>Another very memorable bit of this talk was something that Hadi essentially tacked on at the end in response to a question from the audience: It was a one-liner for a .NET mocking framework that essentially returned a dynamically created (mock) object that implemented a given interface&#8230; it took a couple of seconds to sink in for me&#8230; this is just a little bit mind-bending if you really think about it. I want this in Delphi Win32! Now with the revived RTTI support in Delphi 2010 I think we&#8217;re already heading in the right direction that will eventually lead towards such functionality.</p>
<h4><a href="http://www.raize.com/">Ray</a>&#8216;s keynote on Effective UI Design</h4>
<p>I think every developer should go see this talk at least once (I think I&#8217;ve seen it three times now in various incarnations and it just keeps getting better). This time Ray also included some (IMHO) very valid concerns about recent changes in the Delphi IDE, especially the Options dialogs. I couldn&#8217;t agree more. </p>
<h4><a href="http://dmagin.wordpress.com/">Daniel (M)</a> on advanced Debugging techniques</h4>
<p>Even though this was already a highly informative and entertaining talk in its own right this would already have been worth it just for showing <a href="http://cc.embarcadero.com/Item/27241">SafeMM</a> alone! You should check it out, too: It&#8217;s a special-purpose memory manager <del datetime="2009-10-07T18:21:24+00:00">created</del> <ins datetime="2009-10-07T18:21:24+00:00">used</ins> by the CodeGear debugger team (thanks Chris for the clarification) to catch improper memory access directly where it happens rather than having to wait for the symptoms of such mistakes. If I understood Daniel correctly it&#8217;s a branch of <a href="http://fastmm.sf.net">FastMM</a>.</p>
<h4><a href="http://www.monien.net/blog/">Olaf</a> on the new RTTI system</h4>
<p>Can&#8217;t wait to get my hands on Delphi 2010 after this talk even though I had seen some of the new stuff at <a href="http://thecoderage.com">CodeRage</a> already. This is a major milestone!</p>
<h4><a href="http://delphi.org">Jim</a> and <a href="http://thespicemustflow.de/">Sebastian</a> on <acronym title="Aspect Oriented Programming">AOP</acronym> using Delphi Prism (actually two individual talks)</h4>
<p>This is a really new and intriguing concept and a great approach for separating concerns and getting rid of repetitive code without actually hiding it. The whole &#8220;Unquote&#8221; thing remains a bit of a mystery, though even after having seen both talks. I guess it&#8217;ll probably become clearer as you actually write aspects yourself.<br />
Can&#8217;t wait to have aspects in Win32 even though I can well imagine that it will be some time before we see this as it will need really deep compiler support and I know what I would like the CodeGear compiler guys to focus on first instead (hint: there will be a 64-bit edition of Office 2010).</p>
<h4><a href="http://blog.marcocantu.com/">Marco</a> and <a href="http://www.gumpi.com/blog/">Daniel <img width='16' height='16' class='wp-smiley emoji' draggable='false' alt='(W)' src='https://s1.wp.com/wp-content/mu-plugins/wpcom-smileys/wordpress.svg' style='height: 1em; max-height: 1em;' /></a> on developing for Windows 7 (two individual talks)</h4>
<p>Not really a lot of new things if one has been following the blogosphere and played around with Seven oneself already but still very informative and well-presented. I can also now say that I was there <a href="http://blog.marcocantu.com/blog/old_delphi_compatibility_windows7.html">as it happened</a>&#8230; <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<h2>Closure</h2>
<p>A couple of last things I&#8217;m afraid I will have to get off my chest:</p>
<p>I was a bit underwhelmed if not even a little disappointed with the presence and (perceived) involvement of Embarcadero Germany as <b>compared to past conferences(!)</b>, especially considering that they were again the Gold Sponsor of this conference: Their booth (which was pretty much hidden away behind a pillar) in the expo area was empty whenever I checked. They also didn&#8217;t advertise any conference rebates or raffle prizes as was customary in past years (though <a href="http://www.delphipraxis.net/post1085490.html#1085490">this post</a> (in German) seems to suggest that a rebate offer might still be forthcoming by email).</p>
<p>Another slightly unnerving thing for me was that the conference IMHO missed a proper sense of closure: The agenda did not contain a closing session to boot. After the last session the conference was simply over. I could do without the endless raffle drawing of past years (even though one is of course always secretly hoping against hope to win something worthwhile) but I would have preferred at least to see the conference end with a speaker panel and a closing statement from representatives of CodeGear and Software&amp;Support like there always was in past years. I might only be projecting my own feelings at others but I was under the impression that I was not the only one who felt a little bit &#8220;ordered but uncollected&#8221; (as we say in German) while we were standing in the lobby realizing that this was it and we could go home now.<br />
<i>Before anyone mentions it: there actually <b>was</b> a spontaneously(!) held raffle drawing but it started the very minute that the last sessions were scheduled to end (and we all know that speakers never exceed their time slots, don&#8217;t we) and lasted for about 15 minutes. By the time that I came out of the last session it was already over.</i></p>
<p>Anyway, I am very much looking forward to EKON 14 and other community events that will hopefully be happening during the next 12 months. See you there!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/10/07/so-that-was-lucky-13-for-me/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">230</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
		<item>
		<title>10 clicks&#8230;</title>
		<link>https://ogware.wordpress.com/2009/08/25/10-clicks/</link>
					<comments>https://ogware.wordpress.com/2009/08/25/10-clicks/#comments</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Tue, 25 Aug 2009 09:18:31 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[annoyance]]></category>
		<category><![CDATA[delphi2010]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[shop]]></category>
		<category><![CDATA[upgrade]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=211</guid>

					<description><![CDATA[In the best case scenario it takes me at least ten clicks, 5 of which are redundant, and quite a bit of lucky guessing, to get from the &#8220;immediate purchase&#8221; link in the Delphi 2010 press release to a page where I see even so much as a price tag&#8230; and still left wondering whether [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In the best case scenario it takes me at least ten clicks, 5 of which are redundant, and quite a bit of lucky guessing, to get from the &#8220;immediate purchase&#8221; link in the <a href="http://etnaweb04.embarcadero.com/news/press_releases/Delphi_2010_with_Touch_and_Major_Upgrades_to_RAD_Studio_Product_Family.php" target="_blank">Delphi 2010 press release</a> to a page where I see even so much as a price tag&#8230; and still left wondering whether this is even the best offer&#8230; isn&#8217;t that a bit&#8230; erm, how do I put this&#8230; ridiculous?</p>
<ol>
<li>Click &#8220;immediate purchase&#8221;</li>
<li>Click &#8220;Europe&#8221;</li>
<li>In the &#8220;Germany&#8221; section, click &#8220;Find an International Distribution Partner&#8221;</li>
<li>In the &#8220;By country&#8221; section, drop down the selection list</li>
<li>scroll down</li>
<li>select &#8220;Germany&#8221; (again! &#8211; see 3.)</li>
<li>Click &#8220;Submit&#8221;</li>
<li>Select one out of 32 arbitrary vendors from the Partner Directory (and be sure to click the link in the right hand column as otherwise you will have to click once more to actually get to the vendor&#8217;s page), many of which do not even appear to have an online shop at all as far as I can tell&#8230; Most do not even mention Delphi or RAD Studio on the front page.</li>
<li>If you took a <a href="http://www.edv-buchversand.de/embarcadero/" target="_blank">lucky guess</a> in the previous step the vendor will have a direct link to the Delphi product page on its front page. If so, click it. Otherwise take however many clicks it takes you on that vendor&#8217;s page to select Delphi (again! &#8211; see 1.) from the product catalog.</li>
<li>Click through to the page with the pricing information only to find out that, as usual, there is a whopping <strong>43% premium</strong> for European customers on the Pro upgrade ESD!</li>
</ol>
<p>So much for &#8220;immediate purchase&#8221;&#8230;</p>
<p>In the words of <a href="http://www.imdb.com/character/ch0009596/" target="_blank">Donna Noble</a>: <strong>You&#8217;ve got to be kidding me!</strong></p>
<p>That said, Delphi 2010 does still look like a worthwhile point upgrade from a technical POV&#8230; My sincerest kudos to the R&amp;D team!</p>
<hr />
<div style="font-size:smaller;font-style:italic;">here&#8217;s my calculation, in case you were wondering:</p>
<ul>
<li>Delphi Pro UPG ESD in US online shop:   399 USD ~ 279 EUR (<a href="http://www.google.com/search?q=399+usd+to+eur" target="_blank">as of the time of this writing</a>)</li>
<li>Delphi Pro UPG ESD in EU online shop: ~399 EUR excl. VAT</li>
<li>120 EUR difference! (~43% of 279 EUR)</li>
</ul>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/08/25/10-clicks/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">211</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
		<item>
		<title>Discount coupon for Add-in Express</title>
		<link>https://ogware.wordpress.com/2009/06/10/discount-coupon-for-add-in-express/</link>
					<comments>https://ogware.wordpress.com/2009/06/10/discount-coupon-for-add-in-express/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Wed, 10 Jun 2009 21:17:23 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[adx]]></category>
		<category><![CDATA[delphitage]]></category>
		<category><![CDATA[discount]]></category>
		<category><![CDATA[outlookaddins]]></category>
		<category><![CDATA[vcl]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=199</guid>

					<description><![CDATA[This was originally only intended for the attendees of my talk at the Delphi-Tage, but I now got permission to post it here on the blog, especially as the code had only arrived in my Inbox a mere 30 minutes after I had already left for Hamburg and so I wasn&#8217;t able to show it [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This was originally only intended for the attendees of my talk at the <a href="http://delphi-tage.de">Delphi-Tage</a>, but I now got permission to post it here on the blog, especially as the code had only arrived in my Inbox a mere 30 minutes after I had already left for Hamburg and so I wasn&#8217;t able to show it during the talk at all (it will be included in the slides that should be made available for the participants within the week via the <a href="http://delphi-tage.de">delphi-tage.de</a> page, though):</p>
<p>Using the code <span style="color:#993300;font-size:larger;"><strong>ADX-VCLSTD30</strong></span> you can order <a href="http://www.add-in-express.com/add-in-delphi/">Add-in Express 2009 for Office and VCL</a> Standard at a 30% discount. The code is valid until 10 July 2009. Note that you can upgrade from this discounted Standard version to Professional or Premium for the respective price difference between Standard and Professional or Standard and Premium. Also note that even if you make use of the discount you will still have an unconditional <a href="http://www.add-in-express.com/purchase/refund.php">30 day money-back guarantee</a>.</p>
<p>For the differences between Standard, Pro and Premium please refer to the <a href="http://www.add-in-express.com/add-in-delphi/featurematrix.php">Feature Matrix</a>.</p>
<p>If 30% on the Standard version is not enough for you, I&#8217;d like to direct your eyes in the general direction of their <a href="http://www.add-in-express.com/purchase/discounts.php">discounts and special offers</a> page. There should be something for anyone there, really.</p>
<p>And so the circle closes&#8230; <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> a <a href="http://memyselfanddelphi.blogspot.com/2007/06/developing-office-add-ins-easy-way-part.html">similar offering</a> was also how I first heard about Add-in-Express almost exactly two years ago.</p>
<p><strong>In case you&#8217;re wondering:</strong> Add-in Express is a VCL framework for true RAD-development of all kinds of Office addins (besides advanced Outlook addins you can also create addins for <span style="text-decoration:underline;">all</span> other Office products as well as <a href="http://www.add-in-express.com/add-in-delphi/smart-tags.php">SmartTags</a> and <a href="http://www.add-in-express.com/add-in-delphi/excel-rtd-servers.php">Excel RTD Servers</a>) with special focus on seamless integration with the Office GUI. This allows you to really concentrate on the essential functionality of your addin right from the get-go rather than wasting days or weeks on tasks like trying to get a simple commandbar button to work across all Office versions.</p>
<p>P.S. : As I continue producing flash videos about Outlook addin-development I will eventually cover Add-in Express as well. In the meantime, you can take a look at their own <a href="http://www.add-in-express.com/add-in-delphi/video.php">Screencasts</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/10/discount-coupon-for-add-in-express/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">199</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
		<item>
		<title>Resources for Developing Outlook-Addins with Delphi</title>
		<link>https://ogware.wordpress.com/2009/06/09/resources-for-outlookaddins-with-delphi/</link>
					<comments>https://ogware.wordpress.com/2009/06/09/resources-for-outlookaddins-with-delphi/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Tue, 09 Jun 2009 14:33:51 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[delphitage]]></category>
		<category><![CDATA[outlookaddins]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=174</guid>

					<description><![CDATA[[deutsche Fassung dieses Artikels: siehe voriger Eintrag] Here&#8217;s a commented list of links that accumulated during the preparation for my talk on developing Outlook-addins with Delphi at last weekend&#8217;s Delphi-Tage event in Hamburg (also containing some information that I did not end up covering for various reasons): Official API-References and related Information: Outlook Object Model [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>[deutsche Fassung dieses Artikels: siehe <a href="https://ogware.wordpress.com/2009/06/09/ressourcen-zu-outlook-addins-mit-delphi/">voriger Eintrag</a>]</p>
<p>Here&#8217;s a commented list of links that accumulated during the preparation for my talk on developing Outlook-addins with Delphi at last weekend&#8217;s <a href="http://delphi-tage.de">Delphi-Tage</a> event in Hamburg (also containing some information that I did not end up covering for various reasons):</p>
<h2>Official API-References and related Information:</h2>
<ul>
<li><strong>Outlook Object Model Reference:</strong><br />
<a href="http://msdn.microsoft.com/en-us/library/bb176619.aspx">http://msdn.microsoft.com/en-us/library/bb176619.aspx</a></li>
<li><strong>Extended MAPI Reference:</strong><br />
<a href="http://msdn.microsoft.com/en-us/library/cc765775.aspx">http://msdn.microsoft.com/en-us/library/cc765775.aspx</a></li>
<li><strong>Security Notes for Outlook Developers:</strong><br />
<a href="http://msdn.microsoft.com/en-us/library/aa211242.aspx">http://msdn.microsoft.com/en-us/library/aa211242.aspx</a><br />
(detailed description of Outlook 2003&#8217;s security model from a developer&#8217;s point of view)</li>
<li><strong>Code Security Changes in Outlook 2007:</strong><br />
<a href="http://msdn.microsoft.com/en-us/library/bb226709.aspx">http://msdn.microsoft.com/en-us/library/bb226709.aspx</a><br />
(among other things contains a complete list of all properties and objects protected by the Outlook Object Model Guard)</li>
<li><strong>Outlook Developer Portal:<br />
</strong><a href="http://msdn.microsoft.com/en-us/office/aa905455(en-us).aspx">http://msdn.microsoft.com/en-us/office/aa905455(en-us).aspx</a></li>
</ul>
<h2>Source code, Tutorials and Example-Addins:</h2>
<ul>
<li><strong>Extended MAPI-Headers for Delphi:</strong><br />
<a href="http://dimastr.com/outspy/download/MAPI_headers.zip">http://dimastr.com/outspy/download/MAPI_headers.zip</a><br />
(indispensable for any kind of Extended MAPI development, also when combined with Redemption &#8211; see below)</li>
<li><strong>BabelFish for Outlook:</strong><br />
<a href="http://dimastr.com/babelfish/">http://dimastr.com/babelfish/</a><br />
(the required target WebService is no longer online but the source code of this addin works very well as a starting point for new addins)</li>
<li><strong>Trust Filter for MS Outlook:<br />
</strong><a href="http://www.benziegler.com/TrustFilter/">http://www.benziegler.com/TrustFilter/</a><br />
(a non-trivial Outlook-Addin with freely available source code, written in Delphi)</li>
<li><strong>OutlookCode.com &#8211; Developer Learning Center for Microsoft Outlook</strong><br />
<a href="http://outlookcode.com">http://outlookcode.com<br />
</a>(Heaps of examples, articles, tutorials, links, etc. &#8211; mostly VB(A/S) or C# rather than Delphi, though)</li>
<li><strong>Slipstick.com &#8211; Outlook &amp; Exchange Solutions Center</strong><br />
<a href="http://slipstick.com">http://slipstick.com<br />
</a>(the definitive information portal for all things Outlook and Exchange)</li>
</ul>
<h2>Products presented or used:</h2>
<ul>
<li><strong>Add-in Express:</strong><br />
<a href="http://add-in-express.com">http://add-in-express.com</a><br />
(Framework for true RAD-development of addins for Office, especially helps with integrating seamlessly with the Office-UI, Shareware)</li>
<li><strong>Redemption:</strong><br />
<a href="http://dimastr.com/redemption">http://dimastr.com/redemption</a><br />
(COM utility library written in Delphi that massively simplifies working with Extended MAPI and which thus bypasses security prompts in older versions of Outlook or when accessing Outlook from anything other than a COM-addin, Shareware)</li>
<li><strong>OutlookSpy:</strong><br />
<a href="http://dimastr.com/outspy/">http://dimastr.com/outspy<br />
</a>(Developer-utility for live-inspection and manipulation of all relevant Outlook-APIs, written in Delphi, Shareware)</li>
<li><strong>GExperts:</strong><br />
<a href="http://www.gexperts.org/">http://www.gexperts.org/</a><br />
(really powerful plugin for the Delphi-IDE, which should need no further introduction, Open Source)</li>
<li><strong>DDevExtensions:</strong><br />
<a href="http://andy.jgknet.de/blog/?page_id=10">http://andy.jgknet.de/blog/?page_id=10</a><br />
(another great Delphi IDE-plugin from Andreas Hausladen, Freeware)</li>
<li><strong>IDE Fix Pack:</strong><br />
<a href="http://andy.jgknet.de/blog/?page_id=246">http://andy.jgknet.de/blog/?page_id=246<br />
</a>(semi-official bugfixes for the Delphi-IDE from Andreas Hausladen, Freeware)</li>
<li><strong>MachMichAdmin (&#8220;Make me admin&#8221;):</strong><br />
<img style="border:0 none;width:16px;margin:0;" title="de" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif?w=16&#038;h=10" alt="de" width="16" height="10" align="bottom" /> <a href="http://www.heise.de/software/download/machmichadmin/31780">http://www.heise.de/software/download/machmichadmin/31780<br />
</a>(Batch-file for starting applications using your own user account but with temporarily applied admin privileges; needs some minor tweaks to work on non-German operating systems, Open Source)</li>
<li><strong>PrivBar:<br />
</strong><a href="http://blogs.msdn.com/aaron_margosis/archive/2004/07/24/195350.aspx">http://blogs.msdn.com/aaron_margosis/archive/2004/07/24/195350.aspx<br />
</a>(Custom toolbar for Windows Explorer that indicates the permission level in effect for a given Explorer instance, Freeware)</li>
<li><strong>Launchy:</strong><br />
<a href="http://www.launchy.net/">http://www.launchy.net/<br />
</a>(application quick launcher for keyboard enthusiasts, Open Source)</li>
</ul>
<h2>Miscellaneous:</h2>
<p><em>(Attention! Time for a quick commercial break. <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> )</em></p>
<ul>
<li><strong>Lucatec GmbH:</strong><br />
<a href="http://www.lucatec.de?ri=bl.ogware">http://www.lucatec.de</a><br />
(my &#8220;hand that feeds&#8221;, without whom this talk wouldn&#8217;t have happened)</li>
<li><strong><span style="font-variant:small-caps;">Lucatec<sup>®</sup> Mask</span>:</strong><br />
<a href="http://lucatec.net/mask/?ri=bl.ogware">http://lucatec.net/mask/</a><br />
(our addin for automating several tasks related to the use of shared mailboxes or Public Folders in a team, Shareware)</li>
</ul>
<p><em>(end of commercial break)</em></p>
<ul>
<li><strong>techvanguards.com</strong><br />
<a href="http://www.techvanguards.com/">http://www.techvanguards.com/</a><br />
(extensive articles and tutorials all about COM programming with Delphi and C++-Builder by Binh Ly &#8211; a real eye-opener for anyone that has been struggling with this topic so far)</li>
</ul>
<ul>
<li>You can use the following .reg-file to perform registration and unregistration of COM-DLLs directly from the Explorer context menu:</li>
</ul>
<blockquote>
<pre>Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\dllfile\shell]
@="openas"

[HKEY_CLASSES_ROOT\dllfile\shell\Register]

[HKEY_CLASSES_ROOT\dllfile\shell\Register\command]
@="regsvr32.exe \"%1\""

[HKEY_CLASSES_ROOT\dllfile\shell\Unregister]

[HKEY_CLASSES_ROOT\dllfile\shell\Unregister\command]
@="regsvr32.exe /u \"%1\""</pre>
</blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/09/resources-for-outlookaddins-with-delphi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">174</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif" medium="image">
			<media:title type="html">de</media:title>
		</media:content>
	</item>
		<item>
		<title>Ressourcen zum Delphi-Tage 2009 Vortrag &#8220;Entwickeln von Addins für Microsoft Outlook mit Delphi&#8221;</title>
		<link>https://ogware.wordpress.com/2009/06/09/ressourcen-zu-outlook-addins-mit-delphi/</link>
					<comments>https://ogware.wordpress.com/2009/06/09/ressourcen-zu-outlook-addins-mit-delphi/#comments</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Tue, 09 Jun 2009 00:23:44 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[delphi-de]]></category>
		<category><![CDATA[delphitage-de]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[outlook-de]]></category>
		<category><![CDATA[outlookaddins-de]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=151</guid>

					<description><![CDATA[[please see next post for an English version of this post] Bevor ich die Slides meines Vortrages an Daniel zur ZIPpung weitergebe, hier schon einmal meine kommentierte Liste aller Links, die ich während der Vorbereitung zusammengetragen habe (enthält auch Informationen zu  einigen aus Zeit- und anderen Gründen leider entfallenen Themen): Offizielle API-Referenzen und Infoquellen: Outlook [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img data-attachment-id="86" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/de/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif" data-orig-size="16,10" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="de" data-image-description="" data-image-caption="" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif?w=16" class="alignleft size-full wp-image-86" title="de" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif?w=16&#038;h=10" alt="de" width="16" height="10" /> [please see <a href="https://ogware.wordpress.com/2009/06/09/resources-for-outlookaddins-with-delphi/">next post</a> for an English version of this post]</p>
<p>Bevor ich die Slides meines Vortrages an Daniel zur ZIPpung weitergebe, hier schon einmal meine kommentierte Liste aller Links, die ich während der Vorbereitung zusammengetragen habe (enthält auch Informationen zu  einigen aus Zeit- und anderen Gründen leider entfallenen Themen):</p>
<h2>Offizielle API-Referenzen und Infoquellen:</h2>
<ul>
<li><strong>Outlook Object Model Referenz:</strong><br />
<a href="http://msdn.microsoft.com/en-us/library/bb176619.aspx">http://msdn.microsoft.com/en-us/library/bb176619.aspx</a></li>
<li><strong>Extended MAPI Referenz:</strong><br />
<a href="http://msdn.microsoft.com/en-us/library/cc765775.aspx">http://msdn.microsoft.com/en-us/library/cc765775.aspx</a></li>
<li><strong>Security Notes for Outlook Developers:</strong><br />
<a href="http://msdn.microsoft.com/en-us/library/aa211242.aspx">http://msdn.microsoft.com/en-us/library/aa211242.aspx</a><br />
(detaillierte Beschreibung des Sicherheitsmodells von Outlook 2003 aus Entwicklersicht)</li>
<li><strong>Codesicherheitsänderungen in Outlook 2007:</strong><br />
<a href="http://msdn.microsoft.com/de-de/library/bb226709.aspx">http://msdn.microsoft.com/de-de/library/bb226709.aspx</a><br />
(enthält u.a. eine vollständige Liste aller vom Outlook Object Model Guard überwachten Properties und Objekte)</li>
<li><strong>Outlook Developer Portal:<br />
</strong><a href="http://msdn.microsoft.com/de-de/office/aa905455(en-us).aspx">http://msdn.microsoft.com/de-de/office/aa905455(en-us).aspx</a></li>
</ul>
<h2>Quellcode, Tutorials und Beispiel-Addins:</h2>
<ul>
<li><strong>Extended MAPI-Header für Delphi:</strong><br />
<a href="http://dimastr.com/outspy/download/MAPI_headers.zip">http://dimastr.com/outspy/download/MAPI_headers.zip</a><br />
(unverzichtbar für jede Art von Extended MAPI-Programmierung, auch im Zusammenspiel mit Redemption &#8211; siehe weiter unten)</li>
<li><strong>BabelFish for Outlook:</strong><br />
<a href="http://dimastr.com/babelfish/">http://dimastr.com/babelfish/</a><br />
(der angesteuerte WebService ist leider nicht mehr im Betrieb, aber der Quellcode dieses Addins ist ideal als Ausgangspunkt für eigene Addins geeignet)</li>
<li><strong>Trust Filter for MS Outlook:<br />
</strong><a href="http://www.benziegler.com/TrustFilter/">http://www.benziegler.com/TrustFilter/</a><br />
(nicht-triviales, in Delphi geschriebenes Outlook-Addin mit Quellcode)</li>
<li><strong>OutlookCode.com &#8211; Developer Learning Center for Microsoft Outlook</strong><br />
<a href="http://outlookcode.com">http://outlookcode.com<br />
</a>(Unmengen von Beispielen, Erläuterungen, Tutorials, Links, etc. &#8211; meist leider eher VB(A/S) oder C# als Delphi)</li>
<li><strong>Slipstick.com &#8211; Outlook &amp; Exchange Solutions Center</strong><br />
<a href="http://slipstick.com">http://slipstick.com<br />
</a>(das Informationsportal schlechthin für alles, was mit Outlook und Exchange zu tun hat)</li>
</ul>
<h2>Vorgestellte bzw. verwendete Produkte und Tools:</h2>
<ul>
<li><strong>Add-in Express:</strong><br />
<a href="http://add-in-express.com">http://add-in-express.com</a><br />
(Framework zur echten RAD-Entwicklung von COM-Addins für&#8217;s Office-Paket, hilft insbesondere bei der nahtlosen Integration in die Outlook-GUI, Shareware)</li>
<li><strong>Redemption:</strong><br />
<a href="http://dimastr.com/redemption">http://dimastr.com/redemption</a><br />
(in Delphi geschriebene COM-Bibliothek, welche den Umgang mit Extended MAPI massiv vereinfacht und auf diese Weise außerdem die lästigen Sicherheitswarnungen in älteren Outlook-Versionen umgeht, Shareware)</li>
<li><strong>OutlookSpy:</strong><br />
<a href="http://dimastr.com/outspy/">http://dimastr.com/outspy<br />
</a>(Entwickler-Utility zum Live-Inspizieren praktisch aller relevanten Outlook-APIs quasi &#8220;am lebenden Objekt&#8221;, Shareware)</li>
<li><strong>GExperts:</strong><br />
<a href="http://www.gexperts.org/">http://www.gexperts.org/</a><br />
(geniales Delphi-IDE Plugin, welches hinlänglich bekannt sein sollte, Open Source)</li>
<li><strong>DDevExtensions:</strong><br />
<a href="http://andy.jgknet.de/blog/?page_id=10">http://andy.jgknet.de/blog/?page_id=10</a><br />
(noch ein geniales Delphi-IDE-Plugin, von Andreas Hausladen, Freeware)</li>
<li><strong>IDE Fix Pack:</strong><br />
<a href="http://andy.jgknet.de/blog/?page_id=246">http://andy.jgknet.de/blog/?page_id=246<br />
</a>(semi-offizielle Bugfixes für die Delphi-IDE von Andreas Hausladen, Freeware)</li>
<li><strong>MachMichAdmin:</strong><br />
<a href="http://www.heise.de/software/download/machmichadmin/31780">http://www.heise.de/software/download/machmichadmin/31780<br />
</a>(Batch-Datei zum Starten von Anwendungen unter dem eigenen Benutzerkonto aber mit vorübergehenden administrativen Rechten, Open Source)<a href="http://www.heise.de/software/download/machmichadmin/31780"></a></li>
<li><strong>PrivBar:<br />
</strong><a href="http://blogs.msdn.com/aaron_margosis/archive/2004/07/24/195350.aspx">http://blogs.msdn.com/aaron_margosis/archive/2004/07/24/195350.aspx<br />
</a>(Info-Toolbar für den Windows Explorer, welche anzeigt, mit welchem Berechtigungslevel eine Explorer-Instanz gerade läuft, Freeware)<a href="http://blogs.msdn.com/aaron_margosis/archive/2004/07/24/195350.aspx"></a></li>
<li><strong>Launchy:</strong><br />
<a href="http://www.launchy.net/">http://www.launchy.net/<br />
</a>(Programm-Schnellstarter für Keyboard-Fetischisten, Open Source)</li>
</ul>
<h2>Verschiedenes:</h2>
<p>(Achtung! Kurze Werbeunterbrechung. <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> )</p>
<ul>
<li><strong>Lucatec GmbH:</strong><br />
<a href="http://www.lucatec.de?ri=bl.ogware">http://www.lucatec.de</a><br />
(mein Brötchengeber, ohne den mein Vortrag gar nicht möglich gewesen wäre)</li>
<li><strong><span style="font-variant:small-caps;">Lucatec<sup>®</sup> Mask</span>:</strong><br />
<a href="http://lucatec.net/mask/?ri=bl.ogware">http://lucatec.net/mask/</a><br />
(mein &#8220;Baby&#8221; <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> : ein Addin zum Automatisieren verschiedenster Arbeitsschritte bei der (Team-)Arbeit mit gemeinsam genutzten Postfächern oder Öffentlichen Ordnern, Shareware)</li>
</ul>
<p>(Werbung Ende)</p>
<ul>
<li><strong>techvanguards.com</strong><br />
<a href="http://www.techvanguards.com/">http://www.techvanguards.com/</a><br />
(Ausführliche Artikel und Tutorials rund ums Thema COM mit Delphi und C++-Builder von Binh Ly &#8211; ein echter Augenöffner, für alle, die sich bisher mit dem Thema nur gequält haben)</li>
</ul>
<ul>
<li>Die folgende einfache .reg-Datei könnt Ihr verwenden, um die (De-)Registrierung von DLLs einfach über das Explorer-Kontextmenü durchzuführen:</li>
</ul>
<blockquote>
<pre>Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\dllfile\shell]
@="openas"

[HKEY_CLASSES_ROOT\dllfile\shell\Register]

[HKEY_CLASSES_ROOT\dllfile\shell\Register\command]
@="regsvr32.exe \"%1\""

[HKEY_CLASSES_ROOT\dllfile\shell\Unregister]

[HKEY_CLASSES_ROOT\dllfile\shell\Unregister\command]
@="regsvr32.exe /u \"%1\""</pre>
</blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/09/ressourcen-zu-outlook-addins-mit-delphi/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">151</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif" medium="image">
			<media:title type="html">de</media:title>
		</media:content>
	</item>
		<item>
		<title>Delphi Tage 2009 &#8211; Recap</title>
		<link>https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-recap/</link>
					<comments>https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-recap/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Sun, 07 Jun 2009 20:58:57 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[delphitage]]></category>
		<category><![CDATA[outlookaddins]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=123</guid>

					<description><![CDATA[[deutsche Fassung dieses Artikels: siehe voriger Eintrag] So, I am back from this year&#8217;s Delphi-Tage (&#8220;Delphi Days&#8221;) in Hamburg and had a little time to let the impressions sink in a little. As has been mentioned by many participants, the uniqueness of the venue will be hard to top for future events (but then, why [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>[deutsche Fassung dieses Artikels: siehe <a href="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/">voriger Eintrag</a>]</p>
<p>So, I am back from this year&#8217;s <a href="http://delphi-tage.de/">Delphi-Tage</a> (&#8220;Delphi Days&#8221;) in Hamburg and had a little time to let the impressions sink in a little. As has been mentioned by many participants, the uniqueness of the <a href="http://www.capsandiego.de/">venue</a> will be hard to top for future events (but then, why should it have to? &#8211; after all, it&#8217;s the overall-experience, the people, the sessions and of course Delphi that should be the main attraction, shouldn&#8217;t it?)</p>
<div data-shortcode="caption" id="attachment_85" style="width: 160px" class="wp-caption alignleft"><a href="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg"><img aria-describedby="caption-attachment-85" data-attachment-id="85" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/dscn5741/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg" data-orig-size="1280,960" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E4500&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1244310053&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.85&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.003832886163281&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="DSCN5741" data-image-description="" data-image-caption="&lt;p&gt;Der Veranstaltungsort &amp;#8211; Die Cap San Diego&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=1024" class="size-thumbnail wp-image-85" title="DSCN5741" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=150&#038;h=112" alt="Der Veranstaltungsort - Die Cap San Diego" width="150" height="112" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=150 150w, https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" /></a><p id="caption-attachment-85" class="wp-caption-text">This year&#39;s venue - The Cap San Diego</p></div>
<div data-shortcode="caption" id="attachment_84" style="width: 160px" class="wp-caption alignright"><a href="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg"><img aria-describedby="caption-attachment-84" loading="lazy" data-attachment-id="84" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/dscn5734/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg" data-orig-size="1280,960" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E4500&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1244281023&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.85&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.13888888888889&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="David I Keynote Audience" data-image-description="" data-image-caption="&lt;p&gt;Publikum bei David&amp;#8217;s Keynote&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=1024" class="size-thumbnail wp-image-84" title="David I Keynote Audience" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=150&#038;h=112" alt="Publikum bei David's Keynote" width="150" height="112" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=150 150w, https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" /></a><p id="caption-attachment-84" class="wp-caption-text">Audience at David I&#39;s Keynote</p></div>
<p>(more pictures can be found in the coresponding  <a href="http://www.delphipraxis.net/album_cat.php?cat_id=15&amp;sort_method=pic_time&amp;sort_order=DESC&amp;start=0">album on the DelphiPraxis forum</a>, as well as on the <a href="http://www.delphi-treff.de/backstage/veranstaltungen/delphi-tage-2009-in-hamburg/">Delphi-Treff</a> site)</p>
<p>A big praise to Daniel Wolf for organizing the &#8220;pre-con&#8221; barbecue at &#8220;cult&#8221; football club FC St. Pauli&#8217;s where we met in a nice setting with great food and a couple of nice cold beers where you could also chat pleasantly about non-programming, non-Delphi-related topics for a change, all in the middle of the vibrant (German part of the) Delphi community.</p>
<p>The main event started on Saturday morning. Attendance was pretty high (over 250 people, including speakers and exhibitors, if I overheard that correctly). I was especially pleased to see so many &#8220;out&#8221; themselves as first-timers during the hand-raising section at the conclusion of the event. And the average age of the audience was also way lower than I have seen at similar events in the past which can only be a good sign, right?</p>
<p>David I&#8217;s keynote offered little new to anyone who had been following the coverage of last month&#8217;s  <a href="http://delphilive.com/">Delphi Live!</a> conference in San Jose. It&#8217;s nevertheless always a joy to see and hear David talking. You just totally get that there is someone who&#8217;s truly got his heart in what he&#8217;s saying.</p>
<p>After a quick break started the first round of sessions, whereas I myself unfortunately wasn&#8217;t able to see a lot of it as I had to leave during the coffee break to find a less pricey parking space for my car and only returned (quite out of breath and sweating) for the second half of <a href="http://wiert.wordpress.com/">Jeroen Pluimers</a>&#8216; very hands-on talk about IDE-addins and other useful tips for increasing developer productivity. Though, as at that point the room was so full that I had to stand in the doorway to the adjoining second session room, where Bernd Ott was doing an equally interesting talk about Subversion I was only able to watch and listen with half an ear and eye.</p>
<div data-shortcode="caption" id="attachment_93" style="width: 160px" class="wp-caption alignleft"><a href="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg"><img aria-describedby="caption-attachment-93" loading="lazy" data-attachment-id="93" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/dscn5736/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg" data-orig-size="1280,960" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E4500&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1244290194&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.85&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.2&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="DSCN5736" data-image-description="" data-image-caption="&lt;p&gt;Bernd Ua &amp;#8211; Softwaretests&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=1024" class="size-thumbnail wp-image-93" title="DSCN5736" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=150&#038;h=112" alt="Bernd Ua - Softwaretests" width="150" height="112" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=150 150w, https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" /></a><p id="caption-attachment-93" class="wp-caption-text">Bernd Ua - Softwaretests</p></div>
<p>After that I went to see Bernd Ua&#8217;s talk about software testing and DUnit which I watched from quite an unusual viewpoint (see picture to the left). In the meantime the time for my own talk was rapidly approaching and as this was going to be the first of its kind since almost exactly 9 years to the day (minus a month), my tension was rising considerably. As a result I could unfortunately only watch the first half of Daniel Wischnewski&#8217;s entertaining talk about the  <a href="http://www.gumpi.com/Blog/default,month,2009-01.aspx">Windows 7 Taskbar</a> as at that point I had to step out for a quick breath of fresh air.</p>
<p>My own talk then was a bit of a mixed bag: While I did manage to shed most of the nervousness and was able to answer all questions from the audience, I feel that in hindsight I probably made some less than ideal decisions about weighting the individual parts of the talk in an effort to get everything in there that I had announced I would cover. Sadly, time ran out on me even before I got to the concluding segment about Extended MAPI and <a href="http://dimastr.com/redemption/">Redemption</a> so I could only hasten through the slides about those topics rather than actually show some practical examples.</p>
<p>Well, one should learn from one&#8217;s mistakes. I will try to cover the bits that got a bit of a short end here on the blog in the form of more <a href="https://ogware.wordpress.com/2009/06/04/creating-outlook-addins-with-delphi-part-2-option-pages/">videos</a> and also to do better at the next live talk. I hope everyone was still able to take away something interesting for him or herself. <strong>Please feel free to post any unasked questions here on the comment thread.</strong></p>
<p>One note to the organization team regarding breaks: Please make sure that next time there will always be at least 10 minutes between sessions. That way people will actually have some time to get from one session to the next if it is in a different room than the previous one and also to step out to catch some fresh air or for taking last break&#8217;s coffee to the pottery department and so on. Furthermore, as a speaker you typically also need a couple of moments before you have got all the wiring in place and your notebook booted up properly. As most speakers (including <a href="http://blog.digivendo.com/">my predecessor</a> and me) made use of their time slot to the very last second that set-up time had to count against the regular session time while all the while the audience was already champing at the bit. <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>The day&#8217;s finale in the Gröninger Brauhaus was quite pleasant and fun. In my mind the pub/restaurant visit at the end has really become a stock item of the Delphi Tage events in its own right.</p>
<p>The first thing I found in my inbox when I turned on my computer for the first time since my return was a belated (actually, it had arrived a mere 30 minutes after I had left for Hamburg) email from the <a href="http://www.add-in-express.com/add-in-delphi/">Add-in-Express</a> team, containing a <strong>30% rebate coupon </strong>for the attendees of my talk. I will make sure to include that in my slides before I send them off. Speaking of which, the slides of the entire event (including mine) will shortly be made available  via the <a href="http://delphipraxis.net">DelphiPraxis</a> forum as one big downloadable ZIP-archive. I will post the link here once it is available.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-recap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">123</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=150" medium="image">
			<media:title type="html">DSCN5741</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=150" medium="image">
			<media:title type="html">David I Keynote Audience</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=150" medium="image">
			<media:title type="html">DSCN5736</media:title>
		</media:content>
	</item>
		<item>
		<title>Delphi Tage 2009 &#8211; Rückblick</title>
		<link>https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/</link>
					<comments>https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/#comments</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Sun, 07 Jun 2009 16:05:26 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[delphi-de]]></category>
		<category><![CDATA[delphitage-de]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[outlookaddins-de]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=83</guid>

					<description><![CDATA[[please see next post for an English version of this article] So, nun bin auch ich zurück von den diesjährigen Delphi-Tagen in Hamburg und hatte ein wenig Zeit, die Eindrücke auf mich wirken zu lassen. Wie schon vielfach erwähnt, wird sich die Ausgefallenheit der Location wohl nur noch schwer übertreffen lassen (muss ja aber auch [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" data-attachment-id="86" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/de/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif" data-orig-size="16,10" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="de" data-image-description="" data-image-caption="" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif?w=16" class="alignleft size-full wp-image-86" title="de" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif?w=16&#038;h=10" alt="de" width="16" height="10" /></p>
<p>[please see <a href="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-recap/">next post</a> for an English version of this article]</p>
<p>So, nun bin auch ich zurück von den diesjährigen <a href="http://delphi-tage.de/">Delphi-Tagen</a> in Hamburg und hatte ein wenig Zeit, die Eindrücke auf mich wirken zu lassen. <a title="Feedback-Thread auf DelphiPraxis.net" href="http://www.delphipraxis.net/viewtopic.php?p=1045810">Wie schon vielfach erwähnt</a>, wird sich die Ausgefallenheit der Location wohl nur noch schwer übertreffen lassen (muss ja aber auch gar nicht &#8211; schließlich soll ja das Gesamterlebnis, die Leute, die Vorträge und nicht zuletzt Delphi im Vordergrund stehen).</p>
<div data-shortcode="caption" id="attachment_85" style="width: 160px" class="wp-caption alignleft"><a href="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg"><img aria-describedby="caption-attachment-85" loading="lazy" data-attachment-id="85" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/dscn5741/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg" data-orig-size="1280,960" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E4500&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1244310053&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.85&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.003832886163281&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="DSCN5741" data-image-description="" data-image-caption="&lt;p&gt;Der Veranstaltungsort &amp;#8211; Die Cap San Diego&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=1024" class="size-thumbnail wp-image-85" title="DSCN5741" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=150&#038;h=112" alt="Der Veranstaltungsort - Die Cap San Diego" width="150" height="112" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=150 150w, https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" /></a><p id="caption-attachment-85" class="wp-caption-text">Der Veranstaltungsort - Die Cap San Diego</p></div>
<div data-shortcode="caption" id="attachment_84" style="width: 160px" class="wp-caption alignright"><a href="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg"><img aria-describedby="caption-attachment-84" loading="lazy" data-attachment-id="84" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/dscn5734/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg" data-orig-size="1280,960" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E4500&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1244281023&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.85&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.13888888888889&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="David I Keynote Audience" data-image-description="" data-image-caption="&lt;p&gt;Publikum bei David&amp;#8217;s Keynote&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=1024" class="size-thumbnail wp-image-84" title="David I Keynote Audience" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=150&#038;h=112" alt="Publikum bei David's Keynote" width="150" height="112" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=150 150w, https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" /></a><p id="caption-attachment-84" class="wp-caption-text">Publikum bei David&#39;s Keynote</p></div>
<p>(weitere Bilder gibt es übrigens im entsprechenden <a href="http://www.delphipraxis.net/album_cat.php?cat_id=15&amp;sort_method=pic_time&amp;sort_order=DESC&amp;start=0">Album der DelphiPraxis</a>, sowie beim <a href="http://www.delphi-treff.de/backstage/veranstaltungen/delphi-tage-2009-in-hamburg/">Delphi-Treff</a>)</p>
<p>Großes Lob an Daniel auch für die Organisation des &#8220;pre-Con&#8221; Grillabends im Clubheim des FC St. Pauli wo man sich in netter Atmosphäre, mit leckerem Essen und einem schönen kühlen hanseatischen Bier unter die Delphi-Community mischen konnte, und dabei auch mal über andere Dinge, als nur Programmieren und Delphi reden konnte.</p>
<p>Weiter ging es am Samstag Morgen. Die Veranstaltung war sehr gut besucht (ca. 250 Leute einschließlich Speaker und Aussteller, wenn ich Daniel richtig verstanden habe). Besonders erfreulich fand ich auch die besonders große Anzahl von Leuten, die sich bei der abschließenden &#8220;Hände-heben&#8221;-Runde als Erstbesucher &#8220;geoutet&#8221; haben. Der Altersdurchschnitt lag meinem Empfinden nach auch etwas niederiger als bei früheren Events, was ja nur ein gutes Zeichen sein kann.</p>
<p>Die Keynote von David I bot wenig Neues, sofern man die Berichterstattung zur <a href="http://delphilive.com/">Delphi Live!</a>-Konferenz im letzten Monat verfolgt hatte. Trotzdem finde ich es immer wieder erfrischend, David reden zu hören. Man merkt einfach, dass er mit Leib und Seele bei der Sache ist.</p>
<p>Weiter ging es mit den ersten Runde Sessions, wobei ich davon selbst leider nicht mehr viel mitbekommen habe, da ich die Kaffeepause nutzten musste, um einen kostengünstigeren Parkplatz für meinen Smart zu suchen. Zumindest die letzte Hälfte von <a href="http://wiert.wordpress.com/">Jeroen</a>s Vortrag über IDE-Addins und sonstige nützliche Tipps zur Produktivitätssteigerung konnte ich noch mit halben Ohr und Auge verfolgen &#8211; leider war der Raum so voll, dass ich nur im Durchgang zum Nebenraum stehen konnte, wo Bernd Ott einen ebenfalls sehr interessanten Vortrag zum Thema Subversion hielt.</p>
<div data-shortcode="caption" id="attachment_93" style="width: 160px" class="wp-caption alignleft"><a href="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg"><img aria-describedby="caption-attachment-93" loading="lazy" data-attachment-id="93" data-permalink="https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/dscn5736/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg" data-orig-size="1280,960" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E4500&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1244290194&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.85&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.2&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="DSCN5736" data-image-description="" data-image-caption="&lt;p&gt;Bernd Ua &amp;#8211; Softwaretests&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=1024" class="size-thumbnail wp-image-93" title="DSCN5736" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=150&#038;h=112" alt="Bernd Ua - Softwaretests" width="150" height="112" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=150 150w, https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" /></a><p id="caption-attachment-93" class="wp-caption-text">Bernd Ua - Softwaretests</p></div>
<p>Danach ging es für mich ohne Pause weiter mit Bernd Uas Vortrag zu Softwaretests und DUnit, welchen ich aus ungewohnt luftiger Höhe verfolgt habe&#8230; (siehe Bild links).</p>
<p>In der Zwischenzeit rückte mein eigener Vortrag immer näher und da dies der erste seit fast auf den Tag genau 9 Jahren sein sollte (abzgl. einem Monat), stieg die Anspannung bei mir entsprechend. Sakuras <a href="http://www.gumpi.com/Blog/default,month,2009-01.aspx">Vortrag über die Windows 7 Taskbar</a> konnte ich leider entsprechend auch nur zur Hälfte verfolgen, da ich erst noch ein wenig Frischluft schnappen musste.</p>
<p>Mein eigener Vortrag schließlich war eine gemischte Angelenheit: Zwar konnte ich meine Nervosität größtenteils noch ablegen und konnte auch alle Zwischenfragen beantworten, aber meine Entscheidungen zur Zeitaufteilung und Gewichtung  der einzelnen Vortragsteile waren, im Nachhinein betrachtet, glaube ich nicht ganz ideal und obendrein reichte die Zeit leider gar nicht mehr für den abschließenden Teil zum Thema Extended MAPI und <a href="http://dimastr.com/redemption/">Redemption</a>, wodurch ich zu diesem Thema nur noch im Eiltempo die Slides durchklicken konnte, anstatt echte Praxisbeispiele zu zeigen.</p>
<p>Nun ja, wie sagt man: aus Fehlern lernt man. Ich werde versuchen, die zu kurz gekommenen Teile hier in Blog- und <a href="https://ogware.wordpress.com/2009/06/04/creating-outlook-addins-with-delphi-part-2-option-pages/">Video</a>form nachzureichen und es beim nächsten Live-Vortrag besser zu machen. Ich hoffe, es konnten trotzdem alle Anwesenden das eine oder andere für sich mitnehmen. <strong>Konkrete Fragen beantworte ich auch gerne hier im Kommentar-Thread.</strong></p>
<p>In Sachen Pausen nochmal eine kleine Anmerkung für die Organisatoren: Bitte beim nächsten Mal auch zwischen den Vor- und Nachmittagssessions noch 10-15 Minuten Pause lassen, so dass die Teilnehmer auch Zeit haben, von einer Session zur nächsten zu laufen, nochmal (eine Stange) Frische Luft zu schnappen, die Getränke aus der letzten Pause in die Keramikabteilung zu tragen und so weiter. Außerdem braucht man ja auch als Speaker noch einen kurzen Moment, bevor man sein Notebook ordnungsgemäß verkabelt und hochgefahren hat. Da die meisten Speaker, so wie auch <a href="http://blog.digivendo.com/">mein Vorredner</a> und ich, ihre Zeit (mehr als) voll ausgenutzt haben, mussten diese Vorarbeiten dann alle schon während der eigentlichen Session-Zeit erledigt werden, während das Publikum schon mit den Füßen scharrte&#8230; <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Den Ausklang des Tages im Gröninger Brauhaus fand ich schließlich auch sehr amüsant und gesellig (ich sag nur: &#8220;JUUUUNGS!!!&#8221; <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> ). Das gehört für mich mittlerweile auch einfach zu den Delphi-Tagen dazu.</p>
<p>Das erste, was ich schließlich heute morgen in meinem Posteingang fand, war ein <strong>30%-Gutscheincode</strong>, welchen mir das <a href="http://www.add-in-express.com/add-in-delphi/">Add-in-Express</a>-Team etwas verspätet (um genau zu sein: 30 Minuten nach meiner Abreise am Freitag) für die Teilnehmer meines Vortrages zugesandt hatte. Ich werde diesen auf jeden Fall noch mit in die Slides einbauen, bevor ich Sie verfügbar mache.</p>
<p>Apropos, die Slides der gesamten Veranstaltung, einschließlich meiner, wird es in Kürze über die <a href="http://delphipraxis.net">DelphiPraxis</a> als großes ZIP-Archiv zum Download geben. Ich werde den entsprechenden Link dann auch noch einmal hier posten.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/07/delphi-tage-2009-ruckblick/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">83</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/de.gif" medium="image">
			<media:title type="html">de</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5741.jpg?w=150" medium="image">
			<media:title type="html">DSCN5741</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5734.jpg?w=150" medium="image">
			<media:title type="html">David I Keynote Audience</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/dscn5736.jpg?w=150" medium="image">
			<media:title type="html">DSCN5736</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Outlook-Addins with Delphi &#8211; Part 2 (Option Pages)</title>
		<link>https://ogware.wordpress.com/2009/06/04/creating-outlook-addins-with-delphi-part-2-option-pages/</link>
					<comments>https://ogware.wordpress.com/2009/06/04/creating-outlook-addins-with-delphi-part-2-option-pages/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Thu, 04 Jun 2009 09:59:48 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[delphi2009]]></category>
		<category><![CDATA[delphitage]]></category>
		<category><![CDATA[optionpage]]></category>
		<category><![CDATA[outlookaddins]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=77</guid>

					<description><![CDATA[So, here&#8217;s the second example on creating Outlook-Addins with Delphi which will likely not be included in my talk at the German Delphi-Tage due to time constraints. In this one I show how to add an option page to your addin, which is typically used for letting the user configure your addin or for displaying [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="http://giesen-edv.com/oliver/demos/Part2.html"><img loading="lazy" data-attachment-id="78" data-permalink="https://ogware.wordpress.com/2009/06/04/creating-outlook-addins-with-delphi-part-2-option-pages/part2/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/part2.png" data-orig-size="302,300" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="addinswithdelphi2" data-image-description="" data-image-caption="&lt;p&gt;Creating Outlook-addins with Delphi &amp;#8211; Part 2&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/part2.png?w=302" class="size-full wp-image-78" title="addinswithdelphi2" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/part2.png?w=302&#038;h=300" border="0" alt="Creating Outlook-addins with Delphi - Part 2" width="302" height="300" align="right" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/part2.png 302w, https://ogware.wordpress.com/wp-content/uploads/2009/06/part2.png?w=150&amp;h=150 150w" sizes="(max-width: 302px) 100vw, 302px" /></a></p>
<p>So, here&#8217;s the second example on creating Outlook-Addins with Delphi which will likely not be included in my talk at the German <a href="http://delphi-tage.de/">Delphi-Tage</a> due to time constraints.</p>
<p>In this one I show how to add an option page to your addin, which is typically used for letting the user configure your addin or for displaying version and contact information.</p>
<p>Again, raw and unedited (I&#8217;m probably talking too fast in this one). Recorded at 1024&#215;768 in English, 9 minutes and 28 seconds.</p>
<p>Enjoy.</p>
<p><a href="https://ogware.wordpress.com/2009/06/04/creating-com-addins-with-delphi-part-1/">[Part 1]</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/04/creating-outlook-addins-with-delphi-part-2-option-pages/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">77</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/part2.png" medium="image">
			<media:title type="html">addinswithdelphi2</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Outlook-Addins with Delphi &#8211; Part 1</title>
		<link>https://ogware.wordpress.com/2009/06/04/creating-com-addins-with-delphi-part-1/</link>
					<comments>https://ogware.wordpress.com/2009/06/04/creating-com-addins-with-delphi-part-1/#comments</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Thu, 04 Jun 2009 08:13:52 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[camtasia]]></category>
		<category><![CDATA[delphi2009]]></category>
		<category><![CDATA[delphitage]]></category>
		<category><![CDATA[outlookaddins]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=68</guid>

					<description><![CDATA[I have now uploaded a screen video of the first example from my upcoming talk about creating COM-addins with Delphi at the German Delphi Tage event. This is raw and unedited and I assume prior knowledge of some COM-basics and terminology like CoClasses, ProgIDs and type libraries and how to create and register COM-DLLs. This [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="http://giesen-edv.com/oliver/demos/Part1a.html"><img loading="lazy" data-attachment-id="69" data-permalink="https://ogware.wordpress.com/2009/06/04/creating-com-addins-with-delphi-part-1/part1/" data-orig-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/part1.png" data-orig-size="301,300" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="addinswithdelphi1" data-image-description="" data-image-caption="&lt;p&gt;Creating COM-Addins with Delphi &amp;#8211; Part 1&lt;/p&gt;
" data-large-file="https://ogware.wordpress.com/wp-content/uploads/2009/06/part1.png?w=301" class="size-full wp-image-69" title="addinswithdelphi1" src="https://ogware.wordpress.com/wp-content/uploads/2009/06/part1.png?w=301&#038;h=300" border="0" alt="Creating COM-Addins with Delphi - Part 1" width="301" height="300" align="right" srcset="https://ogware.wordpress.com/wp-content/uploads/2009/06/part1.png 301w, https://ogware.wordpress.com/wp-content/uploads/2009/06/part1.png?w=150&amp;h=150 150w" sizes="(max-width: 301px) 100vw, 301px" /></a><br />
I have now uploaded a screen video of the first example from my upcoming talk about creating COM-addins with Delphi at the German <a href="http://delphi-tage.de">Delphi Tage</a> event.</p>
<p>This is raw and unedited and I assume prior knowledge of some <a href="http://en.wikipedia.org/wiki/Component_Object_Model">COM</a>-basics and terminology like <a href="http://en.wikipedia.org/wiki/Component_object_model#Classes">CoClasses</a>, <a href="http://msdn.microsoft.com/en-us/library/ms690196.aspx">ProgIDs</a> and <a href="http://en.wikipedia.org/wiki/Component_Object_Model#Interface_Definition_Language_and_type_libraries">type libraries</a> and how to create and register COM-DLLs.</p>
<p>This was recorded at 1024&#215;768 in English language (while the live talk will be in German) and is 7 minutes 29 seconds long.</p>
<p>Enjoy!</p>
<p><a href="https://ogware.wordpress.com/2009/06/04/creating-outlook-addins-with-delphi-part-2-option-pages/">[Part 2]</a> Option Pages</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/04/creating-com-addins-with-delphi-part-1/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">68</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>

		<media:content url="https://ogware.wordpress.com/wp-content/uploads/2009/06/part1.png" medium="image">
			<media:title type="html">addinswithdelphi1</media:title>
		</media:content>
	</item>
		<item>
		<title>Moving on&#8230;</title>
		<link>https://ogware.wordpress.com/2009/06/03/moving-on/</link>
					<comments>https://ogware.wordpress.com/2009/06/03/moving-on/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Wed, 03 Jun 2009 13:18:50 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[delphitage]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[livejournal]]></category>
		<category><![CDATA[outlookaddins]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/?p=63</guid>

					<description><![CDATA[I have now moved this blog from LiveJournal.com to WordPress.com which offers me some more flexibility. It is however quite likely that this will also not be its final location as I intend to move on to a self-hosted WordPress installation in the short to mid term but there are a couple of things yet [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I have now moved this blog from LiveJournal.com to WordPress.com which offers me some more flexibility. It is however quite likely that this will also not be its final location as I intend to move on to a self-hosted WordPress installation in the short to mid term but there are a couple of things yet to sort out before I do that. In the meantime you may bookmark the following address:</p>
<p><a href="https://ogware.wordpress.com">https://ogware.wordpress.com</a></p>
<p>The preferred method to subscribe to the new blog is via FeedBurner from the following link:</p>
<p><a rel="alternate" href="http://feeds2.feedburner.com/wordpress/NibX"><img style="vertical-align:middle;border-width:0;" src="https://i0.wp.com/www.feedburner.com/fb/images/pub/feed-icon16x16.png" alt="" /></a> <a rel="alternate" href="http://feeds2.feedburner.com/wordpress/NibX">Subscribe in a reader</a></p>
<p>Hopefully there&#8217;ll also be a slew of new content coming &#8220;really soon now&#8221; (keeping fingers crossed) as I get ready for my talk about Outlook Addin Development at the <a href="http://www.delphi-tage.de">Delphi Tage</a> event this weekend in Hamburg.</p>
<p>Signing out&#8230; <span style="font-size:smaller;">(from LiveJournal)</span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/06/03/moving-on/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">63</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>

		<media:content url="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" medium="image" />
	</item>
		<item>
		<title>We don’t support test systems?!?!</title>
		<link>https://ogware.wordpress.com/2009/05/23/we-dont-support-test-systems/</link>
					<comments>https://ogware.wordpress.com/2009/05/23/we-dont-support-test-systems/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Fri, 22 May 2009 22:05:00 +0000</pubDate>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[anger management]]></category>
		<category><![CDATA[annoyance]]></category>
		<category><![CDATA[bug hunting]]></category>
		<category><![CDATA[hotline]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[too long]]></category>
		<category><![CDATA[too vague]]></category>
		<category><![CDATA[whatever]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/2009/05/23/we-dont-support-test-systems/</guid>

					<description><![CDATA[This was one of those days… where you really want to bite a chunk from your keyboard or table and then instead just shout at the top of your lungs all the way home until you feel slightly better – and this was already the second day in a row that ended this way. So [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This was one of those days… where you really want to bite a chunk from your keyboard or table and then instead just shout at the top of your lungs all the way home until you feel slightly better – and this was already the second day in a row that ended this way. So what happened? Here’s what.</p>
<p>I’ve had my first close encounter with the customer support of a certain big software vendor which I’ll try my best not to name here. Let’s say we have a product that works closely together with one of theirs and because of that some of our customers notified us of a problem that after close examination turned out to be what I’m currently certain is a bug in that vendor’s piece of software. One of their recent updates introduced a significant change in behaviour in a somewhat obscure area that just couldn’t have been on purpose (it’s also mentioned nowhere in the release notes). As that particular obscure area also touches on the correct functioning of our own tool we had an increased interest in getting this sorted out.</p>
<p>As that company does no longer have a public bug tracker (“because 90% of the filed items were really just requests for free tech support”) the only way to notify them of bugs in their products nowadays is by opening a regular support case &#8212; at the risk of having to pay for the tech support in case the tech handling the case determines that the problem was on our end after all. So, with that in mind, I wanted to make extra sure that I knew as much as possible about the issue (and especially how to trigger it) before I contacted them. I set up a test system with nothing but the supposedly defective software on it in a virtual machine and tried to reproduce and analyze the issue as best as I could. Once I was sure I knew what to do to reliably provoke the issue I phoned the first screener. That is, I phoned the first level support who noted down my data and a rough description of the problem, gave me a case number and told me that I would be contacted by a tech within 4 business hours. All fine. The call even came less than an hour later.</p>
<p>I first started to explain the problem again but the helpful support person quickly suggested we do a remote access session so he could see the issue first hand on my machine. All the better I thought, shared my desktop with the VM on it and Bob’s your uncle. Well, no. Not really. After having spent three days investigating, discussing with several unrelated affected customers, analyzing, probing, diagnosing, testing and consistently provoking the issue – all of a sudden the issue no longer occurred! No way, everything just worked as it was supposed to. It hadn’t been five minutes since I ran my last batch of tests where each and every single attempt succeeded in making visible the issue we were dealing with. And now – nothing to show. Quite embarrassing. I was completely dumbfounded. As the issue could no longer be reproduced at the time of first contact, the nice support person kindly offered to close the case for free. If I managed to reliably reproduce the issue again I could still contact them again and have the case reopened but in that case I better had something to show.</p>
<p>Needless to say, less than five minutes after hanging up I was able to reproduce the issue again – and again – and again. Not quite as reliably as before the call but still quite definitely there. I started to remember that in the release notes for the update that introduced the issue it was mentioned that several operations that were previously carried out sequentially had now been parallelized or moved to background threads in order to improve performance and responsiveness of the app. OK, so timing obviously plays a role here as well – and that could well be affected by a remote support software hooking into the video driver – we had a similar case ourselves a mere three months earlier.</p>
<p>Once I had been able to trigger the issue again after the call I installed Camtasia into the VM and began stress testing for good. At first I only managed to reproduce the issue about 4 out of 30 times but soon I was getting better. Apparently the issue was more likely to happen right after the app had been restarted. Most importantly, I finally had the bugger on camera. I trimmed&#160; the video and sent it to the support people – and waited.</p>
<p>Today, less than two hours before closing time I sent another reminder, asking for confirmation that the case had been reopened. I quickly received a response that they were still checking whether the video would actually suffice for “producing evidence”. I was also told that it would probably be better if I was able to reproduce the issue in a really <strong>clean environment without any other software involved at all </strong>(keep this snippet in mind for later).</p>
<p>I just as quickly replied back pointing out that the only other software installed on the machine where the video was produced was Camtasia and anyway, we could simply do another remote access session and just try a little harder to trigger the issue this time – after all, when we tried it the last time I fully expected the issue to occur on each and every try so when it didn’t, we immediately aborted the whole show. I also reported that by now I was able to reproduce the issue in my test environment in more than 20 out of 30 cases. I also inquired (and neither for the first nor the last time during that exchange) whether there was some kind of diagnostic logging I could turn on or whether sending the produced output files (which exhibited the error) would help.</p>
<p>No direct reply to any of those offers and questions. What I did get was a message that they <strong>had now at last watched the video</strong> I sent and that they would reopen the case – but in that case all further reproduction tests should be workable in a non-virtualized environment. Sure, no big deal, we have lots of unused physical boxes lying around here that could be prepared for this (remember: “ideally without any other software involved at all”), not to speak of the limitless amounts of time on our hands – not!</p>
<p>After my somewhat snappy and already more than slightly annoyed response the phone was quickly ringing again. The case had now been officially reopened and we started noting down the specs of the test environment (OS and program versions, network setup, etc.), possibly in preparation for another, more in depth analysis session. Somewhere in the middle of all that came the sentence <em>“well, we do not support test systems really”</em> and then <em>“we’d prefer to see the issue reproduced on a live production system”</em>… WTF?!?!?!</p>
<p><em>“Yes, just imagine we fix that issue in your test environment and then you take the fix to the production environment and it fails again.”</em></p>
<p>Um, I don’t know about you but the first thing I do when I’m hunting down a bug in my own programs is to <strong>eliminate</strong> outside factors to the point where I have distilled the exact minimum set of factors that are responsible for causing the bug. The last thing I would want to do is <strong>maximize</strong> the number of outside factors as was being proposed here.</p>
<p>At that point I realized that what the friendly tech guy was doing had nothing at all to do with trying to find the bug. He was still trying to prove (or rather make me admit) that there was no bug in the first place! After having supposedly watched the video of the bug happening! This was probably just the second screener that I had to get past before someone actually started taking me seriously and finally looked into the issue. I’m fully convinced that noone there has taken any steps to try and reproduce or otherwise investigate the issue themselves so far.</p>
<p>Did I mention that at that time I was able to reproduce the issue with something approaching 95% certainty in the test environment again?</p>
<p>Right, so if that’s the way they want it… I agreed to contact some of the affected customers and ask them for participation in “producing evidence” (I guess I should mention that we are not using the affected version of the software in production ourselves).</p>
<p>So I called one of the customers who immediately agreed to assist. As I had tentatively scheduled the remote access session for after the weekend I wanted to “rehearse” the whole thing to be on the slightly safer side this time and connected to the customer (who also consistently experienced the issue ever since the update). Guess what? Yep, no longer reproducible on that box as well as soon as I started watching… then again, we only tried three or four times because it was already late.</p>
<p>What a way to leave for the weekend…</p>
<p>And yes, as you can probably tell, I am <strong>so</strong> looking forward to Monday…</p>
<p>(to be continued)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2009/05/23/we-dont-support-test-systems/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
		<item>
		<title>Delphi 2009 Installation Experience</title>
		<link>https://ogware.wordpress.com/2008/12/16/delphi-2009-installation-experience/</link>
					<comments>https://ogware.wordpress.com/2008/12/16/delphi-2009-installation-experience/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Tue, 16 Dec 2008 08:19:00 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[delphi2009]]></category>
		<category><![CDATA[installation]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/2008/12/16/delphi-2009-installation-experience/</guid>

					<description><![CDATA[This was a mixed bag so far. On the plus side it indeed was faster and less convoluted than the Delphi 2007 install. Also, it appears to have produced a working installation eventually. But&#8230; I have installed Delphi 2009 Professional myself on two different machines now. A co-worker did the same on his own machine. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This was a mixed bag so far. On the plus side it indeed was faster and less convoluted than the Delphi 2007 install. Also, it appears to have produced a working installation eventually. But&#8230;</p>
<p>I have installed Delphi 2009 Professional myself on two different machines now. A co-worker did the same on his own machine. On all three machines the main install was not successful initially, failing to install the &quot;dbpack&quot; component for some unexplained reason. Also, after the main installer was finished all three machines rebooted without warning or a prompt to delay the reboot. All open apps were simply terminated hard as soon as I hit the Finish button and Windows went into shutdown.</p>
<p>After the reboot I manually installed the dbpack as recommended in the preceding error message. This worked flawlessly. On my home machine I had to reboot again after this was done. At least this time it gave me a chance to first save my work and reboot when <strong>I</strong> was ready.</p>
<p>Help installation took a while longer than the main installer but otherwise also worked flawlessly. Online registration also was no problem on all three machines using existing CDN account data.</p>
<p>Checking for and installing the updates did not work out of the box on the two machines here at work, both failing with exactly the same symptoms. Strangely enough after having correctly identified the available Update 1 and downloading it the update installer aborted with an error from the 16-bit MS-DOS subsystem (huh?) and then hung itself. After I terminated it any attempt to check for updates always resulted in the message that no updates were available. Running the downloadable Update 1 installer from the registered users page however worked flawlessly again.</p>
<p>I don&#8217;t remember having had any such problems when I installed the trial version a month ago &#8211; well, except that I couldn&#8217;t install the Update 1 &#8211; but I think that was by design as it only appears to be available to registered users.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2008/12/16/delphi-2009-installation-experience/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
		<item>
		<title>CVSNT 2.5.03.2260 (&#8220;Scorpio&#8221; SP1 stable) Inno Installer for Win32 ready for download</title>
		<link>https://ogware.wordpress.com/2006/03/10/cvsnt-2-5-03-2260-scorpio-sp1-stable-inno-installer-for-win32-ready-for-download/</link>
					<comments>https://ogware.wordpress.com/2006/03/10/cvsnt-2-5-03-2260-scorpio-sp1-stable-inno-installer-for-win32-ready-for-download/#respond</comments>
		
		<dc:creator><![CDATA[tier777]]></dc:creator>
		<pubDate>Fri, 10 Mar 2006 14:43:00 +0000</pubDate>
				<category><![CDATA[CVSNT]]></category>
		<category><![CDATA[cvsnt]]></category>
		<category><![CDATA[wincvsnt]]></category>
		<guid isPermaLink="false">http://ogware.wordpress.com/2006/03/10/cvsnt-2-5-03-2260-scorpio-sp1-stable-inno-installer-for-win32-ready-for-download/</guid>

					<description><![CDATA[Here&#8217;s the final 2.5.03 release. According to Tony there will be a 2.5.04 release soon but it will likely include no changes to the open source portions of CVSNT. From now on all work is focused on the new 2.6 line with full database backend. cvsnt-2.5.3.2260-setup.zip (3.706&#160;KB) Note that this installer is not yet 64bit-enabled [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s the final 2.5.03 release. According to Tony there will be a 2.5.04 release soon but it will likely include no changes to the open source portions of CVSNT. From now on all work is focused on the new 2.6 line with full database backend.</p>
<p><a href="http://mitglied.lycos.de/ogiesen/cvsnt-2.5.3.2260-setup.zip">cvsnt-2.5.3.2260-setup.zip</a> (3.706&nbsp;KB)</p>
<p><i>Note that this installer is not yet 64bit-enabled (whereas the original MSI installer is) as I did not have time yet to look into the requirements for making it so (not to mention that I am lacking the test environment). I will update this entry (or post a new one) once I have gotten round to that.</i></p>
<p>See my <a href="http://ogiesen.livejournal.com/#1984">previous announcement</a> for a short summary of what&#8217;s different with regards to the official MSI installer. I also took the opportunity to add a &#8220;Server only installation&#8221; install type in addition to the &#8220;Client only installation&#8221; one I added some releases ago which is also not available in the MSI installer. I have included the <a href="http://mitglied.lycos.de/ogiesen/cvsnt.iss">install source script</a> for <a href="http://www.jrsoftware.org/isdl.php" target="_blank">InnoSetup</a> 5.1.6 inside the download archive as well this time .</p>
<p>&gt;&gt;&gt; <a href="http://paris.nodomain.org/blog/index.php/history/2006/03/09/cvsnt_2_5_03_scorpio_build_2260">Official Release Notes</a> &lt;&lt;&lt;</p>
<p>If you intend to use this build as a client binary for WinCvs, make sure you read <a href="http://ogiesen.livejournal.com/#2910">my notes accompanying the original 2.5.03 release</a> as unfortunately a minor incompatibility has crept in at that point. Said entry also describes the workaround.</p>
<p>Cheers,</p>
<p>Oliver</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ogware.wordpress.com/2006/03/10/cvsnt-2-5-03-2260-scorpio-sp1-stable-inno-installer-for-win32-ready-for-download/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5</post-id>
		<media:content url="https://2.gravatar.com/avatar/b02147bd320f837d23aee1fc5503ecb9511c736582f8ea3cad55375ef88f3b8b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tier777</media:title>
		</media:content>
	</item>
	</channel>
</rss>
