While writing my last article, something occurred to me: what if the app uses an external dll for some functions, how can I package them to send them to the store. Once…
Creating an app for the Windows Store with Delphi Rio 10.3
Until some time ago, creating an app to the Windows Store was only possible by creating an UWP (Universal Windows Platform) app and submitting it to the Windows Store. This was somewhat…
Responsive design in UWP
When I talk about UWP development and how it works for a large number of devices, from the tiny Raspberry Pi to the huge Surface Hub, and including the Hololens and Xbox,…
Linqpad
As an MVP, I sometimes receive licenses to software from the vendors for my usage. Some of them become indispensable for me and I feel in the obligation to write a review…
XAML edit and continue
One of the features I really like in Visual Studio while I am developing is the Edit and Continue feature. Just add a breakpoint in the code, edit the code and maybe…
Debugging emails sent with C#
Some time ago, I’ve written this post about sending parametrized emails with C#. After some time, the emails weren’t arriving to their destination and I didn’t know why that happened – there…
Loading Xaml Views and ViewModels Dynamically
This article demonstrates how to dynamically load XAML views and their corresponding ViewModels into a WPF application at runtime—rather than defining them statically at compile time—by leveraging reflection and runtime loading techniques to instantiate and bind UI components as needed, increasing flexibility and supporting scenarios like plugin architectures. His companion GitHub project DynamicXamlViews provides a practical demonstration of this approach
Reformatting your SQL Server code with C#
In the last post, I’ve shown how you can use the Microsoft libraries to parse your SQL Server code in C#. You can use the same parser to reformat your code, but…
Parsing SQL Server code with C# – Part 2 – Advanced parsing
In the last post, I’ve shown how to parse SQL Server code with C# and get all tokens in it, showing their types. This is very nice, there is a lot you…
Parsing Sql Server code with C#
When you are using SQL Server stored procedures, you get a lot of flexibility in your code – changing the code doesn’t need a recompile, deploying the new or updated procedures is…