Thank you a lot bro for this helpful tutorial. Keep up the good work.
nice, going to have to me a sharecash premium account and try this out Nice share man
Glad you guys like it = ) Will make sure to post more of those then
Thanks Alot For This.
Hope This Will Last For Some Time.
Thanks was looking for this for a long time
Thanks for the feedback , glad this was useful
Thank You ALOT!!!!!! <33
hehehe
(08-23-2011, 06:56 PM)Correct Wrote: [ -> ]Thank You ALOT!!!!!! <33
hehehe
No problem , will make sure to do more tutorials maybe adding a proxy checker or something .
(08-23-2011, 07:12 PM)Prominent Wrote: [ -> ]No problem , will make sure to do more tutorials maybe adding a proxy checker or something .
What do you mean you will do more tutorials?
You said you found this one on the internet..
Some quick things I notice in your code:
1) You should use Messagebox.Show instead of MsgBox.
2) You don't need extra brackets like this:
Code:
If (WebBrowser1.DocumentText.Contains("Close")) Then
You can use this instead to shorten your code size:
Code:
If WebBrowser1.DocumentText.Contains("Close") Then