View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] atvaluesoftware@gmail.com is offline
external usenet poster
 
Posts: 10
Default The opposite of .Verb in OLE Object

I have an embedded Word OLE Object in my spreadsheet. The following
line activates the object for editing:

ActiveSheet.OLEObjects("MasterObject").Verb

Is there any way to get out of the editing mode now? My solution for
now has been:

ActiveSheet.Range("A1").Select

But I was hoping there was a command that I could apply diretly to the
object.