<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>The Botting Network - Programming</title>
		<link>http://thebotnet.com/</link>
		<description>Advice and tutorials on various programming languages.</description>
		<language>en</language>
		<lastBuildDate>Wed, 08 Sep 2010 10:44:43 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1</ttl>
		<image>
			<url>http://thebotnet.com/images/styles/botnet/misc/rss.jpg</url>
			<title>The Botting Network - Programming</title>
			<link>http://thebotnet.com/</link>
		</image>
		<item>
			<title>Email Manipulation</title>
			<link>http://thebotnet.com/programming/32625-email-manipulation/</link>
			<pubDate>Tue, 07 Sep 2010 21:25:19 GMT</pubDate>
			<description>Is there a way in visual basic to open a specific email and get a link from it??</description>
			<content:encoded><![CDATA[<div>Is there a way in visual basic to open a specific email and get a link from it??</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>zach478</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32625-email-manipulation/</guid>
		</item>
		<item>
			<title>fstream c++</title>
			<link>http://thebotnet.com/programming/32594-fstream-c/</link>
			<pubDate>Tue, 07 Sep 2010 16:46:23 GMT</pubDate>
			<description>im not sure why, but this fstream code fails. it opens test.txt, the prints the contents into a console output. but it always fails to open the file,...</description>
			<content:encoded><![CDATA[<div>im not sure why, but this fstream code fails. it opens test.txt, the prints the contents into a console output. but it always fails to open the file, even though the file exists.<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#include &lt;fstream&gt;<br />
#include &lt;iostream&gt;<br />
<br />
using namespace std;<br />
void main()<br />
{<br />
&nbsp; &nbsp; int length;<br />
&nbsp; &nbsp; char * buffer;<br />
&nbsp; &nbsp; ifstream file;<br />
&nbsp; &nbsp; file.open (&quot;test.txt&quot;, ios::binary|ios::in);<br />
&nbsp; &nbsp; if(!file.good())<br />
&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;Error reading file&quot;;<br />
&nbsp; &nbsp; file.seekg(0, ios::end);<br />
&nbsp; &nbsp; length = file.tellg();<br />
&nbsp; &nbsp; file.seekg(0, ios::beg);<br />
&nbsp; &nbsp; buffer = new char [length];<br />
&nbsp; &nbsp; file.read(buffer,length);<br />
&nbsp; &nbsp; cout.write(buffer,length);<br />
}</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>grue</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32594-fstream-c/</guid>
		</item>
		<item>
			<title>vb.net help</title>
			<link>http://thebotnet.com/programming/32564-vb-net-help/</link>
			<pubDate>Tue, 07 Sep 2010 02:43:19 GMT</pubDate>
			<description>im making a simple bot to start learn coding and i want to make a facebook one that logs in i have 1 button for the log in and to textboxs textbox1...</description>
			<content:encoded><![CDATA[<div>im making a simple bot to start learn coding and i want to make a facebook one that logs in i have 1 button for the log in and to textboxs textbox1 login textbox2 password  this is what i have  <br />
<br />
WebBrowser1.Document.GetElementById(&quot;label_emial&quot;)  .SetAttribute(&quot;value&quot;, TextBox1.Text)<br />
        WebBrowser1.Document.GetElementById(&quot;label_pass&quot;).  SetAttribute(&quot;value&quot;, TextBox2.Text)<br />
      WebBrowser1.Document.InvokeScript(&quot;login_form_labe  l&quot;).Invokemember(&quot;Click&quot;)<br />
<br />
but nothing happens witch im pretty sure that the ids are wrong any one know how to get the right ids or knows them</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>r0ckinricky</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32564-vb-net-help/</guid>
		</item>
		<item>
			<title>VC# Tutorial</title>
			<link>http://thebotnet.com/programming/32531-vc-tutorial/</link>
			<pubDate>Mon, 06 Sep 2010 20:51:56 GMT</pubDate>
			<description>I am learning VC#...search any VC# tutorial video or code samples. Please share it. sorry my english is bad :(</description>
			<content:encoded><![CDATA[<div>I am learning VC#...search any VC# tutorial video or code samples. Please share it. sorry my english is bad :(</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>blackrazor</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32531-vc-tutorial/</guid>
		</item>
		<item>
			<title><![CDATA[[VB] Timer Help]]></title>
			<link>http://thebotnet.com/programming/32517-vb-timer-help/</link>
			<pubDate>Mon, 06 Sep 2010 18:51:00 GMT</pubDate>
			<description>I realize this is my second post, but I am in need of some help. 
 
I currently am making a simple flooder/spam tool. 
 
It basically writes out the...</description>
			<content:encoded><![CDATA[<div>I realize this is my second post, but I am in need of some help.<br />
<br />
I currently am making a simple flooder/spam tool.<br />
<br />
It basically writes out the text you input, and presses enter.<br />
<br />
What I need help with is the next step, I want the user to be able to input the number of seconds between 'posts' of the flood message.<br />
<br />
So far I have<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"> Timer1.Interval = +TextBox2.Text + &quot;000&quot;</code><hr />
</div>As it's in milliseconds, I thought that would work 2 = 2 seconds.<br />
<br />
But it seems to either not work at all, or just freeze up on me..<br />
<br />
Any help? :smile:</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>iKeyZ</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32517-vb-timer-help/</guid>
		</item>
		<item>
			<title>Getting youtubE account names</title>
			<link>http://thebotnet.com/programming/32445-getting-youtube-account-names/</link>
			<pubDate>Mon, 06 Sep 2010 00:17:21 GMT</pubDate>
			<description>in VB.NET: 
im making an auto friender. how can I make it so that it gets all the usernames of users from the current page?</description>
			<content:encoded><![CDATA[<div>in VB.NET:<br />
im making an auto friender. how can I make it so that it gets all the usernames of users from the current page?</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>rvbfreak</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32445-getting-youtube-account-names/</guid>
		</item>
		<item>
			<title>random word generator</title>
			<link>http://thebotnet.com/programming/32397-random-word-generator/</link>
			<pubDate>Sun, 05 Sep 2010 18:34:38 GMT</pubDate>
			<description>Can someone tell me how to make a basic random word generator in visual basic. I want it so the program generates a random word from a list and then...</description>
			<content:encoded><![CDATA[<div>Can someone tell me how to make a basic random word generator in visual basic. I want it so the program generates a random word from a list and then puts it in a textbox. I have tried google but the results were pretty useless. They only told me how to make a random letter number generator which I don't want.</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>DeadlyCheese</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32397-random-word-generator/</guid>
		</item>
		<item>
			<title><![CDATA[[VB] Link click]]></title>
			<link>http://thebotnet.com/programming/32353-vb-link-click/</link>
			<pubDate>Sun, 05 Sep 2010 03:15:27 GMT</pubDate>
			<description><![CDATA[I'm start with Visual Basic and I just learned how to simulate a browser on my bot. 
Although I'm having difficulty clicking a link. 
  
I've been...]]></description>
			<content:encoded><![CDATA[<div>I'm start with Visual Basic and I just learned how to simulate a browser on my bot.<br />
Although I'm having difficulty clicking a link.<br />
 <br />
I've been trying to use this<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &nbsp; &nbsp; &nbsp; For i As Integer = 0 To Me.WebBrowser1.Document.Links.Count - 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If Me.WebBrowser1.Document.Links(i).InnerHtml.StartsWith(&quot;Google.com in English&quot;) Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Me.WebBrowser1.Document.Links(i).InvokeMember(&quot;Click&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; &nbsp; &nbsp; Next</code><hr />
</div>But it doesnt work thats as far as I got.<br />
Can anyone help me?</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>Geod</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32353-vb-link-click/</guid>
		</item>
		<item>
			<title>vb proxy?</title>
			<link>http://thebotnet.com/programming/32340-vb-proxy/</link>
			<pubDate>Sun, 05 Sep 2010 00:27:09 GMT</pubDate>
			<description>whats the code for using a webproxy and load it from a text file?</description>
			<content:encoded><![CDATA[<div>whats the code for using a webproxy and load it from a text file?</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>scruppy</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32340-vb-proxy/</guid>
		</item>
		<item>
			<title><![CDATA[[VB] Setting hotkeys]]></title>
			<link>http://thebotnet.com/programming/32316-vb-setting-hotkeys/</link>
			<pubDate>Sat, 04 Sep 2010 17:30:04 GMT</pubDate>
			<description>Can someone tell me how to make a hotkey in visual basic so for example the program could be minimized and then when the user presses for example...</description>
			<content:encoded><![CDATA[<div>Can someone tell me how to make a hotkey in visual basic so for example the program could be minimized and then when the user presses for example &quot;F1&quot; the program does an action.</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>DeadlyCheese</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32316-vb-setting-hotkeys/</guid>
		</item>
		<item>
			<title>vb webbrowser problem</title>
			<link>http://thebotnet.com/programming/32232-vb-webbrowser-problem/</link>
			<pubDate>Fri, 03 Sep 2010 13:05:44 GMT</pubDate>
			<description>Hey guys this has been bugging me for a while now and hopefully someone can show me how to fix this. 
 
In webbrowser2 I navigate to a website and...</description>
			<content:encoded><![CDATA[<div>Hey guys this has been bugging me for a while now and hopefully someone can show me how to fix this.<br />
<br />
In webbrowser2 I navigate to a website and click a button which links to another website the buttons id is &quot;television&quot; I want to open this link into either webbrowser2 as a new tab(like in firefox) or into webbrowser3 I don't want the link to pop-out of the application. I've tried using geckofx but I still had the same problem.<br />
<br />
any ideas and input is appreciated :love:</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>kave</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32232-vb-webbrowser-problem/</guid>
		</item>
		<item>
			<title><![CDATA[[VB] Set Priority?]]></title>
			<link>http://thebotnet.com/programming/32173-vb-set-priority/</link>
			<pubDate>Thu, 02 Sep 2010 20:38:33 GMT</pubDate>
			<description><![CDATA[I kinda need help with setting priority to a program and such. Looked Google and no luck. 
 
What I'm trying to do basically is when I open Google...]]></description>
			<content:encoded><![CDATA[<div>I kinda need help with setting priority to a program and such. Looked Google and no luck.<br />
<br />
What I'm trying to do basically is when I open Google Chrome for example, it will set the priority to High. Don't like to open Task Manager since it takes forever to set it.</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>jlim637</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32173-vb-set-priority/</guid>
		</item>
		<item>
			<title>Q: How to send downarrow key to browser control in C#?</title>
			<link>http://thebotnet.com/programming/32139-q-how-to-send-downarrow-key/</link>
			<pubDate>Thu, 02 Sep 2010 07:58:05 GMT</pubDate>
			<description><![CDATA[I'm trying to send a down-arrow key to my webbrowser control, and having no luck at all. 
 
Any insights (C# code? :) ) appreciated!]]></description>
			<content:encoded><![CDATA[<div>I'm trying to send a down-arrow key to my webbrowser control, and having no luck at all.<br />
<br />
Any insights (C# code? :) ) appreciated!</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>Joe119</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32139-q-how-to-send-downarrow-key/</guid>
		</item>
		<item>
			<title>VB 2008 Decap + TBN auth</title>
			<link>http://thebotnet.com/programming/32070-vb-2008-decap-tbn-auth/</link>
			<pubDate>Wed, 01 Sep 2010 20:27:36 GMT</pubDate>
			<description><![CDATA[I've been doing a bit of visual basic recently and was wondering how you would inplant decap, because I'm interested in making some decap bots :) 
...]]></description>
			<content:encoded><![CDATA[<div>I've been doing a bit of visual basic recently and was wondering how you would inplant decap, because I'm interested in making some decap bots :)<br />
<br />
Also if someone could help me add the authorisation thing into it that would be great and hopefully will help the community and stock leechers from posting it else where!</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>valdamoon</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32070-vb-2008-decap-tbn-auth/</guid>
		</item>
		<item>
			<title>just need small help in vb please</title>
			<link>http://thebotnet.com/programming/32064-just-need-small-help-in-vb/</link>
			<pubDate>Wed, 01 Sep 2010 17:46:37 GMT</pubDate>
			<description>hey i was trying to learn vb and i got one problem that how can i select the date of birth like,month date,and year i am using combobox and i got...</description>
			<content:encoded><![CDATA[<div>hey i was trying to learn vb and i got one problem that how can i select the date of birth like,month date,and year i am using combobox and i got submit code WebBrowser1.Document.GetElementById(&quot;xxxx&quot;).Invoke  Member(&quot;Click&quot;)<br />
<br />
and i also need to select button of male and female i need code  plssssss it is radio button<br />
<br />
and one more thing they are so many excellent coder in this forum they can create some tutorial for newbies and help them.<br />
sorry for my bad english</div>

]]></content:encoded>
			<category domain="http://thebotnet.com/programming/">Programming</category>
			<dc:creator>Devilzhangout</dc:creator>
			<guid isPermaLink="true">http://thebotnet.com/programming/32064-just-need-small-help-in-vb/</guid>
		</item>
	</channel>
</rss>
