Fix for vcruntime140.dll and msvcp140.dll missing

Many people are having problems when trying to start some application they’ve just installed. They get errors like vcruntime140.dll and msvcp140.dll missing. There’s an easy fix for that. You simply have to download and install the Microsoft Visual C++ Redistributable files. There’s no need to restart your computer. Just install the exe file from Microsoft … Read more

How to find broken links on your website

Websites change stuff all the time and if you’re having a lot of outgoing links to different sites it might be hard to have control over all of them. There’s several free services that can search through your website and find those broken links. One that I like is https://www.brokenlinkcheck.com, it does exactly what it … Read more

How to randomize an array in VB.net

Do you want to randomize the items in an array with VB.net? Add these 2 functions below to your code to get it working. The reason there’s 2 functions you must add is because the first function is using the second function to make it all work. To use it, you just type: Shuffle(YourArray, 5) … Read more