C-Sharp

Entries about: C-Sharp
^Top
<< Back
Mobile-Menu










Sections

Snippets

Add Colored Text To RichTextBox

You can add this function to display colored text in a richtextbox! [Just Append With that Function] &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void AddTextToRTB(RichTextBox rtb, string txt, Color col) &nbsp;&a...


Allow Application Run Only Once

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;...


Get Remote HTML Code as String

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(&quot;https://thisisapage&q...


Get the current Directory

&nbsp;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 ...


Load an XML exe.config File (Custom Path)

Here an example to load an custom application xml config file. // Load Configuration CurrentConfPath = &quot;C:\\PATH\\TO\\EXE.CONFIG&quot;; ExeConfigurationFileMap configMap = new ExeConfigurationFileMap(); configMap.ExeConfigFilename = Curr...


Fixes

Prepare Scripts for SSL Connections

If SSL Connections fail with Security Protocol Error, this code in Main Function could do the trick! ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Ssl3...


This Website is using Session Cookies for Site Functionality.