Well, almost solved, though I cant get rid of the darn JavaScript. Here's what I got so far:

Add references to "Microsoft VBScript Regular Expressions 5.5".

On Form:
place 2 text boxes, 1 Inet control, and 2 buttons.
VB Code:
  1. Private Sub Command1_Click()
  2. Text1 = Inet1.OpenURL("http://www.yujunet.com/")
  3. End Sub
  4.  
  5. Private Sub Command2_Click()
  6. Dim temp1 As String
  7. Dim temp2 As String
  8. Dim temp3 As String
  9. Dim newstring
  10. temp1 = RemoveLines(Text1)
  11. temp2 = RegExFind(temp1, "<script[^>]*>(.*)</script>")
  12. temp3 = RegExReplace(temp1, temp2, "")
  13. temp3 = RemoveHTML(temp3)
  14. Text2 = temp3
  15. End Sub

In Module:
VB Code:
  1. Function RemoveLines(myString As String)
  2.     'convert multiline to single line string:
  3.     myString = Replace(myString, vbTab, " ")   'removes Tabs
  4.     myString = Replace(myString, Chr(13), " ")
  5.     myString = Replace(myString, Chr(10), " ")
  6.     myString = Replace(myString, vbCrLf, " ")
  7.     myString = Replace(myString, vbNewLine, " ")
  8.     RemoveLines = myString
  9. End Function
  10.  
  11.  
  12. Function RegExFind(myString As String, FindWhat As String)
  13. On Error Resume Next
  14.  
  15.    'Create objects.
  16.    Dim objRegExp As RegExp
  17.    Dim objMatch As Match
  18.    Dim colMatches   As MatchCollection
  19.    Dim RetStr As String
  20.  
  21.    Set objRegExp = New RegExp
  22.    objRegExp.Pattern = FindWhat
  23.    objRegExp.IgnoreCase = True
  24.    objRegExp.Global = True
  25.    objRegExp.MultiLine = True
  26.    If (objRegExp.Test(myString) = True) Then
  27.     Set colMatches = objRegExp.Execute(myString)
  28.     For Each objMatch In colMatches
  29.       RetStr = objMatch.Value
  30.     Next
  31.    Else
  32.     RetStr = "" 'No matches
  33.    End If
  34.    RegExFind = RetStr
  35. End Function
  36.  
  37.  
  38. Function RegExReplace(myString As String, FindThis As String, ReplaceWithThis As String)
  39. On Error Resume Next
  40.     'search string for item and then replace with new item:
  41.     Dim sourse1 As String, resourse As Object
  42.     sourse1 = myString
  43.     Set resourse = New RegExp
  44.     resourse.Pattern = FindThis
  45.     resourse.Global = True
  46.     resourse.IgnoreCase = True
  47.     If resourse.Test(sourse1) = True Then
  48.         myString = resourse.Replace(sourse1, ReplaceWithThis)
  49.     End If
  50.     RegExReplace = myString
  51. End Function
  52.  
  53.  
  54. Function RemoveHTML(strText As String)
  55.     Dim RegEx
  56.     Set RegEx = New RegExp
  57.     RegEx.Pattern = "<[^>]*>"
  58.     RegEx.Global = True
  59.     RegEx.IgnoreCase = True
  60.     strText = Replace(strText, "&nbsp;", "")
  61.     RemoveHTML = RegEx.Replace(strText, "")
  62. End Function

Any suggestions would really help