by admin | Sep 30, 2023 | ASP.Net, C# .Net
Problem MS Visual Studio 2022 (currently v17.4), e.g. within a simple C# .NET console app, becomes nearly unresponsive, taking multiple seconds while typing a few characters into the editor. Solution/Workaround Watch the current background tasks VS is running at the...
by admin | Dec 19, 2019 | C# .Net
[:en]Because the team of the original AutoMapper project removed several static methods with the start of v9, I created a project which keeps the most important static ExtensionMethods like Map() or ProjectTo for easier access. Get it via NuGet or Github....
by admin | Dec 9, 2019 | C# .Net
[:en]Using ASP.NET Core controllers, you can add e.g. the attribute [Authorize] to methods or whole classes to prevent unauthorized access. The following example extends this functionality by allowing access if the client user resides in the local network. namespace...
by admin | Aug 25, 2019 | C# .Net
[:en]openTRANS is a collection of XML definitions for automated ordering systems, developed by Fraunhofer IAO. I partly implemented the openTRANS v2.1 definitions in C# .NET Standard 2.0. Get it on Github and NuGet. [github-commits username=”DXSdata”...
by admin | Apr 16, 2019 | Administration, C# .Net
[:en]Released a tool which can be used for non-Outlook PCs to be able to see email files (.msg, .eml) as preview in Windows Explorer. Get it via GitHub. [github-commits username=”DXSdata” repository=”explorerFilePreview”...
by admin | Apr 11, 2019 | C# .Net
[:en]Useful snippet for adding a placeholder text feature to a common Windows Forms TextBox like you might know it from HTML’s <input> tag. Add e.g. to your ExtensionMethods: private const int EM_SETCUEBANNER = 0x1501; [DllImport(“user32.dll”,...