Advanced Search
Search Results
3 total results found
.NET complaint of the month: XmlDocument is not serializable
I gotta say, on the whole, I'm quite pleased with this .NET Framework that Microsoft has provided us with to develop software with. It's not often that I find something worth complaining about. But this is one of those times. One of the cool features of ....
The .NET Framework can't count past 256
Anyone who did arts in university can stop reading now. For the most part, I really like developing .NET applications. I think Microsoft has done a fairly good job at making a framework that's pretty nice to use. But there are some things that just piss m...
Now this is funny.
In a .NET windows forms application, paste this code into one of your windows' code files: protected override void OnPaint(PaintEventArgs e) { base.OnPaint( e ); this.SpecialSecret( e.Graphics ); } public void SpecialSecret(Graphics g) { g.Cle...