User Oliver Giesen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:03:58Z http://stackoverflow.com/feeds/user/9784 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1566253/how-can-i-tell-whether-a-given-mapi-message-is-incoming-or-outgoing 1 How can I tell whether a given MAPI message is incoming or outgoing? Oliver Giesen 2009-10-14T13:32:08Z 2009-11-25T03:11:30Z <p>In a COM-addin for Outlook (using Redemption) I need to be able to determine whether a given message that I'm looking at was received or sent (I only want to act on the incoming ones). Simply looking at the parent folder or the recipients or senders will not work in my case as both incoming and outgoing messages might be thrown together inside the same (public) folder and there can be multiple valid senders. Furthermore there might also be internal messages sent from one valid sender to another.</p> <p>Checking for <code>PR_RECEIVED_BY_*</code> or <code>PR_RCVD_REPRESENTING_*</code> to identify the incoming mails is also no complete solution for me because these properties are only set in mailbox stores and the messages I'm dealing with will most commonly be in the Public Folder Store (more precisely: in mail-enabled Public Folders, where messages sent on behalf of that folder are placed as well).</p> <p>I already used OutlookSpy to compare MAPI properties of various sample messages and thought several times I had found something but so far nothing I found proved to be an ultimately stable solution (e.g. at first <code>PR_MESSAGE_RECIP_ME</code> appeared to only ever be set on incoming messages and never on outgoing ones, but then I found incoming messages where that property was also missing).</p> <p>Essentially, I'm looking for some property (or value thereof) that is <strong>always</strong> set on either incoming or outgoing messages <strong>only</strong>.</p> <p>This needs to work at least with Exchange 2003 and 2007 and Outlook 2003 and 2007.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi 2 How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T10:44:37Z 2009-11-23T21:59:16Z <p>I'm trying to write a generic cached property accessor like the following but am getting a compiler error when trying to check whether the storage variable already contains a value:</p> <pre><code>function TMyClass.GetProp&lt;T&gt;(var ADataValue: T; const ARetriever: TFunc&lt;T&gt;): T; begin if ADataValue = Default(T) then // &lt;-- compiler error on this line ADataValue := ARetriever(); Result := ADataValue; end; </code></pre> <p>The error I'm getting is "E2015 Operator not applicable to this operand type".</p> <p>Would I have to put a constraint on <code>T</code> to make this work? The help file says that <code>Default()</code> would accept anything except generic types. In my case I'm dealing mostly with simple types like <code>String</code>, <code>Integer</code> and <code>TDateTime</code>.</p> <p>Or is there some other library function to perform this particular check?</p> <p>I'm using Delphi 2009 in case that matters.</p> <p><hr></p> <p>P.S.: Just in case it isn't clear from the code what I'm trying to do: In my case determining the actual property values might take a while for various reasons and sometimes I might not even need them at all. On the plus side however the values are constant so I only want to call the code that determines the actual value the first time that property is accessed and then store the value in a class field and the next time that property is accessed return the cached value directly. Here's an example of how I hoped I would be able to use that code:</p> <pre><code>type TMyClass = class private FSomeProp: String; function GetSomeProp: String; function GetProp&lt;T&gt;(var ADataValue: T; const ARetriever: TFunc&lt;T&gt;): T; public property SomeProp read GetSomeProp; end; function GetSomeProp: String; begin Result := GetProp(FSomeProp, function: String begin Result := SomeSlowOrExpensiveCalculation; end); end; </code></pre> <p>(obviously, there's more than just one property)</p> http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi/1786336#1786336 1 Answer by Oliver Giesen for How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T21:59:16Z 2009-11-23T21:59:16Z <p>After a hint in the comments from Binis and digging around a little in Generics.Collections I came up with the following which appears to work just as I wanted it:</p> <pre><code>function TMyClass.GetProp&lt;T&gt;(var ADataValue: T; const ARetriever: TFunc&lt;T&gt;): T; var lComparer: IEqualityComparer&lt;T&gt;; begin lComparer := TEqualityComparer&lt;T&gt;.Default; if lComparer.Equals(ADataValue, Default(T)) then ADataValue := ARetriever(); Result := ADataValue; end; </code></pre> http://stackoverflow.com/questions/1462153/recursively-cvs-add-files-directories-and-ignore-existing-cvs-files/1607435#1607435 0 Answer by Oliver Giesen for Recursively CVS add files/directories and ignore existing CVS files. Oliver Giesen 2009-10-22T14:01:19Z 2009-10-22T14:01:19Z <p>See <a href="http://stackoverflow.com/questions/5071/how-to-add-cvs-directories-recursively/268246#268246">this answer of mine</a> to the quoted question for an explanation of why you get the "cannot open CVS/Entries for reading" error.</p> <p>Two important things to keep in mind when looking at the other solutions offered here:</p> <ul> <li>folders have to be added, too</li> <li>in order to add a file or folder, the parent folder of that item must already have been added, so the order in which items are processed is very important</li> </ul> <p>So, if you're just starting to populate your repository and you haven't yet got anything to check out that would create a context for the added files then <code>cvs add</code> cannot be used - or at least not directly. You can create the "root context" by calling the following command <strong>in the parent folder</strong> of the first folder you want to add:</p> <pre><code>cvs co -l . </code></pre> <p>This will create the necessary sandbox meta-data (i.e. a hidden "CVS" subfolder containing the "Root", "Repository" and "Entries.*" files) that will allow you to use the add command.</p> http://stackoverflow.com/questions/1493972/listing-cvs-attic-delete-files/1607302#1607302 0 Answer by Oliver Giesen for Listing CVS Attic/Delete files Oliver Giesen 2009-10-22T13:42:52Z 2009-10-22T13:42:52Z <p>In a perfect world the following should give you what you want:</p> <pre><code>cvs -q rlog -sdead -rHEAD -SNR ModuleName </code></pre> <p>However, it only works partially with my CVSNT installation, possibly because CVSNT treats the reserved <code>HEAD</code> symbol not as the single revision at the tip of the default branch but instead uses it to identify the entire trunk branch.</p> <p>In this case that means that besides files that are currently deleted you will also get files that were resurrected again since they were deleted or files that were initially added on a branch (as those will also have a "dead" revision at 1.1). You might want to try it with the vanilla CVS (instead of CVSNT) anyway as I seem to remember that treating <code>HEAD</code> as a branch rather than as a revision is a CVSNT-specific idiosyncrasy...</p> http://stackoverflow.com/questions/74519/using-7-zip-from-delphi/81893#81893 7 Answer by Oliver Giesen for Using 7-Zip from Delphi? Oliver Giesen 2008-09-17T10:39:09Z 2009-10-12T11:08:35Z <p>As of release 1.102 the <a href="http://homepages.codegear.com/jedi/jcl/" rel="nofollow">JEDI Code Library</a> has support for <a href="http://en.wikipedia.org/wiki/7-Zip" rel="nofollow">7-Zip</a> built into the <a href="http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup" rel="nofollow">JclCompression</a> unit. Haven't used it myself yet, though.</p> http://stackoverflow.com/questions/268039/how-do-you-handle-multiple-overlapping-projects-in-trac 4 How do you handle multiple (overlapping) projects in trac? Oliver Giesen 2008-11-06T09:20:44Z 2009-08-23T16:56:19Z <p>We are using trac and are really satisfied with it. However, out of the box, trac is best suited for single-project environments only. I'd be interested to hear about the various approaches people take to make it work with multiple projects nevertheless and their experiences with them. Are there any plugins to recommend? Any patches, tweaks or whatnots? Are you maybe even using an entirely different bug-tracking system that offers all of trac's functionality plus multi-project support?</p> <p>We recently started managing a second project ourselves which generally works okay but also has some drawbacks, especially where the two projects overlap because of common library code we wrote that is used in both projects. How do you handle this?</p> <p>(I'll attach our own current approach as an answer to this post.)</p> http://stackoverflow.com/questions/634587/delphi-why-do-i-sometimes-get-an-i-o-error-103-with-this-code 4 Delphi: Why do I sometimes get an I/O Error 103 with this code? Oliver Giesen 2009-03-11T13:50:00Z 2009-08-23T12:49:30Z <p>In several of my apps I have code similar to the following:</p> <pre><code>if ForceDirectories(ExtractFilePath(lLogName)) then begin AssignFile(lLog, lLogName); try if FileExists(lLogName) then Append(lLog) else Rewrite(lLog); Writeln(lLog, lLogLine); finally {$I-}CloseFile(lLog);{$I+} end; end; </code></pre> <p>In one application, the first time I try to execute this I consistently get an I/O Error 103 exception on the line with the Append statement (the file does exist prior to calling this). All subsequent attempts at the operation will work fine however - until I restart the app.</p> <p>All the docs I found about this error so far indicated that this would either be caused by calling <code>CloseFile</code> without prior <code>Reset</code> or <code>Rewrite</code> (<code>Append</code> typically isn't mentioned) or if the file was in use by another process. As the exception occurs before the call to <code>CloseFile</code> it obviously couldn't be the former.</p> <p>I already tried inserting a <code>Reset</code> right after the <code>AssignFile</code> for good measure but then I get the exception on that line.</p> <p>There is also no other application overtly accessing that file. I say "overtly" because I do have a slight suspicion that anti-virus (TrendMicro in my case) might be the cuplrit here (so maybe the file <strong>is</strong> in use). If that was indeed the problem, what would be the best way around it? Hard-coding an automatic retry does not really feel like a clean solution to me...</p> <p><hr /></p> <p>Another case where I sometimes get the 103 error is this code, which I use to create an empty file (or more often to empty an existing file):</p> <pre><code>AssignFile(lFile, AFileName); try Rewrite(lFile); finally CloseFile(lFile); end; </code></pre> <p>In this case it's much harder to reproduce. It happens a lot less often. Most of the time this seems to happen on the first run after I recompiled the application. Could this again be the anti-virus getting in the way? I have only ever seen this happen on my development machine and never gotten a report from a customer. As with the first scenario this only ever happens once per application session (if at all). Subsequent attempts are always successful.</p> <p>Any suggestions for a different, potentially more fail-safe approach to creating empty files or emptying existing ones?</p> http://stackoverflow.com/questions/1233052/migrating-from-cvsnt-to-subversion-whats-the-equivalent-of-virtual-modules 1 Migrating from CVS(NT) to Subversion: What's the equivalent of (virtual) modules? Oliver Giesen 2009-08-05T12:51:57Z 2009-08-08T10:34:44Z <p>We are currently considering to move away from CVSNT, very probably to Subversion (because we are already using trac, which is well-prepared for SVN-integration). As we have been making rather extensive use of some less common CVS(NT)-features a couple of questions arose very early on. This is but the first of them.</p> <p>Here's the scenario: <em>(For the impatient: My actual question is at the very bottom of this post below the horizontal ruler.)</em></p> <p>All of our "projects" share some common code. The directory hierarchy inside the CVS repository looks somewhat like this (<em>simplified - hopefully not too much so</em>):</p> <ul> <li>Libs <ul> <li>Lib1</li> <li>Lib2</li> </ul></li> <li>External <ul> <li>ExtLib1 <ul> <li>Docs</li> <li>Source</li> </ul></li> <li>ExtLib2 <ul> <li>Docs</li> <li>Source</li> </ul></li> </ul></li> <li>ProjectA</li> <li>ProjectB</li> </ul> <p>...where ProjectA might for example be dependent on Lib1, Lib2, ExtLib1 and ExtLib2 and ProjectB dependent on Lib1 and ExtLib1 (actually this might be because Lib1 itself depends on ExtLib1). We modelled this by using the <code>CVSROOT/modules</code> file like so:</p> <pre><code>ExtLib1Full -d Lib/ExtLib1Full External/ExtLib1 ExtLib1Src -d Lib/ExtLib1/Source External/ExtLib1/Source ExtLib2Full -d Lib/ExtLib2Full External/ExtLib2 ExtLib2Src -d Lib/ExtLib2/Source External/ExtLib2/Source Lib1 -d Lib/Lib1 Libs/Lib1 Lib1_WDeps -a ExtLib1Src Lib1 Lib2 -d Lib/Lib2 Libs/Lib2 Lib2_WDeps -a Lib2 ProjectAMain -a ProjectA ProjectALibs -a Lib1_WDeps Lib2_WDeps ExtLib2 ProjectAFull -a ProjectAMain ProjectALibs ProjectALibs_OursOnly -a Lib1 Lib2 ProjectAFull_OursOnly -a ProjectAMain ProjectALibs_OursOnly ProjectBMain -a ProjectB ProjectBLibs -a Lib1_WDeps ProjectBFull -a ProjectBMain ProjectBLibs ProjectBLibs_OursOnly -a Lib1 ProjectBFull_OursOnly -a ProjectBMain ProjectBLibs_OursOnly </code></pre> <p>For a build of ProjectA the build server would now simply have to check out the virtual module named "ProjectAFull" to get all interdependent modules needed for that particular build - and even create the directory structure favoured by the compiler (i.e. external and internal libs both placed below a common "Lib" parent folder). Likewise when we want to tag a release including all dependencies we would simply use <code>cvs rtag -rTagName ProjectAFull</code>. When producing a ChangeLog we would use the output of <code>cvs rlog ProjectAFull_OursOnly</code> in order not to let the ChangeLog be polluted by commit messages from the external libraries (which we maintain using <code>cvs import</code> and vendor branches).</p> <p><hr /></p> <p>Is there an equivalent of these virtual modules in SVN? How should I set up the directory structure inside the new SVN repository to accommodate for this? Should each project and library become its own SVN project (i.e. with its own set of "trunk", "tags" and "branches" folders) or should I simply import the existing directory structure as-is? How do I define the dependencies?<br /> I would very much prefer to continue to be able to do single-step tag/checkout/log operations that would only affect the relevant modules.</p> http://stackoverflow.com/questions/71203/is-it-feasible-sensible-to-wrap-an-innosetup-installer-inside-an-msi-for-easier-d 4 Is it feasible/sensible to wrap an InnoSetup installer inside an MSI for easier distribution via AD? Oliver Giesen 2008-09-16T10:58:14Z 2009-08-07T14:10:11Z <p>Our installer is written with InnoSetup and we are actually quite happy with it. Yet some customers keep asking for an MSI installer which they could more easily distribute via Active Directory. We have already gone to some lengths to make the installer deal really well with automated and unattended installations by extending InnoSetup's /LOADINF-mechanism with our own options.</p> <p>In order to satisfy the customers asking for MSI, I had been thinking about simply wrapping our regular installer inside an MSI, possibly created using WIX. The question is: can I maintain the high configurability which our current installer offers that way? How would I go about exposing the InnoInstaller's options through the outer MSI in the unattended/mass installation scenario?</p> <p>Note that I haven't really gotten to the point of actually digging into MSI-creation and WIX myself yet. Right now I'm only interested in whether people who do know what they're talking about think this would be a feasible/sensible approach to invest our energy in in the first place...</p> <p>[EDIT:] Initially I thought I could do with the temp extraction and execution approach, i.e. the MSI would simply serve as a vessel for delivering the Inno installer to the target PC and executing it there in /VERYSILENT-mode. But I guess the customers who ask for the MSI also want to be able to uninstall or even modify the install from a central location and I guess that won't be possible in that scenario, would it?</p> <p>P.S.: We do have an old copy of WISE for MSI here as well but that experience was actually the reason why we started using Inno instead to begin with...</p> <p>Cheers,</p> <p>Oliver</p> http://stackoverflow.com/questions/1233773/delphi-since-when-are-interface-references-no-longer-released-at-the-end-of-a-wi 2 Delphi: Since when are interface references no longer released at the end of a with-block? Oliver Giesen 2009-08-05T14:50:38Z 2009-08-06T08:03:38Z <p>I recently stumbled over a problem caused by some very old code I wrote which was obviously assuming that interface references used in a <code>with</code> statement would be released as soon as the <code>with</code>-block is left - kind of like an implicit <code>try-finally</code>-block (similar to C#'s <code>using</code>-statement if I understood correctly).</p> <p>Apparently (in Delphi 2009) this is not (no longer?) the case. Does anyone know when this happened? Or was my code just plain wrong to begin with?</p> <p>To clarify, here's a simplified example:</p> <pre><code>type IMyIntf = interface; TSomeObject = class(TInterfacedObject, IMyIntf) protected constructor Create; override; // creates some sort of context destructor Destroy; override; // cleans up the context created in Create public class function GetMyIntf: IMyIntf; //a factory method, calling the constructor end; procedure TestIt; begin DoSomething; with (TSomeObject.GetMyIntf) do begin DoStuff; DoMoreStuff; end; // &lt;- expected: TSomeObject.Destroy gets called DoSomethingElse; end; // &lt;- this is where TSomeObject.Destroy actually gets called </code></pre> <p>Whenever somebody started the old "<code>with</code> is evil" argument this was always the one example I had in mind which kept me going "Yes, but...". Seems like I was wrong... Can anyone confirm?</p> http://stackoverflow.com/questions/1159839/how-can-i-change-my-font-color-with-html/1159858#1159858 0 Answer by Oliver Giesen for How can I change my font color with html? Oliver Giesen 2009-07-21T15:15:44Z 2009-07-21T21:42:23Z <pre><code>&lt;p style="color:red"&gt;Your Text here&lt;/p&gt; </code></pre> <p>But as others have by now said in more and better words: Even better than the above would be to use classes or IDs and assign the CSS-attributes to that instead of using the inline style.</p> http://stackoverflow.com/questions/1159859/use-name-in-other-elemt-than-div-or-span-but-still-possible-to-show-img/1159916#1159916 0 Answer by Oliver Giesen for Use name in other elemt than div or span, but still possible to show img Oliver Giesen 2009-07-21T15:22:31Z 2009-07-21T15:29:27Z <p><code>name</code> is only valid in the <code>&lt;a&gt;</code> tag IIRC (and form elements as was pointed out by David in the comments) but I'm pretty sure that is not what you're after:</p> <p><code>&lt;a name="whatever"&gt;&lt;/a&gt;</code> would create an "anchor" on a page that could be linked to with <code>&lt;a href="#whatever"&gt;Link text&lt;/a&gt;</code>.</p> <p>Why do you need to use the <code>name</code> attribute? Why couldn't you simply use <code>id</code> instead?</p> http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1143358#1143358 6 Answer by Oliver Giesen for How to get the first element in a string? Oliver Giesen 2009-07-17T13:42:09Z 2009-07-17T13:59:43Z <p>Delphi strings use a 1-based index, so just rewrite to</p> <pre><code>if not(myString[1] in ['0'..'9']) then //Do something </code></pre> <p>Also take note of the quotes around the <code>0..9</code>, otherwise you would be comparing characters to integers.</p> http://stackoverflow.com/questions/1043141/trac-wiki-page-list/1046690#1046690 4 Answer by Oliver Giesen for Trac wiki page list Oliver Giesen 2009-06-25T23:24:31Z 2009-06-25T23:24:31Z <p>Just use the <code>[[TitleIndex]]</code> macro. See <a href="http://trac.edgewall.org/wiki/WikiMacros#TitleIndex-macro" rel="nofollow">documentation</a>. In your example it should be:</p> <pre><code>[[TitleIndex(MyDoc)]] </code></pre> http://stackoverflow.com/questions/1015542/how-to-have-a-program-option-set-by-an-admistrator-that-the-user-cant-change/1016545#1016545 5 Answer by Oliver Giesen for How to have a program option set by an admistrator that the user can't change? Oliver Giesen 2009-06-19T06:08:07Z 2009-06-19T09:21:22Z <p>This is essentially what the <code>HKEY_CURRENT_USER\Software\Policies</code> key is for, i.e. a key within the user-specific part of the registry that is by default read-only to the user himself.</p> <p>By convention the key hierarchy should complement the one you already have under <code>HKEY_CURRENT_USER\Software</code>, e.g. if your regular user preferences are stored under <code>HKEY_CURRENT_USER\Software\MyCompany\MyProgram</code> then the protected user preferences (or "policies" in MS lingo) should be stored under <code>HKEY_CURRENT_USER\Software\Policies\MyCompany\MyProgram</code></p> <p>Note that it is recommended to only set values under this key via Group Policy Objects and never by direct registry access.</p> http://stackoverflow.com/questions/957070/problem-calling-dll-function-with-parameter-in-inno-setup/963034#963034 0 Answer by Oliver Giesen for Problem calling dll function with parameter in Inno Setup Oliver Giesen 2009-06-07T23:35:17Z 2009-06-16T08:54:34Z <p>Although according to mghie (see comments) it shouldn't make a difference in this case, you might want to use <code>PChar</code> instead of <code>String</code> as that would be the more accurate equivalent of the C-declaration <code>char*</code>.</p> <p><code>String</code> is a Pascal-native type which is usually managed quite differently than a <code>PChar</code> (though apparently not so much in Inno's PascalScript).</p> http://stackoverflow.com/questions/881592/registering-custom-url-protocl-handler-that-outlook-recognizes/939028#939028 1 Answer by Oliver Giesen for Registering custom url protocl handler that Outlook recognizes? Oliver Giesen 2009-06-02T11:34:37Z 2009-06-02T11:56:09Z <p>[OK, I'll post this as a new answer to keep this one clean without deleting all of the previously posted content.]</p> <p>I have just repeated the research mentioned in my other answer and it seems that things have greatly improved in the last three years. Both Outlook 2003 (SP3) and Outlook 2007 (SP2) now automatically recognize all of the protocols listed in the MS product support mail quoted in the NG thread linked from my older answer, <strong>including the <code>url:</code>-protocol!</strong></p> <p>The latter means that you can now write something like:</p> <pre><code>url:irma:whatever </code></pre> <p>and have it properly linkified and handled. Outlook will however display a security confirmation dialog before executing the protocol handler.</p> <p><strong>Update:</strong> Note that in Outlook 2003 SP3 the new protocols (e.g. <code>url:</code>, <code>mms://</code>, etc.) are only auto-linkified in HTML-mails. The plain-text inspector behaves as described in my other answer. It does work with plain-text mails in Outlook 2007 SP2, however.</p> <p>I have still found no hints at the ability to simply register custom protocols within Outlook that would work without the <code>url:</code>-prefix, however.</p> http://stackoverflow.com/questions/881592/registering-custom-url-protocl-handler-that-outlook-recognizes/934504#934504 0 Answer by Oliver Giesen for Registering custom url protocl handler that Outlook recognizes? Oliver Giesen 2009-06-01T11:47:24Z 2009-06-02T11:36:39Z <p><strong>Update:</strong> The information presented below appears to be outdated by now. See my other answer.</p> <p><hr /></p> <p>I've done some research on this in the past and came to the conclusion that it's not possible. The protocols that Outlook is able to "auto-linkify" are apparently hard-coded. The results of my previous research are documented in this newsgroup thread:</p> <p><a href="http://groups.google.com/group/microsoft.public.inetsdk.programming.urlmonikers/browse%5Fthread/thread/a50b92c595d05968/c4a016d9f2888f15" rel="nofollow">How to make custom APPs recognizable by Outlook/Word/...</a><br /> (posted April-June 2005 on microsoft.public.inetsdk.programming.urlmonikers)</p> <p>Quote from MS product support:</p> <blockquote> <p>Unfortunately the Hyperlink recognition in Office - so that auto format automatically transforms the entered text into a hyperlink - is hard coded.<br /> Therefore you can't add new protocols to the recognition. </p> </blockquote> <p>See the <a href="http://groups.google.com/group/microsoft.public.inetsdk.programming.urlmonikers/browse%5Fthread/thread/a50b92c595d05968/c4a016d9f2888f15#7b4f4a44c0149e80" rel="nofollow">last post in that thread</a> for my summary of the differences in URL-recognition between the various Office programs (hint: Outlook supports the fewest protocols).</p> <p>Here's the relevant bits regarding Outlook. The following patterns are automatically recognized as links by Outlook (as of June 2005, i.e. Outlook 2003):</p> <ol> <li><p>if first word of a hyperlink is</p> <ul> <li>"www" (e.g. www.microsoft.com)</li> <li>"ftp" (e.g. ftp.microsoft.com)</li> </ul></li> <li><p>If hyperlink starts with one of the following expressions followed by ":/"</p> <ul> <li>http</li> <li>https</li> <li>ftp</li> <li>gopher</li> <li>prospero</li> <li>telnet</li> <li>wais</li> <li>file</li> </ul></li> <li><p>if hyperlink starts with one of the following expressions followed by ":" and a string (e.g. <code>mailto:blah</code>)</p> <ul> <li>mailto</li> <li>news</li> <li>nntp</li> <li>outlook</li> </ul></li> </ol> http://stackoverflow.com/questions/910005/how-do-i-detect-whether-im-installing-on-a-terminal-server-in-an-innosetup-scrip 2 How do I detect whether I'm installing on a Terminal Server in an InnoSetup script? Oliver Giesen 2009-05-26T10:29:16Z 2009-06-02T09:31:39Z <p>My setup should behave slightly differently when the program is installed on a Terminal Server. I know about <code>GetSystemMetrics(SM_REMOTESESSION)</code> but as far as I understood that will only tell me whether I'm running inside a RDP session. It would not catch the case where the server admin is logged on locally to install software, or would it?</p> <p>Checking for the Terminal Server service does not appear to be viable either as that also runs on workstations when Remote Desktop has been enabled. I need to differentiate this from a true TS that allows multiple concurrent logon sessions.</p> <p>Isn't there any other service or registry key that I check for?</p> http://stackoverflow.com/questions/910005/how-do-i-detect-whether-im-installing-on-a-terminal-server-in-an-innosetup-scrip/910508#910508 1 Answer by Oliver Giesen for How do I detect whether I'm installing on a Terminal Server in an InnoSetup script? Oliver Giesen 2009-05-26T12:49:18Z 2009-06-02T09:31:39Z <p>Thanks to the link provided by Magnus Skog I discovered that InnoSetup already supports the <code>GetWindowsVersionEx</code> API function. Therefore all I had to do was this:</p> <pre><code>function IsRunningOnTS: Boolean; var lWinVer: TWindowsVersion; begin GetWindowsVersionEx(lWinVer); Result := (lWinVer.SuiteMask and VER_SUITE_TERMINAL) &lt;&gt; 0; end; </code></pre> <p>I have successfully tested this for the following scenarios:</p> <ul> <li>logged on locally to an XP workstation with RDP enabled (returns <code>False</code>)</li> <li>logged on remotely to a Terminal Server via RDP (returns <code>True</code>)</li> <li>logged on remotely to a workstation via RDP (returns <code>False</code>)</li> </ul> <p>I did not yet have the opportunity to test while logged on locally on a TS. Will update this post when I have.</p> http://stackoverflow.com/questions/869132/getting-outlookmailitem-from-outlookattachment-embedded-email/934568#934568 0 Answer by Oliver Giesen for Getting Outlook::_MailItem from Outlook::Attachment (embedded email) Oliver Giesen 2009-06-01T12:11:14Z 2009-06-01T12:11:14Z <p>If you don't want to use third party libraries then you will probably have to write your own MSG-file parser to extract the embedded mail items.</p> <p>Apart from that, if you really are serious about developing Outlook addins then you will end up using Redemption sooner or later anyway, so why wait? It definitely <strong>is</strong> worth more than its author's weight in gold.</p> http://stackoverflow.com/questions/916713/outlook-2003-add-in-stops-loading/934490#934490 1 Answer by Oliver Giesen for Outlook 2003 add-in stops loading Oliver Giesen 2009-06-01T11:44:26Z 2009-06-01T11:44:26Z <p>The most common cause for this symptom is unhandled exceptions, especially in the connection and startup code. Make sure you wrap everything in <code>try catch</code>, especially inside event handlers that get called directly by Outlook.</p> <p>You also should supply a little more info about the specifics of the symptom. Is the addin disabled (i.e. listed under Disabled Items)? Has its LoadBehavior value in the registry been changed to 2?</p> http://stackoverflow.com/questions/889378/how-can-i-list-files-in-cvs-without-an-initial-checkout/896764#896764 2 Answer by Oliver Giesen for How can I list files in CVS without an initial checkout? Oliver Giesen 2009-05-22T07:51:09Z 2009-05-22T13:28:12Z <p>If it's a one-off operation you don't need to set the <code>CVSROOT</code> environment variable. Just use the <code>-d</code> argument for ad-hoc repository specification.</p> <p>If your version of CVS/CVSNT is not too old (to be exact you'd need either CVS 1.12.8 or higher or CVSNT) then, as others have said, <strong>after having logged in</strong></p> <pre><code>cvs ls </code></pre> <p>should work just fine.</p> <p>If your version of CVS/CVSNT does not support the <code>ls</code> command then you can try</p> <pre><code>cvs checkout -c </code></pre> <p>which will only dump the list of predefined <a href="http://www.cvsnt.org/manual/html/Administrative-files.html#modules" rel="nofollow">modules</a>.</p> <p>If your version of CVS/CVSNT is old enough you might get lucky with the following hack (does not work with more recent versions of CVSNT unless compatibility mode has been enabled on the server):</p> <p>First check out the root of the repository to some temp location , so we have the necessary metadata:</p> <pre><code>cvs -d[your CVSROOT string] co -l -dTemp . </code></pre> <p>Then simulate an update (with directories) of that folder:</p> <pre><code>cd Temp cvs -n up -d </code></pre> <p>This will emit (almost) the same output as an actual checkout without actually getting the files from the server.</p> <p>If you're on Windows and using a fairly recent version of CVSNT as the client then <code>cvs ls</code> will actually automatically fall back to this mechanism when it detects a server that does not support <code>ls</code> itself.</p> <p><hr /></p> <p>Oh yes, and AFAICT there is no such thing as <code>cvs -list</code>. It's not even valid CVS command line syntax: <code>-list</code> would have to be a global argument rather than a command as it follows directly after the <code>cvs</code> and there is no actual command specified. But then again, all multi-letter arguments (such as <code>--help</code>) would have to start with a double dash, e.g. <code>cvs --version</code>. Were you all maybe thinking of <code>cvs list</code> which would be a mere alias for <code>cvs ls</code>?</p> http://stackoverflow.com/questions/546051/what-can-cause-outlook-to-change-a-com-addins-loadbehavior-to-2-other-than-unh 2 What can cause Outlook to change a COM-addin's LoadBehavior to 2 - other than unhandled exceptions? Oliver Giesen 2009-02-13T14:08:41Z 2009-05-20T15:34:10Z <p>For some weeks now we have been fighting with an issue where at a small number of customers our Outlook addin gets unloaded and disabled for yet undetermined reasons. By "disabled" I mean that Outlook changes the following registry value from 3 to 2 which in effect means that the addin will not be loaded on next startup:</p> <p><code>HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlook\Addins\[OurAddin.sProgID]\LoadBehavior</code></p> <p>There is no error message and neither do any exceptions show up in the log files that our addin produces itself. </p> <p>I have already found the following page which specifically deals with the LoadBehavior change issue: <a href="http://blogs.msdn.com/vsod/archive/2008/04/22/Troubleshooting-com-add-in-load-failures.aspx" rel="nofollow">http://blogs.msdn.com/vsod/archive/2008/04/22/Troubleshooting-com-add-in-load-failures.aspx</a></p> <p>However, none of the possible reasons proposed there appear to be applicable:</p> <ul> <li>The addin is not merely listed in the Disabled Items list.</li> <li>There are no unhandled exceptions neither in the <code>IDTExtensibility2</code> methods nor anywhere else in the code. All code is wrapped in try/catch equivalents and all exception output is emitted only via <code>OutputDebugString</code> or into a log file.</li> <li>The error appears to be independent of anti-virus software, i.e. it also occurs with it disabled.</li> <li>Disabling all other addins also has no effect on the error.</li> </ul> <p><strong>So, what else can cause Outlook to disable an addin?</strong></p> <p>Some more details / observations:</p> <ul> <li>We haven't been able to reproduce the issue in our test environments so far so we haven't yet been able to attach a debugger while the issue occurs.</li> <li>The issue never occurs while we try to watch what happens via remote support (TeamViewer). I suspect this is because TeamViewer uses a hook DLL that injects itself into all running processes (including Outlook) and thus affects the memory layout, timing, thread order, whatever.</li> <li>Whenever we compile a new version of the addin to try out something new the addin will typically work fine for a couple of hours or even days only to eventually get disabled again. Once this has happened all subsequent attempts to get the addin to load on that machine (by manually changing back the LoadBehavior value) will fail (i.e. LoadBehaviour will simply change back to 2) until we compile and deploy another build (or try to watch using TeamViewer - see above).</li> <li>Typically the addin will get unloaded right on Outlook startup though occasionally it also does happen after Outlook has already been running for some time. The log file in those cases looks completely inconspicious - the addin simply goes through the regular shutdown steps just as if Outlook had been closed normally.</li> <li>As far as I can tell from our log files and by observing the issue via SysInternals ProcessMonitor, when the addin get disabled on Outlook startup (rather than during the session) the DLL gets unloaded even before the COM object (i.e. the addin) gets instantiated (log messages in the constructor never show up).</li> <li>We have put <code>OutputDebugString</code> messages in <code>initialization</code> sections (this a Delphi DLL). None of them show up when the addin fails to load.</li> <li><p>Only a very small fraction of our customers is affected by this issue. We have several tens of thousands of installations from whom we haven't received any reports about this.</p></li> <li><p><strong>UPDATE:</strong> It seems that often (but not always) one of the last things that gets logged before the addin gets unloaded is an exception with text "OLE error 800A01A8". That exception gets caught by a global exception handler built into the framework I'm using (<a href="http://add-in-express.com" rel="nofollow">Add-in-Express</a>) and does not appear originate from anywhere it my own code every single method of which is by now entirely wrapped in <code>try..catch</code>. This typically occurs right after I set the visibility of my CommandBarButtons from an Inspector's Activate event handler.</p></li> </ul> <p>Common properties of all affected machines:</p> <ul> <li>Windows XP Professional, up-to-date patch level</li> <li>Outlook 2003 Professional, up-to-date patch level</li> <li>varying versions of McAfee Virus Scan (though disabling it has no effect - see above)</li> <li>Users are members of the local Administrators group</li> </ul> <p>One more thing to note which very probably is significant as well (though maybe not as much as I first thought):<br /> We are using a licensing / copy protection module from a third-party vendor which wraps the compiled DLL in a "shell" and only unpacks it on-the-fly. Ever since I found out that the addin gets unloaded even before any of our own code gets executed this has been my prime suspect. However, while the vendor confirmed that there may be unhandled exceptions in their code a log file produced by a special debug version of the protection shell showed that the unpacking process completed successfully and control was already handed back to the protected DLL before Outlook unloaded the addin. So it appears that whatever causes Outlook to unload our addin happens between the completion of the protection shell's initialization and our own code.</p> <p>Any more ideas?</p> http://stackoverflow.com/questions/353634/are-there-any-downsides-to-using-upx-to-compress-a-windows-executable/355581#355581 3 Answer by Oliver Giesen for Are there any downsides to using UPX to compress a Windows executable? Oliver Giesen 2008-12-10T10:04:54Z 2009-05-08T00:06:58Z <p>I'm surprised this hasn't been mentioned yet but using UPX-packed executables also increases the risk of producing false-positives from heuristic anti-virus software because statistically a lot of malware also uses UPX.</p> http://stackoverflow.com/questions/758047/how-do-you-deal-with-ifdefs-in-dpr-uses-section/837453#837453 1 Answer by Oliver Giesen for How do you deal with IFDEFs in .dpr uses section Oliver Giesen 2009-05-07T22:46:21Z 2009-05-07T22:46:21Z <p>And here's the lo-tech approach for completeness' sake:</p> <p>After the IDE has messed up your uses clause again:</p> <ol> <li>close the project</li> <li>go to your version control tool of choice and diff the DPR against the latest checked-in version using a merge-enabled diff tool like WinMerge</li> <li>revert the IDE changes</li> <li>save the DPR</li> <li>get on with it</li> </ol> http://stackoverflow.com/questions/798365/cvs-update-a-file-with-its-ancestors-but-without-their-brethren/801232#801232 0 Answer by Oliver Giesen for CVS: update a file with its ancestors but without their brethren Oliver Giesen 2009-04-29T07:16:55Z 2009-04-29T07:16:55Z <p>Do you already have a working copy checked out or is this for a fresh checkout?</p> <p>If you already have a working copy <code>cvs up -d x/y/f.txt</code> should do the job.</p> <p>The <code>-d</code> should only be necessary if the <code>x</code> and <code>y</code> folders do not already exist. If they do exist, you can also just <code>cd</code> into the <code>x/y</code> folder and do <code>cvs up f.txt</code>.</p> <p>If this should be a fresh checkout then <code>cvs co -N x/y/f.txt</code> is probably what you need.</p> http://stackoverflow.com/questions/748719/multiple-projects-in-trac/749421#749421 1 Answer by Oliver Giesen for Multiple projects in trac Oliver Giesen 2009-04-14T21:24:56Z 2009-04-14T21:24:56Z <p>Regarding the trac-part of your question you might want to keep an eye on this question: <a href="http://stackoverflow.com/questions/268039/how-do-you-handle-multiple-overlapping-projects-in-trac">http://stackoverflow.com/questions/268039/how-do-you-handle-multiple-overlapping-projects-in-trac</a></p> http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/588553#588553 0 Answer by Oliver Giesen for What's your first program that you were proud of? Oliver Giesen 2009-02-26T00:22:51Z 2009-02-26T00:22:51Z <p>When I was around 9 or 10 I wrote a reusable and extendable menu system on the Sinclair ZX Spectrum 48k. That definitely was the first thing I was really proud of - that I still remember well today, that is.</p> <p>One part I really liked about it was what at the time I thought of as "using <code>GOSUB</code> in creative ways"... which was very much eased by the fact that <code>GOSUB</code> in Speccy-BASIC accepted any old integer expression as an argument rather than being limited to constants like most other BASIC-dialects did at the time. It was also the first time I instinctively tried to clearly separate the presentation from the code behind it.</p> <p>A few years later I also rewrote Larry Laffer as a text adventure (with soundtrack!) for the same machine... ;)</p> http://stackoverflow.com/questions/1566253/how-can-i-tell-whether-a-given-mapi-message-is-incoming-or-outgoing/1794401#1794401 Comment by Oliver Giesen on How can I tell whether a given MAPI message is incoming or outgoing? Oliver Giesen 2009-11-27T16:30:02Z 2009-11-27T16:30:02Z The main problem is that <code>PR&#95;RECEIVED&#95;BY&#95;&#42;</code> and <code>PR&#95;RCVD&#95;REPRESENTING&#95;&#42;</code> are not set for messages received via Public Folders. If they were, I would be 100% satisfied. http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi Comment by Oliver Giesen on How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T15:04:07Z 2009-11-23T15:04:07Z @mghie: Good point and usually I would agree but in this particular case the default value can safely always be interpreted as &quot;uninitialized&quot;. http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi/1782762#1782762 Comment by Oliver Giesen on How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T14:38:25Z 2009-11-23T14:38:25Z or, even slightly better: <code>if TEqualityComparer&lt;T&gt;.Default.Equals(ADataValue, Default(T)) then</code> http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi/1782762#1782762 Comment by Oliver Giesen on How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T14:33:24Z 2009-11-23T14:33:24Z @Binis: Thanks for the hint on Generics.Collections! I got it working now: <code>if TComparer&lt;T&gt;.Default.Compare(ADataValue, Default(T)) = 0 then</code> If you put this in an answer I would upvote and accept it. http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi/1782762#1782762 Comment by Oliver Giesen on How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T14:14:36Z 2009-11-23T14:14:36Z @Smasher: The main problem I see with using a dictionary for my use case is that a dictionary would have to have a fixed value type while I need multiple result types. BTW: Is <code>TCacheManager</code> something that is already available somewhere? I haven't been able to find that in the VCL sources... http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi/1782467#1782467 Comment by Oliver Giesen on How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T12:46:21Z 2009-11-23T12:46:21Z Actually, what is declared in System.pas is not <code>IEquatable</code> but <code>IEquatable&lt;T&gt;</code> which explains the error... <code>GetProp&lt;T: IEquatable&lt;T&gt;&gt;(...</code> does compile but then, as expected, I get the error when passing <code>String</code> for <code>T</code>: &quot;Type parameter 'T' must support interface IEquatable&lt;System.string&gt;&quot; http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi/1782762#1782762 Comment by Oliver Giesen on How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T12:36:36Z 2009-11-23T12:36:36Z Thanks! This is indeed very similar to what I'm trying to do but Craig's implementation would result in too big an unnecessary overhead in my particular case because it would instantiate one new <code>TDictionary</code> instance for every property... It's unfortunately also not an answer to the original question of how to test whether a generically typed variable has a non-default value or not, so given that context I'm afraid I couldn't even upvote your answer. :( http://stackoverflow.com/questions/1782333/how-do-i-test-a-generic-type-variable-for-equality-with-defaultt-in-delphi/1782467#1782467 Comment by Oliver Giesen on How do I test a generic type variable for equality with Default(T) in Delphi? Oliver Giesen 2009-11-23T11:48:23Z 2009-11-23T11:48:23Z Not sure why but I get an &quot;Undeclared identifier 'IEquatable'&quot; with that code (even though I can see <code>IEquatable</code> is indeed declared in System.pas). I would however doubt this would work for me anyways as I am not aware that primitive types like <code>String</code>, <code>TDateTime</code> or <code>Integer</code> somehow implicitly support that interface... http://stackoverflow.com/questions/1658347/what-is-the-difference-between-types-defined-in-the-implementation-as-compared-to/1658367#1658367 Comment by Oliver Giesen on What is the difference between types defined in the implementation as compared to the interface section of a unit? Oliver Giesen 2009-11-16T09:16:29Z 2009-11-16T09:16:29Z Well, if the unit is used in a runtime package, then making changes to a class that is defined in the interface section will mean that all packages, DLLs and applications that use that runtime package will also have to be recompiled. You can make changes to classes in the implementation section without compromising package compatibility. http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi/1721936#1721936 Comment by Oliver Giesen on How to use argument in a cast with Delphi Oliver Giesen 2009-11-16T09:00:52Z 2009-11-16T09:00:52Z @Tihauan: It doesn't matter whether you're going to change TControlClass to something else. What this method is dealing with is the <code>Visible</code> property and that is introduced in <code>TControl</code>. http://stackoverflow.com/questions/1590434/is-it-possible-to-run-an-application-as-administrator-from-the-delphi-ide Comment by Oliver Giesen on Is it possible to run an application as Administrator from the Delphi IDE Oliver Giesen 2009-10-21T10:08:11Z 2009-10-21T10:08:11Z Exactly. There's absolutely no implication of a requirement for admin privileges in the term &quot;written for XP&quot;. Even for XP you were able to write well-behaved apps... http://stackoverflow.com/questions/1566253/how-can-i-tell-whether-a-given-mapi-message-is-incoming-or-outgoing/1568729#1568729 Comment by Oliver Giesen on How can I tell whether a given MAPI message is incoming or outgoing? Oliver Giesen 2009-10-15T08:31:13Z 2009-10-15T08:31:13Z Done. Thanks for the offer. http://stackoverflow.com/questions/1566253/how-can-i-tell-whether-a-given-mapi-message-is-incoming-or-outgoing/1568729#1568729 Comment by Oliver Giesen on How can I tell whether a given MAPI message is incoming or outgoing? Oliver Giesen 2009-10-14T22:44:22Z 2009-10-14T22:44:22Z yes, but unfortunately they are not set for messages received via mail-enabled public folders... which is where the messages I'm dealing with here will most commonly be located... http://stackoverflow.com/questions/111291/licensing-protection-software/111297#111297 Comment by Oliver Giesen on Licensing / Protection Software? Oliver Giesen 2009-09-15T14:45:58Z 2009-09-15T14:45:58Z This questions is specifically asking for products that can be used to implement licensing / protection though and both of the linked posts do not address this. http://stackoverflow.com/questions/1327717/how-to-convert-text-to-rtf-for-sending-email Comment by Oliver Giesen on how to convert text to rtf, for sending email? Oliver Giesen 2009-08-25T11:57:45Z 2009-08-25T11:57:45Z Unless you can be sure that the recipient also uses Outlook, sending an RTF body is probably a pretty bad idea... If your HTML mail is marked as spam there's very probably something else in there that is triggering this. My gut-instinct tells me that about 70% of all emails nowadays are HTML (probably even more). It would be pretty bad if all of them were automatically classified as spam...