Login Register






Webbrowser Script Error filter_list
Author
Message
Webbrowser Script Error #1
Hola,

I have a problem with my anonymous browser.

When I go to adf.ly I get this error and the counter hangs at 1 second.
[Image: webbrowsererror.png]

Any body have a solution for me.

I have java and ErrorsSuppressed = TRUE.

Anybody has a idea or solution for me?
...
Support me getting L33T

Karma is a bitch? Well just make sure that bitch is beautiful..

Reply

RE: Webbrowser Script Error #2
use another anonymous browser or something like this: hidemyass.com

Reply

RE: Webbrowser Script Error #3
(08-31-2011, 05:58 PM)PartyPaint Wrote: use another anonymous browser or something like this: hidemyass.com

he is trying to make a adf.ly bot in VB.NET which uses IE ^_^'
(This post was last modified: 08-31-2011, 06:01 PM by Skullmeat.)
Pierce the life fibers with your drill.

Reply

RE: Webbrowser Script Error #4
Not creating an adf.ly bot Smile.
There are tons of them already on the net.

I'm trying to fix my own anonymous browser. And I use adf.ly also but since I cant open the links on my own browser it's a bit pointless.

And yes if i get it to work I'm going to make an inbuilt adf.ly bot for my browser Smile

Have an idea how to fix this problem?
Does vb.net only runs IE?
(This post was last modified: 08-31-2011, 06:43 PM by Shawn_Rogers.)
...
Support me getting L33T

Karma is a bitch? Well just make sure that bitch is beautiful..

Reply

RE: Webbrowser Script Error #5
oh sorry i didn't read the text i thought its one of those adf.ly bots XD

um, aren't the normal browsers which coded in C++ anonymous? :epic:
Pierce the life fibers with your drill.

Reply

RE: Webbrowser Script Error #6
Smile They are anonymous but why can't I open a simple adf.ly page.
It opens yes but it won't load the button to click on.

I tried vb.net 2008 and 2010 both same problem?

It has to load it right or am I getting crazy.
...
Support me getting L33T

Karma is a bitch? Well just make sure that bitch is beautiful..

Reply

RE: Webbrowser Script Error #7
did you preset the errorssupressed option?
Try setting it just before loading your page:
Code:
webbrowser1.ScriptErrorsSuppressed = true

Post some code you use if still having issues

Reply

RE: Webbrowser Script Error #8
(09-02-2011, 12:30 PM)blowdoof Wrote: did you preset the errorssupressed option?
Try setting it just before loading your page:
Code:
webbrowser1.ScriptErrorsSuppressed = true

Post some code you use if still having issues

Even when I start a new project I have the same problem.

I put a webbrowser on my form and a textbox and a button and under the button I put this simple code for navigate:
Code:
webbrowser1.navigate(textbox1.text)

And when I go to adf.ly the counter stops at 1 and nothing happens.
When I don't suppress the error and hover with my mouse over the 1 I get the error.

With the pre suppressed option enabled same problem.

So I think I must be missing something.

I have everything installed I think from front to back or am I missing something?
(This post was last modified: 09-02-2011, 03:33 PM by Shawn_Rogers.)
...
Support me getting L33T

Karma is a bitch? Well just make sure that bitch is beautiful..

Reply

RE: Webbrowser Script Error #9
try changing your button code to
Code:
webbrowser1.ScriptErrorsSuppressed = true webbrowser1.navigate(textbox1.text)

if still not working, pls provide more code and the exact url you're trying

Reply

RE: Webbrowser Script Error #10
Serious I started this new project today and it worked for like 1 time :/
I seriously don't know why.

Code:
Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click WebBrowser1.Navigate(TextBox1.Text) End Sub Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged End Sub Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub End Class

Easier I can't make it for myself.
Link: http://adf.ly/2T9Pe

Even with the suppress in the button it stops at 1.

Is my computer missing something.

I have 2008 and 2010

2008 has framework 3.5
2010 has framework 4.0
(This post was last modified: 09-03-2011, 01:58 AM by Shawn_Rogers.)
...
Support me getting L33T

Karma is a bitch? Well just make sure that bitch is beautiful..

Reply