Paste in Word Processor

In MicroStation XM, the following code would allow a paste function to the Word Processor, "SendKeys "^(V)", True"

In V8i, this does not work. Below is the code as we are using it but when the above mentioned keyin is called, all that's put in the dialog box is the letter "V"  Any reason why this would stop working? Thanks

Dim TheTextRange As Range
Set TheTextRange = WordtabAP.ActiveDocument.Range '(BookStart, BookEnd)
TheTextRange.Select
TheTextRange.Copy
Dim TheDocumentText As String
TheDocumentText = TheTextRange
TheTextRange.Copy ' Copy the Document

       CadInputQueue.SendKeyin "Place DIALOGTEXT ICON"
       SetCExpressionValue "gWordProcResourceData.method", 0, "WORDPROC"
       AppActivate "Text Editor - Word Processor"

DoEvents
SendKeys "^(V)", True 'paste copied document into microstation word processor
DoEvents
WordtabAP.Quit ' Close the Word Document