ASP.NET Core 5.0 : MVC, Razor Pages, Web API, EF Core, Blazor, Design Patterns, and more. Private online coaching for software developers. Click
here for more details.
Using Windows Clipboard Programatically
Introduction
Windows uses clipboard to store data that be transferred from one application to another. Most of the times you use the famous Ctrl+X, Ctrl+C, Ctrl+V keystrokes to cut, copy and paste data. However, sometimes you may want to place some data on the clipboard through code. In such cases you can use Clipboard class to achieve the task. In this code sample you will see how to do just that.
Code Sample
Download the ZIP file and extract it at your end. The file contains a Windows Forms project with one form. The form consists of two textboxes and two buttons. The first textbox and button allows you to enter text and set it to the clipboard. The other textbox and button gets the data from the clipboard and displayes in the second textbox.
Bipin Joshi is an independent software consultant, trainer, author, yoga mentor, and meditation teacher. He has been programming, meditating, and teaching for 24+ years. He conducts instructor-led
online training courses in ASP.NET family of technologies for individuals and small groups. He is a published author and has authored or co-authored books for Apress and Wrox press. Having embraced the Yoga way of life he also teaches
Ajapa Yoga to interested individuals. To know more about him click
here.
Get connected :
Facebook Twitter LinkedIn YouTube
Posted On : 11 July 2004
Tags : .NET Framework Windows Forms