I want a copy and a paste button in MS Excel, the copy button looks like this
Private Sub CommandButton1_Click()
Dim MyData As New DataObject
MyData.SetText TextBox1.Text
MyData.PutInClipboard
End Sub
Now, how can I make/code a PASTE button in a similar fashion?