For later reference:
–jeroen
Posted by jpluimers on 2011/03/25
For later reference:
–jeroen
Posted in Development, Software Development | Leave a Comment »
Posted by jpluimers on 2011/03/24
I always forget which trace switches in the App.Config come in handy when using LLBLGenPro.
So I remember: The most important one is SqlServerDQE.
More of them are explained in Righthand blogs : Implementing more useful tracing for LLBLGenPro 2.0.
–jeroen
Posted in .NET, Development, LLBLGen, Software Development | Leave a Comment »
Posted by jpluimers on 2011/03/24
Something in TFS screwed a SCC references in one of the .csproj files at a client.
As a result, it generated strange build errors (unfound projects in the wrong branch), because when loading project from the correct, the IDE in fact loads it from the wrong branch.
When you read the blog post from the Microsoft TFS development support team, the solution looks simple: in a regular project the values for SccProjectName, SccLocalPath, SccAuxPath and SccProvider should all be SAK (indicating the SCC should ignore their values).
That is only 1 piece of the solution. Somehow, Visual Studio and/or TFS seem to cache some information in hidden places, so it keeps insisting to use the project from the wrong branch.
So, in addition to changing the above SAK values in the project in the correct branch, you need to:
It took at least a couple of hours to find this all out, for these reeasons: Read the rest of this entry »
Posted in .NET, C#, Development, Software Development | 2 Comments »
Posted by jpluimers on 2011/03/23
Delphi XE introduced the SafeIntAsClass to cast back from an interface to a class.
This is one of the things I really started to miss after doing a lot of .NET work (where that worked starting with .NET 1).
Older versions of Delphi did not support safely casting from an interface back to an object.
–jeroen
via: oop – Delphi – Proxy Design Pattern – interface problem – Stack Overflow.
Posted in Delphi, Development, Software Development | 4 Comments »