by admin | Mar 17, 2015 | Coding
View source code on GitHub In first part of WPF Localization & Translation I described the requirements to localization library. In this article I will show WPF localization at runtime using ResX files. Lets start with simple case and try to localize a text...
by admin | Mar 1, 2015 | Coding
View source code on GitHub Once upon a time in our large application arised the problem of WPF localization. “Large” means WPF client solution that includes about 80 projects with almost 2000 XAML files. And it continues to grow with a good pace....
by admin | Oct 22, 2014 | Coding
Some users with Microsoft Office 2013 began to complain about bug that happened during document exporting to Excel. Stack trace begins with line: Microsoft.Office.Interop.Excel.ApplicationClass.Save(Object Filename) error Exception from HRESULT: 0x800A03EC. With...
by admin | Oct 2, 2014 | Coding
Beginning from C# 3.0 version developers can write short keyword var instead of explicitly typed local variable. You can find it’s cozy to write these three letters instead of long explicit type. There is no performance impact when using var because the...