![]() |
|
Webbrowser Script Error - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: Webbrowser Script Error (/Thread-Webbrowser-Script-Error) Pages:
1
2
|
Webbrowser Script Error - BestRacs - 08-31-2011 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. ![]() Any body have a solution for me. I have java and ErrorsSuppressed = TRUE. Anybody has a idea or solution for me? RE: Webbrowser Script Error - PartyPaint - 08-31-2011 use another anonymous browser or something like this: hidemyass.com RE: Webbrowser Script Error - 1234hotmaster - 08-31-2011 (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 ^_^' RE: Webbrowser Script Error - BestRacs - 08-31-2011 Not creating an adf.ly bot .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 ![]() Have an idea how to fix this problem? Does vb.net only runs IE? RE: Webbrowser Script Error - 1234hotmaster - 08-31-2011 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: RE: Webbrowser Script Error - BestRacs - 08-31-2011 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. RE: Webbrowser Script Error - blowdoof - 09-02-2011 did you preset the errorssupressed option? Try setting it just before loading your page: Code: webbrowser1.ScriptErrorsSuppressed = truePost some code you use if still having issues RE: Webbrowser Script Error - BestRacs - 09-02-2011 (09-02-2011, 12:30 PM)blowdoof Wrote: did you preset the errorssupressed option? 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? RE: Webbrowser Script Error - blowdoof - 09-02-2011 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 RE: Webbrowser Script Error - BestRacs - 09-03-2011 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 ClassEasier 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 |