Software Development Network>> Visual C#>> Copy, and Paste in C#
.NET has a Clipboard class that allows you to get/set object to and from the clipboard, this can be done with its two static methods:Clipboard.GetDataObject();Clipboard.SetDataObject();For example and detailed explanation, try reading from here:Clipboard handling in .NET part 1http://www.codeproject.com/csharp/clipboard01.aspClipboard handling in .NET part 2http://www.codeproject.com/csharp/clipboard02.aspHope that helps,-chris
Copy, and Paste in C#
the_thug
.NET has a Clipboard class that allows you to get/set object to and from the clipboard, this can be done with its two static methods:
Clipboard.GetDataObject();
Clipboard.SetDataObject();
For example and detailed explanation, try reading from here:
Clipboard handling in .NET part 1
http://www.codeproject.com/csharp/clipboard01.asp
Clipboard handling in .NET part 2
http://www.codeproject.com/csharp/clipboard02.asp
Hope that helps,
-chris