Getting "The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)" exception in DispHTMLDocument in MSHTML dll

0
            Dim dispDoc As DispHTMLDocument = TryCast(Me.document, DispHTMLDocument)
        Dim existingHandler As Object = dispDoc.onmouseover
        Dim handler As HTMLEventHandler =
            If(TypeOf existingHandler Is HTMLEventHandler,
               TryCast(existingHandler, HTMLEventHandler),
               New HTMLEventHandler(Me.document))
        dispDoc.onmouseover = handler
        AddHandler handler.eventHandler, value

Getting expetion at dispDoc.onmouseover. Can anyone help me with this please

vb.net
mshtml
shdocvw
asked on Stack Overflow Mar 12, 2018 by user3274034

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0