Red-Gate’s SqlPrompt is an utility that makes you wonder how could you live without it. It is basically an application that runs in the background and adds “intellisense” […]
Debugging White Screen of Darn
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”, […]
Dejan comments on NTk 2006
Dejan has an interesting commentary on this year’s NT konferenca. I have to say that I agree with him – he is getting old. Just kidding. I agree […]
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.