View previous topic :: View next topic |
Author |
Message |
PhantomLancer Master Cheater
Reputation: 0
Joined: 11 Nov 2007 Posts: 356
|
Posted: Fri May 23, 2008 12:04 am Post subject: Doing A Event Inside A WebBrowser in VB8 |
|
|
Well i want my program to do an event in webbrowser which involves clicking a button in the webbrowser then when the page loads typing the word Bump
With Interger 1 then each new post it will add 1 so new post will be Bump 2
how would i do that?
_________________
|
|
Back to top |
|
 |
sumnewdude Expert Cheater
Reputation: 0
Joined: 23 May 2007 Posts: 181 Location: Where you least expect me.
|
Posted: Fri May 23, 2008 7:10 am Post subject: |
|
|
Ummm your post is kind of confusing. . . Do you mean that you go to like a fourm and you type in "Bump" and then it will go in and bump every new post?? if not what do you mean?
_________________
.erutangis ruoy ni siht esu neht ,sdrawkcab siht daer ot hguone trams erew uoy fI |
|
Back to top |
|
 |
PhantomLancer Master Cheater
Reputation: 0
Joined: 11 Nov 2007 Posts: 356
|
Posted: Fri May 23, 2008 11:38 am Post subject: |
|
|
sumnewdude wrote: | Ummm your post is kind of confusing. . . Do you mean that you go to like a fourm and you type in "Bump" and then it will go in and bump every new post?? if not what do you mean? |
yea but i want it to click the button that brings up the thing where i type bump, then waits 45 secs and repeats
_________________
|
|
Back to top |
|
 |
sumnewdude Expert Cheater
Reputation: 0
Joined: 23 May 2007 Posts: 181 Location: Where you least expect me.
|
Posted: Fri May 23, 2008 8:29 pm Post subject: |
|
|
PhantomLancer wrote: | sumnewdude wrote: | Ummm your post is kind of confusing. . . Do you mean that you go to like a fourm and you type in "Bump" and then it will go in and bump every new post?? if not what do you mean? |
yea but i want it to click the button that brings up the thing where i type bump, then waits 45 secs and repeats |
Ok so so far this is what I think your wanting to make. . . You want to make a web browser that has a button that when you visit a fourm for ex. Cheat Engine's fourm and you click it it will analyze the webpage and find all new posts and it pops up a window with a text box and if you type "bump" it will go in and (I guess) type "Bump" in a post then post it then after 45 seconds go to the next new post and do the same. . . . . Is that sorta what you are trying to make?
_________________
.erutangis ruoy ni siht esu neht ,sdrawkcab siht daer ot hguone trams erew uoy fI |
|
Back to top |
|
 |
PhantomLancer Master Cheater
Reputation: 0
Joined: 11 Nov 2007 Posts: 356
|
Posted: Fri May 23, 2008 9:05 pm Post subject: |
|
|
sumnewdude wrote: | PhantomLancer wrote: | sumnewdude wrote: | Ummm your post is kind of confusing. . . Do you mean that you go to like a fourm and you type in "Bump" and then it will go in and bump every new post?? if not what do you mean? |
yea but i want it to click the button that brings up the thing where i type bump, then waits 45 secs and repeats |
Ok so so far this is what I think your wanting to make. . . You want to make a web browser that has a button that when you visit a fourm for ex. Cheat Engine's fourm and you click it it will analyze the webpage and find all new posts and it pops up a window with a text box and if you type "bump" it will go in and (I guess) type "Bump" in a post then post it then after 45 seconds go to the next new post and do the same. . . . . Is that sorta what you are trying to make? |
Yes, but i want the message to be entered in a textbox before i click the button to start it, then as it posts it should do Bump1, Bump2, Bump3, Bump4 and so on until you close it ^^
btw i want the webbrowser to be hiden ^^
_________________
|
|
Back to top |
|
 |
sumnewdude Expert Cheater
Reputation: 0
Joined: 23 May 2007 Posts: 181 Location: Where you least expect me.
|
Posted: Sat May 24, 2008 7:11 pm Post subject: |
|
|
Well if the webbrowser is hidden then that brings up several problems.
1.How would you get to the fourm?
2.How would you log on to the fourm?
3.How would you know if you wanted to Bump every form?
4.How would you find the new posts?
Now the first 3 you might already have solutions to them. But as for the last I don't know how you would find the new posts. Also would you like me to try and make what you are wanting to make?
EDIT:Did I answer your Mouse Position topic?
_________________
.erutangis ruoy ni siht esu neht ,sdrawkcab siht daer ot hguone trams erew uoy fI |
|
Back to top |
|
 |
PhantomLancer Master Cheater
Reputation: 0
Joined: 11 Nov 2007 Posts: 356
|
Posted: Sat May 24, 2008 10:11 pm Post subject: |
|
|
sumnewdude wrote: | Well if the webbrowser is hidden then that brings up several problems.
1.How would you get to the fourm?
2.How would you log on to the fourm?
3.How would you know if you wanted to Bump every form?
4.How would you find the new posts?
Now the first 3 you might already have solutions to them. But as for the last I don't know how you would find the new posts. Also would you like me to try and make what you are wanting to make?
EDIT:Did I answer your Mouse Position topic? |
yes i think so, but as for the log in thing
you will have 2 textbox's
Username: __________
Password: __________
(Login) <--Button
Thread Url: __________ <--another text box
(Go To Thread) <-- Another Button
Your Initial Post: __________ <---- Yet again another text box
(Start Auto Post)<-- Last Button
The part im confused about is getting it to add a new number to each post like
do
1.
2
3
4
and so on...
_________________
|
|
Back to top |
|
 |
sumnewdude Expert Cheater
Reputation: 0
Joined: 23 May 2007 Posts: 181 Location: Where you least expect me.
|
Posted: Sun May 25, 2008 10:03 pm Post subject: |
|
|
Well I don't know how you are inputting the text into your web browser weather you are using sendkeys.send or somthing else but to do the numbers you could do somthing like
Code: |
dim i as integer
private sub form1 load
i = 0
end sub
private sub timer1 tick
i=i+1
sendkeys.send i & ". BUMP"
end sub
|
now I think that should work . . . as you can tell thoes are not real functions I am away from my computer. But that should work.
_________________
.erutangis ruoy ni siht esu neht ,sdrawkcab siht daer ot hguone trams erew uoy fI |
|
Back to top |
|
 |
Typhoon808 Expert Cheater
Reputation: 0
Joined: 27 Mar 2008 Posts: 175 Location: Wales
|
|
Back to top |
|
 |
|