2011-12-28 49 views
0

在PB6.5一個的PowerScript例如:如何將內容從系統剪貼板粘貼到由PowerBuilder 6.5中的Microsoft RichText Control插入的OLE控件?

ole=Create OleObject   //create an ole control 
ole.ConnectToNewObject("word.application") //connect the ole to word app 
ole.Documents.Open(ls_path) //open an winword using the path "ls_path" 
ole.Selection.WholeStory  //ctrl+A 
ole.Selection.copy()   //copy the content to system clipboard 

現在我想這個內容到另一個OLE控件(如ole_1)與Microsoft RichText控制連接粘貼,但我不知道該怎麼辦。 ..

也就是說,我可以使用鼠標或使用ctrl + V成功粘貼內容,並且我找不到具體的功能來完成操作。

或者是否有描述Microsoft Richtext控件(PB6.5中的版本5.0)的任何文檔? Thx!

回答

相關問題