Send BACKSPACE keypress in Word VBA
4 answers
Simple way to send backspace (but not the most reliable solution):
SendKeys ("{BACKSPACE}")
A safer way to do it:
Selection.MoveLeft Extend:=wdExtend Selection.Delete
If something is already selected and you only want to remove the last character, imagine above:
Selection.Collapse wdCollapseEnd
To go to the top of the current page:
ActiveDocument.GoTo(wdGoToPage, wdGoToRelative, 0).Select
+2
source to share