Month: February 2017
Some practical instructions on how to include resource files to your Visual Studio C# WPF project that are not source code.Such non-code files can include binary data, text files, media …
Here is some of their online documentation on how to use the WiX Toolset to create installers:https://www.firegiant.com/wix/tutorial/getting-startedHere is a quick and concise guide to set up using the WiX Toolset …
Firstly a console application program to consecutively ENABLE and DISABLE the network connectivity: using System; using System.Diagnostics; namespace NetworkDisconnect { internal class Program { private static void Enable(string interfaceName) { …
Basic threading can quite easily be accomplished in C# by employing just a few lines of code.For this situation it is simply a matter of defining the function you wish …