I am using the following code which makes use of early binding :
Code:
Dim oDoc As Microsoft.Office.Interop.Word.Document
oDoc = DirectCast(axFramerControl1.ActiveDocument, Microsoft.Office.Interop.Word.Document)
oDoc.ActiveWindow.Selection.WholeStory()
The problem is that I would like to dump my reference and use late binding instead.
Can anyone convert this please ?

Thanks in Advance