Get Rendered LocalReport Values with OpenXml

How oh how is one to get XML from a local (not server) SSRS report? As it turns out, via Excel. The LocalReport.Render() method only supports Excel, PDF, and Image formats, but since the Excel 2007+ file format is just compressed XML, it didn’t take too much finagling to get what I was really after. The only thing I needed was the Microsoft OpenXml SDK, easily acquired through Nuget. This code snippet shows how to get the rendered values from a LocalReport in memory:...

February 12, 2014 · 1 min · Nick Spreitzer

Show Only The Year & Month With A DevExpress DateEdit

One of the great disappointments of a programmer’s workday is creating a component only to discover shortly after finishing that someone else had already created the exact same component...

September 16, 2012 · 3 min · Nick Spreitzer

Two Tales of Debugging ApplicationSettingsBase

A couple exciting episodes of resolving issues with that pesky class, ApplicationSettingsBase...

July 24, 2011 · 3 min · Nick Spreitzer

(Balloon) ToolTip Misbehavior

Working with WinForms balloon tooltips isn’t as predictable as you might expect...

July 16, 2011 · 2 min · Nick Spreitzer