|
|
|
Copying a piece of information into the clipboard is as easy as calling the Clipboard.SetDataObject: you can pass this method a string, an image, and so on. If you pass it a string that contains text in Rich Text Format (RTF), the Clipboard object detects this format automatically. For example, the following procedure copies the selected portion of a TextBox control (or the entire control's contents, if no text is selected) into the clipboard: |
Click here to copy the following block | Sub CopyFromTextBox(ByVal tb As TextBox) Dim t As String = tb.SelectedText If t.Length = 0 Then t = tb.Text If t.Length > 0 Then Clipboard.SetDataObject(t) End If End Sub |
The SetDataObject can take a second argument, which you should set to True if you want to make the copied object available after the current program terminates: |
Remember that you can put any object in the clipboard, including objects that are private to your application and that shouldn't be accessed by other programs. |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|