Page 1 of 1
Application that act on its own? [Please view]
Posted: Mon Mar 01, 2010 9:53 am
by TheET
Hi ,
I am creating an application that can go to a website > login > go to a certain link in that website > find the textbox of a comment box > Add in text > Then click on the "Add Comment" button .
It function all automatically but i don't know how can it be done .
Please provide me with a link to any TUTORIALS related to this or you can post a reply on how do i do it .
Thank you very much ,
Have a wonderful day .
THE-ET
Re: Application that act on its own? [Please view]
Posted: Mon Mar 01, 2010 9:56 am
by tedhead2
are you trying to make a comment bomber?
Re: Application that act on its own? [Please view]
Posted: Mon Mar 01, 2010 10:08 am
by Hallen
R you trying to make comment feature on your website? :?
I can`t understand :(
Re: Application that act on its own? [Please view]
Posted: Mon Mar 01, 2010 10:08 am
by TheET
Nope , i need it to announce news directly via comment for my website . Because most members view their comments more than news section .
Re: Application that act on its own? [Please view]
Posted: Tue Mar 02, 2010 9:43 am
by TheET
help ?:(
Re: Application that act on its own? [Please view]
Posted: Tue Mar 02, 2010 2:03 pm
by Scottie1972
TheET wrote:Hi ,
I am creating an application that can go to a website > login > go to a certain link in that website > find the textbox of a comment box > Add in text > Then click on the "Add Comment" button .
It function all automatically but i don't know how can it be done .
Please provide me with a link to any TUTORIALS related to this or you can post a reply on how do i do it .
Thank you very much ,
Have a wonderful day .
THE-ET
Hey TheET!
I might have a solution! I have been working on a login system that does use and mysql plug-ins for VB2008. It work directly to a php script on a server. and it work!
If you give me a few days, I will show everybody how I did it.
All I used is a webbrowser control and a bunch of textbox to hold the data.
In the php script instead of use methed="POST" / $var = $_POST['somefield];
I used $var = $_GET['somefield'];
then
Dim a as string = me.textbox1.text
Dim b as string = me.textbox2.text
WebBrowser1.Navigate("
Http://someurl.com/phpscript.php?action=post&title=" + a + "&message=" + b + "")
This goes in a click event
Just like you would if you did it with direct php function.
That gives you an idea. THis way I dont ahve to use MySQL Connect.NET, I can just code it like I would a php script.
So far all my test has worked. INSERT, UPDATE, DELETE everything.
Scottie
Re: Application that act on its own? [Please view]
Posted: Wed Mar 03, 2010 6:30 am
by TheET
Really , if you done with it . Please let me know . Thanks Scottie