Separate names with a comma.
Yep Jubixion, you're right. However, back in the time when I made this script AdBlock wasn't removing the frame the ads was in, but it would only...
The location of cookies and their storage method varies from browser to browser, and even if we'd only have to consider firefox, it changes from...
flash1.getvalue('valueyouwanttoretrieve') ... maybe?
Instead of accessing the memory, you can just work on a managed Flash object you can create in a vb form. Basically what you could do is load the swf...
You don't. You edit the browser's document structure instead of simulating real key presses.
Well, not really. Javascript's DOM Functions are 'more regular' than the methods we use in Vb to find data in a page. Javascript uses an XML...
do JavaScript "document.location.href = 'http://www.yourpage.com/';" in document 1
Indeed, I think your way would even take more, as the database of all the md5 hashes would be too large to scan it fast. It would of course be more...
Fexxel, I have the feeling you didn't even try reading one of the many vb.net tutorials... You won't learn anything this way, believe me. Google is...
You gotta edit the .designer.vb file yourself to find the error. Click on "Show all files" and then click on the + on the left of your form and...
strHTML = Wrapper.GetWrapper("http://www.neopets.com/objects.phtml?type=inventory", "http://www.neopets.com/petcentral.phtml") strID =...
Are you using HTTPWrapper or RIpperWrapper?
Vb.net is easy, yes, but it's not yet arrived to the point it will code everything for you by reading your mind. A progress bar can be used for many...
If you really want to know, C# is the same as visual basic.net with a touch of C syntax and the ability to use unmanaged memory (which, to my...
It would be great if you didn't leak the program itself but the images database. It wouldn't be a steal since the images are from neopets ;P
System.Threading, I think.
just use this code: Thread t = New Thread(SubYouWantToExecute); t.IsBackground = True; t.Start([Optional parameter to pass to the thread]); To edit...
The ones in my sig? :P Adult dragons don't need clicks tho, they will never die.
I don't think you want to make a website... :S Windows developers, of course.
C# is not different from Vb.net at all. It's just the same syntax with some C flavour, but the core is the same (the Microsoft .NET Framework, which...