[Help] View Increase[Project]
If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
3 posts
Page 1 of 1
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..!
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..!
Hello,
This code may help when deleting cookies, I have not tried it because I dont want my cookies deleting:
Hope that helps cooll;
This code may help when deleting cookies, I have not tried it because I dont want my cookies deleting:
Code: Select all
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? :?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
Hope that helps cooll;
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
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 ??
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 ??
3 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023