ahhhh..... okay, I've inserted it and now I see the MS Forms 2.0 Library and it's now selected and the script runs, however when I select a cell in the spread sheet I'm still getting "compile error: Procedure declaration does not match description of event or procedure having the same name."
Here's the code I pasted:
Private Sub Workbook_SheetSelectionChange(ByVal Target As Range)
If Intersect(Target, Range("A1:J281")) Is Nothing Then Exit Sub
Dim DataObj As New MSForms.DataObject
Dim S As String
S = ActiveCell.Text
DataObj.SetText S
DataObj.PutInClipboard
Dim DataObj As New MSForms.DataObject
Dim S As String
DataObj.GetFromClipboard
S = DataObj.GetText
Debug.Print S
End Sub