We are manipulating our Word 2007 documents from .Net using Word Interop. Mostly doing stuff with fields as in:
For Each f In d.Fields f.Select() //d
Try this :
int lNumberOfPages = _WordDoc.ComputeStatistics(Word.WdStatistic.wdStatisticPages, false); WordApp.Selection.GoTo(Word.WdGoToItem.wdGoToPage,WordApp.WdGoToDirection.wdGoToLast, lNumberOfPages);