FOLLOW US
softpcapps Software CODE HELP BLOG



Freeware Open Source Windows Software Applications and Free Online Tools

For Windows 11 : Download and run .NET 3.5 Installer if the application is not running

How to correctly copy Text to the Clipboard

To correctly copy text to the clipboard, you have to clear it first like in the following code :
	
	
	 private void CopyTextToClipboard(string txt)
	 {
		 Clipboard.Clear();
		 Clipboard.SetText(txt);
	 }