I just run across this valuable article. It talks about how to debug Windows Forms Designer errors you get on the screen when something goes wrong and I […]
Slides of my recent presentations on NTKonferenca 2006
I’ve just uploaded slides from my presentations on NTKonferenca 2006. Find them here.Sorry for the delay.
XPCollection peculiarity
These days I’ve came across this situation – related to [DevEx]’ XPO:XPCollection<Customer> coll = new XPCollection<Customer> (session, false); // false means LoadingEnabled = false; coll.Criteria = new BinaryOperator(“SomeColumn”, […]
What thread does BackgroundWorker use/create
During my presentation on BackgroundWorker I got a smart and obvious question: What kind of thread does BackgroundWorker create or use. I saw this coming it is just […]
OziExplorer’s map file converter
If you are using either GPSDash or GPSTuner image GPS navigation software you’ll notice that their map database isn’t nearly as huge as OziExplorer’s. That’s why I’ve created […]
Speaking engagments at MS’ NT Konferenca 2006 in Portorož
For the third consecutive year I’ll be speaking at Microsoft NT konferenca 2006 in Portorož. I’ll speak about Windows Presentation Foundation and DataBinding (tuesday at noon) and DLinq (thursday at […]
Managed Debugging Assistants in VS2005
Did you ever write a code like this:public void SomeMethod() { StreamWriter writer = new StreamWriter(“c:\\temp\\tubo.txt”); writer.Write(1); } Of course not. It should look likepublic void SomeMethod() { […]
Meet IQueryable<T>
One of the biggest Linq improvements from the last CTP is IQueryable<T> which allows polymorphic and dynamic queries. Matt explains it well in this post.
Linq May 2006 CTP is out
Finally next Linq CTP is available. As usual it can be downloaded from Linq Home Page (here is Soma’s blog post on the topic and Dinesh ‘mr. DLinq’ Kulkarni’s post). […]
Consolas font available for download
If you are tired or not of Courier New font within Visual Studio you should check out Consolas font. Initially it was a part of Vista and not redistributable. […]