Frans Bouma's blog
Generator.CreateCoolTool();
Sign in
|
Join
Home
About
RSS
Comments RSS
Search
Tags
.NET
.NET General
Advanced .NET
ASP.NET
Azure
Code generation
CodePlex
Community News
Database / SQL Server
entity framework
General Software Development
Linq
Linq to LLBLGen Pro
LLBLGen Pro
Mercurial
Misc. Articles
Miscellaneous
O/R Mapping
Open Source
ORM Profiler
PDC
Software Engineering
Visual Studio
Windows Forms
WinForms
News
Navigation
Home
Blogs
Archives
May 2013 (2)
April 2013 (1)
March 2013 (1)
January 2013 (1)
November 2012 (1)
October 2012 (1)
September 2012 (2)
August 2012 (2)
June 2012 (4)
May 2012 (2)
March 2012 (1)
January 2012 (1)
September 2011 (3)
August 2011 (1)
July 2011 (1)
April 2011 (2)
March 2011 (1)
February 2011 (1)
January 2011 (2)
December 2010 (1)
November 2010 (1)
August 2010 (1)
May 2010 (2)
April 2010 (1)
February 2010 (1)
December 2009 (2)
November 2009 (3)
October 2009 (1)
September 2009 (2)
August 2009 (1)
July 2009 (3)
June 2009 (1)
May 2009 (2)
April 2009 (1)
March 2009 (3)
February 2009 (2)
January 2009 (1)
December 2008 (1)
November 2008 (3)
October 2008 (1)
September 2008 (2)
August 2008 (2)
July 2008 (3)
June 2008 (3)
May 2008 (5)
April 2008 (1)
March 2008 (3)
February 2008 (2)
January 2008 (5)
December 2007 (3)
November 2007 (4)
October 2007 (8)
September 2007 (5)
August 2007 (2)
July 2007 (2)
June 2007 (8)
May 2007 (5)
April 2007 (5)
March 2007 (3)
February 2007 (2)
January 2007 (3)
December 2006 (5)
November 2006 (3)
October 2006 (4)
September 2006 (3)
August 2006 (5)
July 2006 (1)
June 2006 (7)
May 2006 (7)
April 2006 (2)
March 2006 (3)
February 2006 (1)
January 2006 (4)
December 2005 (10)
November 2005 (2)
October 2005 (8)
September 2005 (7)
August 2005 (2)
July 2005 (6)
June 2005 (4)
May 2005 (6)
April 2005 (4)
March 2005 (7)
February 2005 (2)
January 2005 (6)
December 2004 (7)
November 2004 (2)
October 2004 (2)
September 2004 (3)
August 2004 (8)
July 2004 (7)
June 2004 (5)
May 2004 (7)
April 2004 (7)
March 2004 (9)
February 2004 (9)
January 2004 (5)
December 2003 (8)
November 2003 (7)
October 2003 (5)
September 2003 (3)
August 2003 (6)
July 2003 (15)
June 2003 (17)
May 2003 (28)
About me
MVP Profile @ Microsoft.com
My link blog @ google reader
Fun stuff I created
XM/Mod music (amiga/pc)
.Text OpenGL screensaver
My work
LLBLGen Pro (.NET O/R mapper)
HnD customer support system
December 2005 - Posts
19
Comments
Teaching only Java is bad?
by
FransBouma
Today I saw this blogpost: http://blogs.msdn.com/tparks/archive/2005/12/30/508164.aspx , titled 'Java only is bad mmmkay?'. It's a blogpost inspired on some article by Joel: http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html . I wondered...
Filed under:
.NET General
4
Comments
Old-skool demoscene effect in C#: Rotozoomer
by
FransBouma
On a day like Christmas day, people can often lose themselves in old memories. As an old demoscene member (1989-2002), I have tons of great memories about writing endless assembler to plot pixels on an Amiga 500, demo parties etc. etc. Some time ago I...
Filed under:
.NET General
4
Comments
VS.NET 2005's design time databinding, it's seriously broken.
by
FransBouma
Please read the bugreport at ladybug first. The example code there illustrates what's going on. These two issues doesn't only occur with datasets, but also with collections and custom classes. Other issues There are two more issues with design time databinding...
Filed under:
Visual Studio
9
Comments
Vista stores metadata INSIDE the object itself?
by
FransBouma
First, read the article @ C|Net. . According to Gartner analysts, Windows Vista stores meta-data, used for search and entered by the OS user, inside the object and owner of the meta-data . This of course gives problems if the user sends the object, for...
Filed under:
Software Engineering
4
Comments
Jon Skeet on Eclipse vs. VS.NET
by
FransBouma
Jon Skeet wrote an excellent article about Eclipse vs. VS.NET and where VS.NET stands compared to other IDEs. In the case you're believing the myth VS.NET is the IDE on the planet and that there's no better IDE out there, this article is a must read....
Filed under:
Visual Studio
0
Comments
New VS.NET 2005 IDE Crash: it just takes one mouseclick
by
FransBouma
Please vote for this issue here: http://lab.msdn.microsoft.com/ProductFeedback/viewFeedback.aspx?feedbackId=FDBK42687 To reproduce, see the attached project. The problem is potentially major: a .NET exception brings down the complete IDE. This is a problem...
Filed under:
Visual Studio
12
Comments
About the stupid Java vs. .NET article
by
FransBouma
First, read the sillyness in all its glory here . Now, before you step up on your soapbox and cry from the top of your lungs: "YES! I KNEW IT!", keep in mind that the number game of usage percentages is perhaps not in Java's favor, but the rest simply...
Filed under:
Software Engineering
4
Comments
WTF: "Soap Serializer does not support serializing Generic Types" ??
by
FransBouma
So, there you are, with your shiny new .NET 2.0 generic collection using library, trying to push some objects over the wire via remoting. Works great, well, if you use the BinaryFormatter that is. Try using the SoapFormatter, and you're in for a big surprise...
Filed under:
.NET General
6
Comments
Dictionary<TKey, TValue> vs. Hashtable() tip
by
FransBouma
If you're porting code from .NET 1.x to .NET 2.0, like I'm doing at the moment, and your .NET 1.x code uses Hashtables(), be aware of the following if you decide to migrate your Hashtables to Dictionary<TKey, TValue> variables. In .NET 1.x, you...
Filed under:
.NET General
12
Comments
Fix for VS.NET 2005 C# IDE hang is now available (through PSS)
by
FransBouma
Right before the launch of Visual Studio.NET 2005 I reported about a hang of the C# IDE while you were typing code . The hotfix is now available through Microsoft's PSS, and the KB article can be found under this link: http://support.microsoft.com/default...
Filed under:
Visual Studio
More Posts