You can add this function to display colored text in a richtextbox! [Just Append With that Function] private void AddTextToRTB(RichTextBox rtb, string txt, Color col) &a...
Here is an example to allow software to run only once on a machine. If the user tries to start the application again, there will ne a notification box and the program will exit. [file] program.cs in visual studio using System; using System.Threading;...
Here is an example function to get the full html output code of an URL provided to the function into a string. You can get the data by using a string variable which gets the output: string variable = gethtmlcontent("https://thisisapage&q...
Here the code to get the current Directory! string path = Directory.GetCurrentDirectory(); See more detailed Info here: https://docs.microsoft.com/de-de/dotnet/api/system.io.directory.getcurrentdirectory?view=netcore-3.1 ...
Here an example to load an custom application xml config file. // Load Configuration CurrentConfPath = "C:\\PATH\\TO\\EXE.CONFIG"; ExeConfigurationFileMap configMap = new ExeConfigurationFileMap(); configMap.ExeConfigFilename = Curr...