hi!
I have inserted an OLEControlObject into word document using vba as
following
Selection.InlineShapes.AddOLEControl(ClsType)
No after inserting it I tried to move cursor to the next line after the
Control. using
Selection.TypeParagraph()
it deleted the Control. So what should I do to avoid it. furthermore if i
want to move cursor one space after the Control.
Thanks in advance.
Ahmad Jalil Qarshi
David Sisson - 22 Jun 2005 16:31 GMT
Selection.Collapse wdCollapseEnd
Selection.MoveDown wdParagraph, 1
Word Heretic - 24 Jun 2005 04:05 GMT
G'day "Ahmad Jalil Qarshi" <ahmaddearNO@SPAMhotmail.com>,
Selection.Move wdParagraph,1
Steve Hudson - Word Heretic
steve from wordheretic.com (Email replies require payment)
Without prejudice
Ahmad Jalil Qarshi reckoned:
>hi!
>
[quoted text clipped - 14 lines]
>
>Ahmad Jalil Qarshi