Page 1 of 1

[Help] View Increase[Project]

Posted: Mon Feb 15, 2010 10:04 pm
by Hli4S
Hello,

I have see that the most of you know very good Visual Basic.
I want to make a project called "View Increase"
This project will increase theards views etc...
I have try to make an application with wberbrowsers and it didn't work. then i have discover
that when you see a topic you take a cookie if clear the cookies and make refresh to the theards page you will see that the views has been increase by "1" so i want to make an application with webbrowsers and also to add a action that clear cookies every 1 second
thats why i am asking your help because i don't have the right knowledge and i can't make it.

I want to make something like this:
http://www.youtube.com/watch?v=l9jsyHcJs3k
Look carefuly what this guy made..!

Re: [Help] View Increase[Project]

Posted: Tue Feb 16, 2010 4:03 pm
by CodenStuff
Hello,

This code may help when deleting cookies, I have not tried it because I dont want my cookies deleting:
Code: Select all
Dim cookies() As String = IO.Directory.GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.Cookies), "*.*", IO.SearchOption.AllDirectories)
        For Each Cookie As String In cookies
            System.IO.File.Delete(Cookie)
        Next
The rest should be able to be done with a webbrowser control. Im not sure why you want to increase views in a forum though? :?

Hope that helps cooll;

Re: [Help] View Increase[Project]

Posted: Wed Feb 17, 2010 9:20 pm
by Hli4S
thank you very very much... I will try it and i Will tell you the results...!

but I have a question this code clear from all the browsers the cookies or only from internet explorer ?


[EDIT]
I have test it it doesn't works it shows me an error....
any other solution to make a program like that ??