<?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><![CDATA[Console Spot Forums - PSP DS PS3 Xbox 360 Wii XMB - PC Software, Hardware & Mods]]></title>
		<link>http://www.consolespot.net/forums</link>
		<description>Talk about your favourite PC software and your lastest hardware purchases. Also talk about your favourite mods to games and your OS.</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 03:50:41 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.consolespot.net/forums/images/cardinall/misc/rss.jpg</url>
			<title><![CDATA[Console Spot Forums - PSP DS PS3 Xbox 360 Wii XMB - PC Software, Hardware & Mods]]></title>
			<link>http://www.consolespot.net/forums</link>
		</image>
		<item>
			<title><![CDATA[[Tutorial]VB 6 basic stuff]]></title>
			<link>http://www.consolespot.net/forums/pc-software-hardware-mods/27631-tutorial-vb-6-basic-stuff.html</link>
			<pubDate>Thu, 19 Nov 2009 03:03:51 GMT</pubDate>
			<description><![CDATA[Seen a guy post a tutorial on VB2008 web browser so I thought I would post up some basic things you can do in VB6.

*_Log in screen_:*
Choose a standard exe, then add two text boxes and a command button. Set it out how you would like it, then double click the command button and enter the text below into it.


---Quote---
if text1.text = "username" and text2.text = "password" then
form1.hide
form2.show
else msgbox "Wrong information try again."
end if
---End Quote---
Where "username" & "password" you will want to change, then right click on the right hand side where you see your form and add a second form. Then just decorate it a bit and you are done.

Basically the *IF* dialog is just a set of instructions so we are basically telling VB6 if the text in textbox 1 & 2 match the given information then we will hide the login form and make the second form visible, or else we show a message box displaying an error message.

*_Using progress bars_:*
Choose a standard exe form, then right click on the left hand toolbar and click components, then scroll down to "Microsoft Windows Common Controls 6" and select it and press OK.

Now you will see some new tools find the progress bar and insert it onto your form, now drag a timer onto there as well. Depending on what you would like to use the progress bar for you may want to do this different so any questions PM me and I'll help as best I can. But for now we will just make it go from left to right, so double click on the timer and type in this.


---Quote---
ProgressBar1.Value = ProgressBar1 +1
---End Quote---
That will make the progress bar go up by 1, now on the timer change the interval value to 20 or what ever you want(remember that the timer goes in milliseconds so 1000 = 1 second, this is a quick demo so this will make the progress bar go straight from left to right).

Now you want to put on another timer and set the interval to 5 and put the following code onto it(double click the timer)


---Quote---
If ProgressBar1.Value = 99 Then
ProgressBar1.Value = 0
End If
---End Quote---
The reason this timer is set at 5 is because the refresh has to be faster then the timer that is powering the progress bar. Now hit start and watch your bar go!.

*_Displaying local IP_:*
Choose a standard exe form, then add a text box and a label, now on the label change the caption from the right hand side menu to "Local IP" or what ever you want it to say. Clear the text from the text box as well then right click the tool bar menu on the left and go to components and locate "Microsoft win sock control" and activate it and press OK.

Now you have to double click the main form(the thing you put your text box and label onto) and then write this into the function bit.


---Quote---
text1.text = winsock1.localIP
---End Quote---
As a reminder any code that is put into the form itself is automatically loaded at start up.

I will update this more later and add some pictures, if there is something you don't get then post up and I'll try to make it more clearer.]]></description>
			<content:encoded><![CDATA[<div>Seen a guy post a tutorial on VB2008 web browser so I thought I would post up some basic things you can do in VB6.<br />
<br />
<font color="Blue"><b><u>Log in screen</u>:</b></font><br />
Choose a standard exe, then add two text boxes and a command button. Set it out how you would like it, then double click the command button and enter the text below into it.<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				if text1.text = &quot;username&quot; and text2.text = &quot;password&quot; then<br />
form1.hide<br />
form2.show<br />
else msgbox &quot;Wrong information try again.&quot;<br />
end if
			
			<hr />
		</td>
	</tr>
	</table>
</div>Where &quot;username&quot; &amp; &quot;password&quot; you will want to change, then right click on the right hand side where you see your form and add a second form. Then just decorate it a bit and you are done.<br />
<br />
Basically the <b>IF</b> dialog is just a set of instructions so we are basically telling VB6 if the text in textbox 1 &amp; 2 match the given information then we will hide the login form and make the second form visible, or else we show a message box displaying an error message.<br />
<br />
<font color="Blue"><b><u>Using progress bars</u>:</b></font><br />
Choose a standard exe form, then right click on the left hand toolbar and click components, then scroll down to &quot;Microsoft Windows Common Controls 6&quot; and select it and press OK.<br />
<br />
Now you will see some new tools find the progress bar and insert it onto your form, now drag a timer onto there as well. Depending on what you would like to use the progress bar for you may want to do this different so any questions PM me and I'll help as best I can. But for now we will just make it go from left to right, so double click on the timer and type in this.<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				ProgressBar1.Value = ProgressBar1 +1
			
			<hr />
		</td>
	</tr>
	</table>
</div>That will make the progress bar go up by 1, now on the timer change the interval value to 20 or what ever you want(remember that the timer goes in milliseconds so 1000 = 1 second, this is a quick demo so this will make the progress bar go straight from left to right).<br />
<br />
Now you want to put on another timer and set the interval to 5 and put the following code onto it(double click the timer)<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				If ProgressBar1.Value = 99 Then<br />
ProgressBar1.Value = 0<br />
End If
			
			<hr />
		</td>
	</tr>
	</table>
</div>The reason this timer is set at 5 is because the refresh has to be faster then the timer that is powering the progress bar. Now hit start and watch your bar go!.<br />
<br />
<font color="Blue"><b><u>Displaying local IP</u>:</b></font><br />
Choose a standard exe form, then add a text box and a label, now on the label change the caption from the right hand side menu to &quot;Local IP&quot; or what ever you want it to say. Clear the text from the text box as well then right click the tool bar menu on the left and go to components and locate &quot;Microsoft win sock control&quot; and activate it and press OK.<br />
<br />
Now you have to double click the main form(the thing you put your text box and label onto) and then write this into the function bit.<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				text1.text = winsock1.localIP
			
			<hr />
		</td>
	</tr>
	</table>
</div>As a reminder any code that is put into the form itself is automatically loaded at start up.<br />
<br />
I will update this more later and add some pictures, if there is something you don't get then post up and I'll try to make it more clearer.</div>

]]></content:encoded>
			<category domain="http://www.consolespot.net/forums/pc-software-hardware-mods/"><![CDATA[PC Software, Hardware & Mods]]></category>
			<dc:creator>Konkor</dc:creator>
			<guid isPermaLink="true">http://www.consolespot.net/forums/pc-software-hardware-mods/27631-tutorial-vb-6-basic-stuff.html</guid>
		</item>
		<item>
			<title>Handy PC Software</title>
			<link>http://www.consolespot.net/forums/pc-software-hardware-mods/27618-handy-pc-software.html</link>
			<pubDate>Wed, 18 Nov 2009 23:01:54 GMT</pubDate>
			<description><![CDATA[I usually come to sites seeing people ask for software that will help speed up your computer or let you download YouTube videos. Well in this thread, I'll be posting some alternatives to the over priced, bloated commercial software here.

I'll update it as soon as I find the software. If you'd like to contribute something, post a link for it and I'll add it. Please make sure to include the price.

Note: Don't post anything like TuneUp or Norton.

*Downloaders

*Orbit Downloader (http://www.orbitdownloader.com/download.htm): This handy program allows you to download rich media (Flash videos, Flash games, etc.) alongside with other crap. It can also be used as a very decent download accelerator. Price: Free

Free Studio (http://dvdvideosoft.com/downloads/download-free-studio.htm): This pack comes with some really nice, simple YouTube downloaders and media converters. Price: Free

MiPony (http://www.mipony.net/downloads/Mipony-Installer.exe): This program is a batch downloader for many popular sites including MegaUpload, RapidShare, 4Shared, and many others. Price: Free

*Media Players

*GOM Player (http://www.gomlab.com/eng/dnUpCount.php?utype=1): This is a universal media program similar to VLC Player. It supports all types of media and if it can't play a ceartain codec, it automatically downloads and installs it. Price: Free

K-Lite Mega Codec Pack (http://free-codecs.com/download_soft.php?d=5508&s=42): This amazing codec pack installs all known codecs for all players on your computer. It even comes with many DVD video tools. Price: Free

VLC Media Player (http://www.videolan.org/vlc/download-windows.html): This is arguably the most popular open source media player. It can play all codecs for both music and videos. Price: Free

*Tuners and Anti-Viruses
*
CCleaner (http://www.ccleaner.com/download/downloading): This is one of my most favorite programs. This nifty program will clean most of the temporary and junk files off of your computer, fix Registry errors, acts as an uninstaller, and can fix some Windows errors. Price: Free

Auslogics Disk Defrag (http://dw.com.com/redir?edId=3&siteId=4&oId=3000-2094_4-10567503&ontId=2094_4&spi=49e813486b3c82c6c7d44db6efaffa23&lop=link&tag=tdw_dltext&ltype=dl_dlnow&pid=11120455&mfgId=6267754&merId=6267754&pguid=--JrfgoPjGAAAF2ey0QAAAE7&destUrl=http%3A%2F%2Fdownload.cnet.com%2F3001-2094_4-10567503.html%3Fspi%3D49e813486b3c82c6c7d44db6efaffa23%26part%3Ddl-6267754): This program is a very nice and faster alternative to the Windows defrager. Price: Free

ESET Anti-Viruses (http://www.eset.com/landing_pages/landing_page1.php?CMP=KNC-g-ag&gclid=CMy9j9zQlZ4CFZla2godunWQ6g): In my opinion, thses are the best antis there are. The Smart Security comes with an amazing firewall that alerts you of any traffic and an astounding anti-virus. The NOD32 anti is basically the same minus the firewall. Price: Various

*CD Tools

*Alcohol 120% (http://download.cnet.com/Alcohol-120/3000-2646_4-10158124.html): This program is very similar to Daemon Tools but has a few more things. I really like it for its virtual drives, and burning and ripping tools. You can also create ISO files with it. Price: $50.00

IMG Burn (http://www.free-codecs.com/download_soft.php?d=5161&s=494): I love this program mainly because it's free. This is a great tool if you need to burn a a CD image really fast and efficiently. Price: Free]]></description>
			<content:encoded><![CDATA[<div>I usually come to sites seeing people ask for software that will help speed up your computer or let you download YouTube videos. Well in this thread, I'll be posting some alternatives to the over priced, bloated commercial software here.<br />
<br />
I'll update it as soon as I find the software. If you'd like to contribute something, post a link for it and I'll add it. Please make sure to include the price.<br />
<br />
Note: Don't post anything like TuneUp or Norton.<br />
<br />
<b>Downloaders<br />
<br />
</b><a href="http://www.orbitdownloader.com/download.htm" target="_blank">Orbit Downloader</a>: This handy program allows you to download rich media (Flash videos, Flash games, etc.) alongside with other crap. It can also be used as a very decent download accelerator. Price: Free<br />
<br />
<a href="http://dvdvideosoft.com/downloads/download-free-studio.htm" target="_blank">Free Studio</a>: This pack comes with some really nice, simple YouTube downloaders and media converters. Price: Free<br />
<br />
<a href="http://www.mipony.net/downloads/Mipony-Installer.exe" target="_blank">MiPony</a>: This program is a batch downloader for many popular sites including MegaUpload, RapidShare, 4Shared, and many others. Price: Free<br />
<br />
<b>Media Players<br />
<br />
</b><a href="http://www.gomlab.com/eng/dnUpCount.php?utype=1" target="_blank">GOM Player</a>: This is a universal media program similar to VLC Player. It supports all types of media and if it can't play a ceartain codec, it automatically downloads and installs it. Price: Free<br />
<br />
<a href="http://free-codecs.com/download_soft.php?d=5508&amp;s=42" target="_blank">K-Lite Mega Codec Pack</a>: This amazing codec pack installs all known codecs for all players on your computer. It even comes with many DVD video tools. Price: Free<br />
<br />
<a href="http://www.videolan.org/vlc/download-windows.html" target="_blank">VLC Media Player</a>: This is arguably the most popular open source media player. It can play all codecs for both music and videos. Price: Free<br />
<br />
<b>Tuners and Anti-Viruses<br />
</b><br />
<a href="http://www.ccleaner.com/download/downloading" target="_blank">CCleaner</a>: This is one of my most favorite programs. This nifty program will clean most of the temporary and junk files off of your computer, fix Registry errors, acts as an uninstaller, and can fix some Windows errors. Price: Free<br />
<br />
<a href="http://dw.com.com/redir?edId=3&amp;siteId=4&amp;oId=3000-2094_4-10567503&amp;ontId=2094_4&amp;spi=49e813486b3c82c6c7d44db6efaffa23&amp;lop=link&amp;tag=tdw_dltext&amp;ltype=dl_dlnow&amp;pid=11120455&amp;mfgId=6267754&amp;merId=6267754&amp;pguid=--JrfgoPjGAAAF2ey0QAAAE7&amp;destUrl=http%3A%2F%2Fdownload.cnet.com%2F3001-2094_4-10567503.html%3Fspi%3D49e813486b3c82c6c7d44db6efaffa23%26part%3Ddl-6267754" target="_blank">Auslogics Disk Defrag</a>: This program is a very nice and faster alternative to the Windows defrager. Price: Free<br />
<br />
<a href="http://www.eset.com/landing_pages/landing_page1.php?CMP=KNC-g-ag&amp;gclid=CMy9j9zQlZ4CFZla2godunWQ6g" target="_blank">ESET Anti-Viruses</a>: In my opinion, thses are the best antis there are. The Smart Security comes with an amazing firewall that alerts you of any traffic and an astounding anti-virus. The NOD32 anti is basically the same minus the firewall. Price: Various<br />
<br />
<b>CD Tools<br />
<br />
</b><a href="http://download.cnet.com/Alcohol-120/3000-2646_4-10158124.html" target="_blank">Alcohol 120%</a>: This program is very similar to Daemon Tools but has a few more things. I really like it for its virtual drives, and burning and ripping tools. You can also create ISO files with it. Price: $50.00<br />
<br />
<a href="http://www.free-codecs.com/download_soft.php?d=5161&amp;s=494" target="_blank">IMG Burn</a>: I love this program mainly because it's free. This is a great tool if you need to burn a a CD image really fast and efficiently. Price: Free</div>

]]></content:encoded>
			<category domain="http://www.consolespot.net/forums/pc-software-hardware-mods/"><![CDATA[PC Software, Hardware & Mods]]></category>
			<dc:creator>Joomla12</dc:creator>
			<guid isPermaLink="true">http://www.consolespot.net/forums/pc-software-hardware-mods/27618-handy-pc-software.html</guid>
		</item>
		<item>
			<title>Hiding My IP Address</title>
			<link>http://www.consolespot.net/forums/pc-software-hardware-mods/27336-hiding-my-ip-address.html</link>
			<pubDate>Mon, 02 Nov 2009 18:27:42 GMT</pubDate>
			<description>i wanna know some software i could use to hide my ip .....</description>
			<content:encoded><![CDATA[<div>i wanna know some software i could use to hide my ip .....</div>

]]></content:encoded>
			<category domain="http://www.consolespot.net/forums/pc-software-hardware-mods/"><![CDATA[PC Software, Hardware & Mods]]></category>
			<dc:creator>Kalitrius</dc:creator>
			<guid isPermaLink="true">http://www.consolespot.net/forums/pc-software-hardware-mods/27336-hiding-my-ip-address.html</guid>
		</item>
		<item>
			<title>RSS feeds</title>
			<link>http://www.consolespot.net/forums/pc-software-hardware-mods/27163-rss-feeds.html</link>
			<pubDate>Sun, 25 Oct 2009 14:53:34 GMT</pubDate>
			<description>Complete noob to RSS feeds. RSS receiver-reader-whateverthefuckitis recommendations? 

As a bonus, MW2 screenie:
Image: http://www.playstationuniversity.com/wp-content/uploads/wppa/35.jpg </description>
			<content:encoded><![CDATA[<div>Complete noob to RSS feeds. RSS receiver-reader-whateverthefuckitis recommendations? <br />
<br />
As a bonus, MW2 screenie:<br />
<div id="spoiler2"><div><input type="button" value="Show Spoiler!" style="width:100px;font-size:12px;margin:10px;padding:0px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')['show'].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')['show'].style.display = ''; this.parentNode.parentNode.getElementsByTagName('div')['hide'].style.display = 'none'; this.innerText = ''; this.value = 'Hide Spoiler!'; } else { this.parentNode.parentNode.getElementsByTagName('div')['show'].style.display = 'none'; this.parentNode.parentNode.getElementsByTagName('div')['hide'].style.display = ''; this.innerText = ''; this.value = 'Show Spoiler!'; }" />
<div id="show" style="background-image:url(http://img166.imageshack.us/img166/4845/12927000vu6.gif); display: none; background-color:transparent; background-repeat:repeat; margin: 0px;border-style:solid;border-width:1px; padding: 4px; width:98%">
<img src="http://www.playstationuniversity.com/wp-content/uploads/wppa/35.jpg" border="0" alt="" /></div>
<div id="hide"></div></div></div></div>

]]></content:encoded>
			<category domain="http://www.consolespot.net/forums/pc-software-hardware-mods/"><![CDATA[PC Software, Hardware & Mods]]></category>
			<dc:creator>Akira</dc:creator>
			<guid isPermaLink="true">http://www.consolespot.net/forums/pc-software-hardware-mods/27163-rss-feeds.html</guid>
		</item>
	</channel>
</rss>
