Tag Archives: C#

Cleaning formatting from the clipboard text

Download Visual c# from msdn.microsoft.com/vstudio/express/visualcsharp Create new project as a windows application Delete the generated form (form1.cs) Open program.cs Change the content of the main method to: IDataObject data = Clipboard.GetDataObject(); if (data != null && data.GetDataPresent(DataFormats.Text)) { String clipboardText … Continue reading

Posted in Technotes | Tagged | Leave a comment