hi,
1/ i have a document that contains two bookmark "start" and "end" , iwant to delete the entity between the two bookmarks.
2/ how can i use backspace in docio
3/ can i convert this part of code from word9 to docio
wordObj.WorkDocument.Range(wordObj.WorkDocument.Bookmarks.Item("start").Start,wordObj.WorkDocument.Bookmarks.Item("end").End).Select()
wordObj.WorkDocument.ActiveWindow.Selection.Delete()
wordObj.WorkDocument.ActiveWindow.Selection.TypeBackspace()
wordObj.WorkDocument.ActiveWindow.Selection.MoveUp(Unit:=Word9.WdUnits.wdLine, Count:=1)
wordObj.WorkDocument.ActiveWindow.Selection.Tables.Item(1).Delete()
wordObj.WorkDocument.ActiveWindow.Selection.TypeBackspace()
wordObj.WorkDocument.ActiveWindow.Selection.TypeBackspace()
wordObj.WorkDocument.ActiveWindow.Selection.TypeBackspace()
wordObj.WorkDocument.ActiveWindow.Selection.TypeBackspace()
thanks