问题 Is there a way to retrieve several items from the clipboard? I'm using something like this: Dim clipboard As MSForms.DataObject Dim str1 As String Dim str2 As String Set clipboard = New MSForms.DataObject clipboard.GetFromClipboard str1 = clipboard.GetText(1) str2 = clipboard.GetText(2) However, I get an error where I assign a value to my second variable that says the following: Run-time error '-2147221404 (800040064)': DataObject:GetText Invalid FORMATETC Structure Help is much appreciated!