Hi,
Please can someone help me with getting the "insertion point" of MS Word document after I use InsertAfter. I have tried to reset _Word_DocRangeSet after InsertAfter but the insertion point of word continues to remain before the inserted text whereas I want it after the inserted text so I can continue typing after the inserted text.
Thanks for your help.
Regards,
Ajit
#include <Word.au3>
$oWord = _Word_Create()
$doc = _Word_DocAdd($oWord)
$oRange = _Word_DocRangeSet($doc, 0)
$oRange.Insertafter("INSERTED TEXT")