Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Requests
Automated bot for betting form
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="flyest" data-source="post: 352348" data-attributes="member: 29020"><p>Correct. Didn't know the name of it.</p><p>[doublepost=1444186860,1443842272][/doublepost]I managed to make one in Visual Studio which isn't automated (yet). It saves me a lot of time!</p><p>This wasn't too hard, but I have to understand the language a little bit more in order to finish it.</p><p>[SPOILER="Screenshot"]<img src="http://i.imgur.com/xRmtsFW.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /> [/SPOILER]</p><p>[SPOILER="Button Snippets"]</p><p>[CODE]private void button1_Click(object sender, EventArgs e)</p><p> {</p><p> webBrowser1.Document.GetElementById("bet").SetAttribute("value", "51200000");</p><p> HtmlElementCollection elc = this.webBrowser1.Document.GetElementsByTagName("input");</p><p> foreach (HtmlElement el in elc)</p><p> {</p><p> if (el.GetAttribute("type").Equals("submit"))</p><p> {</p><p> el.InvokeMember("Click");</p><p> }</p><p> }</p><p> } [/CODE]</p><p>[/SPOILER]</p><p>If there is anyone who can help me automatize the process, contact me through PM. <img src="/styles/default/xenforo/smilies/emojione/smile.png" class="smilie" loading="lazy" alt=":)" title="Smile :)" data-shortname=":)" /></p></blockquote><p></p>
[QUOTE="flyest, post: 352348, member: 29020"] Correct. Didn't know the name of it. [doublepost=1444186860,1443842272][/doublepost]I managed to make one in Visual Studio which isn't automated (yet). It saves me a lot of time! This wasn't too hard, but I have to understand the language a little bit more in order to finish it. [SPOILER="Screenshot"][IMG]http://i.imgur.com/xRmtsFW.png[/IMG] [/SPOILER] [SPOILER="Button Snippets"] [CODE]private void button1_Click(object sender, EventArgs e) { webBrowser1.Document.GetElementById("bet").SetAttribute("value", "51200000"); HtmlElementCollection elc = this.webBrowser1.Document.GetElementsByTagName("input"); foreach (HtmlElement el in elc) { if (el.GetAttribute("type").Equals("submit")) { el.InvokeMember("Click"); } } } [/CODE] [/SPOILER] If there is anyone who can help me automatize the process, contact me through PM. :) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Requests
Automated bot for betting form
Top