Oliver Giesen

2,035
reputation
6318 views

Registered User

name Oliver Giesen
member for 1 year
seen 15 mins ago
website
location Germany
age 34

Professional Delphi Programmer and Heavy Metal Drummer from Germany.

Started programming on a Sinclair ZX Spectrum 48k in 1983. Moved on via QuickBasic on the PC to TurboPascal and finally Delphi (since 1997). Also occasionally dabble in PHP, Python (usually in the context of WinCvs or trac) and less frequently in C# (Compact Framework).

Specialized in COM-Addins for MS Office (especially Outlook), client/server database-applications (MSSQL), version control with CVSNT and WinCvs (former moderator of the WinCvs mailing list and author of many of WinCvs' stock Python macros) and whatever else comes my way.

I also enjoy doing graphics design at the level of "(slightly) advanced amateur"

Dec
4
awarded  Nice Answer
Nov
27
comment How can I tell whether a given MAPI message is incoming or outgoing?
The main problem is that PR_RECEIVED_BY_* and PR_RCVD_REPRESENTING_* are not set for messages received via Public Folders. If they were, I would be 100% satisfied.
Nov
25
accepted How do I test a generic type variable for equality with Default(T) in Delphi?
Nov
23
answered How do I test a generic type variable for equality with Default(T) in Delphi?
Nov
23
comment How do I test a generic type variable for equality with Default(T) in Delphi?
@mghie: Good point and usually I would agree but in this particular case the default value can safely always be interpreted as "uninitialized".
Nov
23
comment How do I test a generic type variable for equality with Default(T) in Delphi?
or, even slightly better: if TEqualityComparer<T>.Default.Equals(ADataValue, Default(T)) then
Nov
23
comment How do I test a generic type variable for equality with Default(T) in Delphi?
@Binis: Thanks for the hint on Generics.Collections! I got it working now: if TComparer<T>.Default.Compare(ADataValue, Default(T)) = 0 then If you put this in an answer I would upvote and accept it.
Nov
23
comment How do I test a generic type variable for equality with Default(T) in Delphi?
@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 TCacheManager something that is already available somewhere? I haven't been able to find that in the VCL sources...
Nov
23
comment How do I test a generic type variable for equality with Default(T) in Delphi?
Actually, what is declared in System.pas is not IEquatable but IEquatable<T> which explains the error... GetProp<T: IEquatable<T>>(... does compile but then, as expected, I get the error when passing String for T: "Type parameter 'T' must support interface IEquatable<System.string>"
Nov
23
comment How do I test a generic type variable for equality with Default(T) in Delphi?
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 TDictionary 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. :(
Nov
23
comment How do I test a generic type variable for equality with Default(T) in Delphi?
Not sure why but I get an "Undeclared identifier 'IEquatable'" with that code (even though I can see IEquatable 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 String, TDateTime or Integer somehow implicitly support that interface...
Nov
23
revised How do I test a generic type variable for equality with Default(T) in Delphi?
some minor clarifications and a typo correction
Nov
23
asked How do I test a generic type variable for equality with Default(T) in Delphi?
Nov
16
comment What is the difference between types defined in the implementation as compared to the interface section of a unit?
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.
Nov
16
comment How to use argument in a cast with Delphi
@Tihauan: It doesn't matter whether you're going to change TControlClass to something else. What this method is dealing with is the Visible property and that is introduced in TControl.
Nov
9
awarded  Fanatic
Nov
6
awarded  Popular Question
Nov
5
awarded  Popular Question
Oct
22
answered Recursively CVS add files/directories and ignore existing CVS files.
Oct
22
answered Listing CVS Attic/Delete files
Oct
21
comment Is it possible to run an application as Administrator from the Delphi IDE
Exactly. There's absolutely no implication of a requirement for admin privileges in the term "written for XP". Even for XP you were able to write well-behaved apps...
Oct
15
revised How can I tell whether a given MAPI message is incoming or outgoing?
added information about Public Folder requirement
Oct
14
asked How can I tell whether a given MAPI message is incoming or outgoing?
Oct
5
awarded  Popular Question
Sep
18
awarded  Popular Question
Sep
16
awarded  Yearling
Sep
15
comment Licensing / Protection Software?
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.
Sep
8
accepted Using 7-Zip from Delphi?
Aug
31
awarded  
Aug
25
comment how to convert text to rtf, for sending email?
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...
Aug
23
comment Migrating from CVS(NT) to Subversion: What’s the equivalent of (virtual) modules?
I agree that DVCSs deserve attention. But this was in no way an answer to my question which was very specifically about SVN. I suspect that this fact rather than a general dislike or ignorance for DVCSs was more likely to be the reasoning behind the downvote. That said, I did not downvote you for it myself. I'd have only done that if your answer had "pushed aside" another answer that was more on-topic.
Aug
23
revised How do you handle multiple (overlapping) projects in trac?
made community wiki
Aug
23
accepted Redemption - Find public folder
Aug
23
accepted How do I detect whether I’m installing on a Terminal Server in an InnoSetup script?
Aug
23
revised Delphi: Why do I sometimes get an I/O Error 103 with this code?
minor typo fix
Aug
23
accepted How do I go about diagnosing memory corruption errors occurring in a COM-DLL after porting it from Delphi 2007 to Delphi 2009?
Aug
7
comment Is it feasible/sensible to wrap an InnoSetup installer inside an MSI for easier distribution via AD?
Hi Jack, it's true that Inno does not support this out of the box, but the INF-file is just a simple INI-file and Inno has excellent support for reading and writing those. All you need is to parse the INF-file name out of the Inno commandline...
Aug
6
comment Delphi: Since when are interface references no longer released at the end of a with-block?
And to clarify: I never expected the with-block to directly affect the lifetime of the referred object - I only expected the scope of the implied local variable to be limited to that block and thus its reference count to be decremented as soon as that block ended.
Aug
6
comment Delphi: Since when are interface references no longer released at the end of a with-block?
I always imagined with to create an anonymous, tightly-scoped local variable that only existed inside the with-block. It seemed pointless to me for the memory manager to hang on to that reference even when you could no longer access it... Given that (as it now seems: sadly incorrect) view of the world I think it was perfectly valid to expect the reference count to be decremented as soon as that reference went out of scope...
Aug
6
comment Delphi: Since when are interface references no longer released at the end of a with-block?
unfortunately both alternatives defy one of the main intentions of keeping the code terse... also, in the first example I would add a try-finally block for clarity (though not strictly necessary) I also dislike declaring variables of "empty" interface types that exist solely to abuse^D^D^D^D^Dtake benefit of the reference-counted nature of interfaced objects... I like to keep those anonymous where possible... but that's admittedly just a personal idiosyncrasy of mine
Aug
5
asked Delphi: Since when are interface references no longer released at the end of a with-block?
Aug
5
comment Migrating from CVS(NT) to Subversion: What’s the equivalent of (virtual) modules?
For clarification: When checking out one of the alias-modules quoted in my questions I would get multiple folders created directly below the current directory. The "virtual" module itself would never appear as such in my working copy (which is also a drawback as without that meta data CVS can sometimes seriously mess up your working copy when trying to do a simple update).
Aug
5
comment Migrating from CVS(NT) to Subversion: What’s the equivalent of (virtual) modules?
If I understood this correctly, another difference is that with externals I would always need a common root folder for the checked out project which would be named after the (pseudo-)folder that contains the externals properties. I guess this would actually not play very well with our development environment (Delphi) as some of the shared libs (e.g. designtime packages) need to be located at the same absolute path for all projects...
Aug
5
comment Migrating from CVS(NT) to Subversion: What’s the equivalent of (virtual) modules?
Thanks! That's a very clear description. I'll have a look at the example repo later. So, with this I do get the single-step checkout but no single-step tag or branch... What about logging? Could I get a combined log when doing svn log on your "externals" folder?
Aug
5
comment Migrating from CVS(NT) to Subversion: What’s the equivalent of (virtual) modules?
That looks very promising! Thanks. I had heard about externals some time ago but essentially thought it to be something else at the time and dismissed it...
Aug
5
asked Migrating from CVS(NT) to Subversion: What’s the equivalent of (virtual) modules?
Jul
22
comment Use name in other elemt than div or span, but still possible to show img
@Johan: it seems strange that you seem concerned about "span name" not validating (but otherwise working for your purpose) but on the other hand choose an obvious hack (you are NOT linking to anything and neither is your intention to set an anchor) as the accepted answer...
Jul
21
revised How can I change my font color with html?
added 191 characters in body
Jul
21
comment Use name in other elemt than div or span, but still possible to show img
...still wasn't aware that <a name= was deprecated. thanks for the hint.
Jul
21
comment Use name in other elemt than div or span, but still possible to show img
oh boy, looks like I need some more caffeine... I just found a section in our own code where I did link to `id`s just a couple of weeks ago... <blush/>