Hi
I have a Help.doc file in my application.
How can I open this file on a winform to page 2 (say)?
How can I open it to page 2 using a WebBrowser control?

'Microsoft.Office.Interop.Word added

Private Sub OpenMyWordDoc()
            Dim MyWordApp As Word.Application
            Dim MyDoc As Word.Document
            MyWordApp = CreateObject("Word.Application")
            MyDoc = MyWordApp.Documents.Open("C:\Help.doc")
            MyWordApp.Visible = True
End Sub

Help me out.
gbhs (newbie)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.