I’ve been using DVBLink 3.1 for IPTV and Server Network Pack for a week or two now. It is a software that makes IPTV stream available to various […]
An annoying non-persistent memory leak in .net framework MDI
I had to investigate a memory leak in an application I am building for my client. It is a MDI application using DevExpress XtraTabbedMdiManager that provides some MDI […]
Meet “Go To Implementator” DXCore plugin for Visual Studio
The problem One of the biggest annoyance when doing unit-test-friendly projects is that you have to deal with interfaces much more than you usually would. This isn’t bad […]
About DevExpress skinning and custom skins
Here is the thing. DevExpress WinForms components support custom skinning. Out of the box there are plenty of skins you might use just by assigning a simple property […]
Developer Express published roadmap for 2010
First new “feature” is stepping down from three releases per year to two releases per year. Regardless how it sounds, it makes sense. A lot of sense. Developers […]
Adjusting DevExpress’ XtraTabControl’s page padding
Look at the picture below, it is a DevExpress‘ XtraTabControl (WinForms) with a single page hosting a normal Button. Both XtraTabControl and Button are set as Dock = […]
Reversing for loops with CodeRush
Imagine you have to delete a bunch of items from a list, something like this: List<int> items = new List<int>();…for (int i = 2; i < items.Count; i++){ […]
Suppress system menu when right clicking on DevExpress skinned form’s icon
Task Today I’ve got a requirement from my customer to prevent showing the system menu when WinForm’s icon (top left) is right-clicked. The form is painted by DevExpress […]
ClickOnce and DevExpress components deployment
Let’s say you’ve build a WinForms application and put some DevExpress (or any other 3rd party controls installed in GAC I suppose) controls in there. At some point […]
Packing assemblies to a single file for Righthand.Dataset.Visualizer
A while ago I’ve created Righthand.DataSet.Visualizer, an advanced DataSet visualizer. Today I’ve added support for displaying a single table as well. It wasn’t a big deal but I […]