Well I did it like this, maybe this'll be useful for someone so be happy

VB Code:
  1. Dim objHtmlDocument As mshtml.HTMLDocument
  2.         Dim objRange As mshtml.IHTMLTxtRange
  3.         Try
  4.             objHtmlDocument = CType(Me.wbrContent.Document, mshtml.HTMLDocument)
  5.             objRange = objHtmlDocument.selection.createRange
  6.             If objRange.htmlText.Trim = String.Empty Then
  7. ...
  8.             Else
  9.                 MsgBox(objRange.htmlText.Trim)
  10.             End If
  11.         Catch ex As Exception
  12.  
  13.         Finally
  14.             objRange = Nothing
  15.             objHtmlDocument = Nothing
  16.         End Try