<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Internet World &#187; How To</title>
	<atom:link href="http://www.net-func.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.net-func.com</link>
	<description>Information &#38; Communication Technology</description>
	<lastBuildDate>Thu, 22 Mar 2012 13:43:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<image>
<link>http://www.net-func.com</link>
<url>http://www.net-func.com/wp-content/mbp-favicon/Internet-icon.png</url>
<title>Internet World</title>
</image>
		<item>
		<title>Create the Dictionary Object&#8230;. Please Consider</title>
		<link>http://www.net-func.com/how-to/create-the-dictionary-object-please-consider/</link>
		<comments>http://www.net-func.com/how-to/create-the-dictionary-object-please-consider/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 06:31:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[dictionary]]></category>
		<category><![CDATA[vbscript]]></category>

		<guid isPermaLink="false">http://net-func.com/?p=437</guid>
		<description><![CDATA[Creating the dictionary Create a dictionary using VBscript Okay, before we&#8217;re talk about the dictionary, I&#8217;ll admit I&#8217;m a bit of a fan of the Array. You either love or hate an Array. People who dislike the Array will often opt for a Collection instead. Other languages do provide a really cool object called a [...]]]></description>
			<content:encoded><![CDATA[<h2>Creating the dictionary</h2>
<h3>Create a dictionary using VBscript</h3>
<p>Okay, before we&#8217;re talk about the <strong>dictionary</strong>, I&#8217;ll admit I&#8217;m a bit of a fan of the Array. You either love or hate an Array. People who dislike the Array will often opt for a Collection instead. Other languages do provide a really cool object called a Hash Table. This is like a Collection that behaves like a Collection combined with an Array with some extra handy methods. VBA does not have this but VBScript does provide an object, which is cool, and we can make use of this object within our VBA <a href="http://www.net-func.com/computer/computer-security-encryption-becoming-more-vital/">environment</a>. To build a the object do the following:</p>
<p>Dim my_dictionary as Object<br />
Set my_dictionary = CreateObject (&#8220;Scripting.Dictionary&#8221;)</p>
<p>Voila! We have a dicti-o-nary. What can we do with it? We can add items, check for the existence of items, return an array of keys, return an array of items, set how a dicti-o-nary compares keys and get the count and so on. An example:</p>
<p>&#8216;First create the Object<br />
Dim my_dictionary as Object<br />
Set my_dictionary = CreateObject (&#8220;Scripting.Dictionary&#8221;)</p>
<p><img class="alignleft size-full wp-image-1657" title="dictionary" src="http://www.net-func.com/wp-content/uploads/dictnry.gif" alt="dictionary" width="155" height="200" /></p>
<p><span id="more-437"></span></p>
<p>&#8216;When adding an object or value to a this you put the key first and the actual value or object second. The key is mandatory and you cannot add items without it.<br />
my_dicti onary.Add &#8220;Key 1&#8243;, &#8220;Value 1&#8243;<br />
my_dicti onary.Add &#8220;Key 2&#8243;, &#8220;Value 2&#8243;<br />
my_dicti onary.Add &#8220;Key 3&#8243;, &#8220;Value 3&#8243;<br />
my_dicti onary.Add &#8220;Key 4&#8243;, &#8220;Value 4&#8243;</p>
<p>&nbsp;</p>
<p>You couldn&#8217;t do that with a collection! In a collection you would have to remove one item and add another, thus losing the order or your items. A dictionary behaves like an Array in this respect. What if we were not sure there was a key called &#8220;Key 3&#8243; within the object and wanted to avoid an error. Again, easy, we just use the Exists method of the object:</p>
<p>if my_dictionary.Exists(&#8220;Key 3&#8243;) then<br />
my_dictionary.Item(&#8220;Key 3&#8243;) = &#8220;Zebra&#8221;<br />
else<br />
my_dictionary.Add &#8220;Key 3&#8243;, &#8220;Zebra&#8221;<br />
end if</p>
<p>If you want to iterate through the items in a dicti-o-nary, you can&#8217;t use an integer counter as you would an Array or Collection but you can use a method to do so:</p>
<p>&#8216;Iterate through the array of items. These items can include objects as well.<br />
Dim separate_item as Variant<br />
For Each separate_item in items<br />
MsgBox separate_item<br />
Next separate_item</p>
<p>These are the basics. I&#8217;ll look at the CompareMode method in un minuto. The object is a real advantage when we need to build a Collection of Collections or a Class Collection. For example; say we had to collect data on spies and their current missions. Usually we would have to create a Class Object called Spy and hold a Private or Public Collection within the class to which we would add their missions. One class too many (A Collection is a Class)! Let&#8217;s use a an object instead&#8230;</p>
<p>Dim my_dictionary As Object Dim missions As Collection Dim spy_name As String Dim keys, key As Variant Set my_dictionary = CreateObject(&#8220;Scripting.Dictionary&#8221;)</p>
<p>&#8216;Add three lots of spies.<br />
Set missions = New Collection<br />
spy_name = &#8220;Alexander Poligraphovich&#8221;<br />
missions.Add &#8220;Vladivostok&#8221;<br />
missions.Add &#8220;Ukraine&#8221;<br />
missions.Add &#8220;Beijing&#8221;<br />
my_dictionary.Add spy_name, missions</p>
<p>spy_name = &#8220;Mohammed Ramadan&#8221;<br />
Set missions = New Collection<br />
missions.Add &#8220;Munich&#8221;<br />
missions.Add &#8220;Tehran&#8221;<br />
missions.Add &#8220;Sydney&#8221;<br />
my_dictionary.Add spy_name, missions</p>
<p>spy_name = &#8220;Sri FitzPatrick&#8221;<br />
Set missions = New Collection<br />
missions.Add &#8220;Dublin&#8221;<br />
missions.Add &#8220;San Francisco&#8221;<br />
my_dictionary.Add spy_name, missions</p>
<p>keys = my_dictionary.Keys<br />
For Each key In Keys<br />
MsgBox key &amp; vbCrLf &amp; _<br />
my_dictionary(key).item(1) &amp; vbCrLf &amp; _<br />
my_dictionary(key).item(2) &amp; vbCrLf &amp; _<br />
my_dictionary(key).item(3)<br />
Next key</p>
<p>On this example we don&#8217;t even get to the Msgbox, instead we get an error stating &#8220;This Key is already associated with an element of this collection.&#8221;. This stops two keys being added that have the same name. vbBinaryCompare behaves the same way as the first example does (it is the default) and vbDatabaseCompare.Well I read what it did once and never had to remember it again! You can find explanations for these, albeit very succinct, within the MS Help in Access, or better still Google it.</p>
<p>Hopefully this gives you an extra tool alongside the Collection or Array and some ideas on future use. A Dictionary makes code structure cleaner and more humanly understandable and this VBScript tool will really pay dividends.</p>
<div class="ce4-share" style="margin:10px 0"><script type="text/javascript"><!--
		document.write('<div class="g-plusone" href="http://www.net-func.com/how-to/create-the-dictionary-object-please-consider/" data-size="medium" data-count="true"></div>');
		-->
		</script><a class="twitter-share-button" data-count="horizontal" data-text="Create the Dictionary Object&#8230;. Please Consider" data-url="http://www.net-func.com/how-to/create-the-dictionary-object-please-consider/" data-via="Internet World" href="http://twitter.com/share"></a><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.net-func.com/how-to/create-the-dictionary-object-please-consider/&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;send=false&amp;colorscheme=light" style="border:none; overflow:hidden; width:90px; height:21px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.net-func.com/how-to/create-the-dictionary-object-please-consider/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create Digital Photo Album with PowerPoint</title>
		<link>http://www.net-func.com/how-to/create-digital-photo-album-with-powerpoint/</link>
		<comments>http://www.net-func.com/how-to/create-digital-photo-album-with-powerpoint/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 06:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[digital album]]></category>
		<category><![CDATA[photo album]]></category>
		<category><![CDATA[powerpoint]]></category>

		<guid isPermaLink="false">http://net-func.com/?p=425</guid>
		<description><![CDATA[A digital photo album is very unique and cutomizable Learn how to create a digital photo album You may have precious photographs or important business pictures from time to time and a PowerPoint digital photo album is just a presentation that helps you store and display these photos in a digital way. Why we want [...]]]></description>
			<content:encoded><![CDATA[<h2>A digital photo album is very unique and cutomizable</h2>
<h3>Learn how to create a digital photo album</h3>
<p>You may have precious photographs or important business pictures from time to time and a <strong>PowerPoint digital photo album</strong> is just a <a href="http://www.net-func.com/software/the-many-uses-of-web-conference-software/">presentation</a> that helps you store and display these photos in a digital way.</p>
<p>Why we want to make a digital photo album with PowerPoint?</p>
<p>1. PowerPoint is available on most computers. You don’t need to buy other software to make a photo album. It is easy and cost-effective to do it with PowerPoint.</p>
<p>2. Show your photos according to the sequence you like, make your memories more beautiful.</p>
<p>3. Besides photos, you can also add effects such as attention-grabbing slide transitions, colorful backgrounds, specific picture layouts and more into your PowerPoint photo album.</p>
<p>4. A photo album that is made in PowerPoint is easy for wide sharing.</p>
<p><img class="alignleft size-full wp-image-1634" title="digital photo album" src="http://www.net-func.com/wp-content/uploads/Portable-3-5-Digital-Photo-Album-with-MP3-Player-DP350-.jpg.png" alt="digital photo album" width="200" height="200" /></p>
<p><span id="more-425"></span></p>
<p>Below is the step of how to create an attractive digital photo album with PowerPoint 2007 in 6 steps:</p>
<p>1. Open PowerPoint, on the Insert tab, click the Photo Album button, in the drop-down list, there is the New Photo Album option.</p>
<p>2. Insert pictures</p>
<p>Click File/Disc button. Choose pictures you want to include in the album from folders on your hard disc. (Tip: you can import several pictures to the album at a time)</p>
<p>In the photo album dialogue box, you will see the selected pictures in the Picture in Album list. You can view each picture by clicking it. And you can also change the order of a picture by choosing it and clicking the Move Up or Move Down button. Below the preview of the picture, you will be able to see six buttons, which you can use to adjust the rotation, contrast and brightness of each picture.</p>
<p>3. Create album layout</p>
<p>Under Album Layout, by clicking Picture layout arrow, and then in the drop-down list, you can choose the layout format you like. By clicking Frame Shape arrow, in the drop-down list of it you can choose the frame you want to add to your pictures.</p>
<p>4.Create title and subtitle for your album</p>
<p>After you have clicked Create button, on Slide 1, type the title you want for your album in the place of the words of Photo Album.</p>
<p>Then if necessary, give your album a subtitle by inputting it in the place of your user name.</p>
<p>Display Slide 2, click the title placeholder, and then type the title for this slide.</p>
<p>5. Edit the photo album</p>
<p>On the Insert tab, click the Photo Album arrow, and then click Edit Photo Album.</p>
<p>In the Edit Photo Album dialog box, under Picture Options, select Captions below All pictures box, and then click Update.</p>
<p>Now you can edit the file name below each picture with a suitable caption.</p>
<p>6. Apply a theme to your album</p>
<p>On the Design tab of PowerPoint, in the Themes area, select a theme that meets the need of your album.</p>
<p>Or you can also customize the look of your album by choosing a theme from your computer.</p>
<p>Now you have finished making your own PowerPoint photo album. Want to e-mail it to your friends or colleague? Want to share it with others? Or you want to keep it for permanent store? Below are a few tips about how to do this.</p>
<p>1. E-mail your photo album to others</p>
<p>Maybe you will find that the photo album is in a huge size due to the mountainous images added in it, and you can’t send it properly via e-mail. In order to reduce the size of it, you can use compressed pictures in your photo album.</p>
<p>How: Open bitmap image with a program that converts images and save the image in one of the following graphic file formats: jpg, gif, tif, wmf. Once your image has been saved under another format, you can reinsert it into your photo album.</p>
<p>Here is an article tells how to reduce the file size of a PowerPoint</p>
<p>2. Share your photo album with others</p>
<p>You can upload your beautiful photo album to some online sharing websites, such as YouTube. Let more people enjoy it or let your friends view your photo album online.</p>
<p>How: Convert your Photo album to a certain format that YouTube accepts. Then upload it with your YouTube account.</p>
<p>Tool: Acoolsoft PPT2Video Converter</p>
<p>It helps you easily convert your photo album to WMV, AVI, MOV, and MPEG formats that can be accepted by YouTube. After the conversion, you can directly upload it.</p>
<p>Click here to get the tutorial about how to do it</p>
<p>3. Keep your photo album for permanent store</p>
<p>The photo album you make maybe valuable and meaningful. In order to store it and prevent it from being edited by others, so far the best way I know maybe is to record it on a DVD disc. As we know things stored in a digital way could be easily lost.</p>
<p>How: Use some professional tool to help you burn your digital photo album to DVD such as the PowerPoint to DVD tool from Acoolsoft.<br />
Click here to get the tutorial about how to do it</p>
<p>To view the finished PowerPoint digital photo album is an enjoyable thing. The process of making it is also interesting. So, when are you going to create your next digital photo album?</p>
<div class="ce4-share" style="margin:10px 0"><script type="text/javascript"><!--
		document.write('<div class="g-plusone" href="http://www.net-func.com/how-to/create-digital-photo-album-with-powerpoint/" data-size="medium" data-count="true"></div>');
		-->
		</script><a class="twitter-share-button" data-count="horizontal" data-text="Create Digital Photo Album with PowerPoint" data-url="http://www.net-func.com/how-to/create-digital-photo-album-with-powerpoint/" data-via="Internet World" href="http://twitter.com/share"></a><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.net-func.com/how-to/create-digital-photo-album-with-powerpoint/&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;send=false&amp;colorscheme=light" style="border:none; overflow:hidden; width:90px; height:21px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.net-func.com/how-to/create-digital-photo-album-with-powerpoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Download HD Videos on Vuze</title>
		<link>http://www.net-func.com/how-to/free-download-hd-videos-on-vuze/</link>
		<comments>http://www.net-func.com/how-to/free-download-hd-videos-on-vuze/#comments</comments>
		<pubDate>Sun, 03 May 2009 02:26:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[download flash video]]></category>
		<category><![CDATA[hd videos]]></category>

		<guid isPermaLink="false">http://net-func.com/?p=266</guid>
		<description><![CDATA[Do you want to download HD videos? Couldn&#8217;t download HD videos from Youtube? YouTube is now supporting true HD 1080p, users now can upload and download HD videos and share those glorious High Definition quality videos with friends. Previously, the maximum upload encoding was stuck at 720p.  So now resolutions will go from 1280×720 up to 1920×1080 which [...]]]></description>
			<content:encoded><![CDATA[<h2>Do you want to download HD videos?</h2>
<h3>Couldn&#8217;t download HD videos from <a href="http://www.youtube.com" rel="nofollow">Youtube</a>?</h3>
<p>YouTube is now supporting true HD 1080p, <a href="http://www.net-func.com/blogging/how-to-be-a-successful-blogger/">users</a> now can <strong>upload and download HD videos</strong> and share those glorious High Definition quality videos with friends. Previously, the maximum upload encoding was stuck at 720p.  So now resolutions will go from 1280×720 up to 1920×1080 which is really considered to be true high-definition. Moreover, YouTube is going to re-encode any previously uploaded video that was 1080p-capable.</p>
<p>Source : <a href="http://www.imtoo.com/download-youtube-video/how-to-download-hd-youtube-free.html" rel="nofollow">http://www.imtoo.com/download-youtube-video/how-to-download-hd-youtube-free.html</a></p>
<p>And for some video lovers who are willing to watch YouTube videos offline, one frequently asked question is &#8211; <strong>How to download HD YouTube videos to computer hard drive</strong>. This page is just for you. Follow our guide and try now.</p>
<p><strong>Tools Required:</strong></p>
<ul>
<li><a href="http://www.imtoo.com/download-youtube-video.html" rel="nofollow"><strong><em><span style="color: #0000ff;">YouTube HD Downloader</span></em></strong></a> - Batch download YouTube videos including High-definition YouTube videos to computer hard drive.</li>
<li><a href="http://www.imtoo.com/download-youtube-video-mac.html" rel="nofollow"><strong><em><span style="color: #0000ff;">YouTube HD Downloader for Mac</span></em></strong></a> &#8211; Batch download YouTube videos and High Definition videos to Mac computer.</li>
</ul>
<p><strong>Guide: How to download HD YouTube videos step by step</strong></p>
<p><img class="alignleft size-full wp-image-1301" title="download hd videos" src="http://www.net-func.com/wp-content/uploads/shakira-she-wolf-music-video.jpg" alt="download hd videos" width="301" height="200" /></p>
<p><strong><span id="more-266"></span></strong></p>
<p><strong>Step 1:</strong> Download the YouTube HD Downloader software according to your computer OS, install and launch it.</p>
<p><strong>Step 2:</strong> Open your web browser, go to YouTube.com, search HD videos you&#8217;d like to download on YouTube.com.</p>
<p><strong>Step 3:</strong> Create a New task. Click &#8220;New Download&#8221; button on the toolbar to pop up the &#8220;New Download&#8221; window.</p>
<p>Tip 1: Go to the address bar, copy and paste the video URL into the &#8220;URL&#8221; textbox.</p>
<p>Tip 2: Click &#8220;Browse&#8230;&#8221; button to select a existing folder or create a new folder for saving your downloaded videos.</p>
<p>Tip 3: Choose the Start Now option to begin your task right now or choose the Manual option to start your task anytime you want.</p>
<p><strong>Step 4:</strong> Start another task. Repeat the <strong>Step 3</strong> to download another HD YouTube video.</p>
<p>Okay, done.</p>
<p>Try Vuze, the HD Network for all kind of videos, just go to <a href="http://www.vuze.com" rel="nofollow">Vuze.com</a> and look for the video that you awnt to download, it&#8217;s free of course. But, don&#8217;t forget to install the Vuze downloader before. You may download HD videos but you aren&#8217;t allowed to commercialized it without any permission.</p>
<div class="ce4-share" style="margin:10px 0"><script type="text/javascript"><!--
		document.write('<div class="g-plusone" href="http://www.net-func.com/how-to/free-download-hd-videos-on-vuze/" data-size="medium" data-count="true"></div>');
		-->
		</script><a class="twitter-share-button" data-count="horizontal" data-text="Free Download HD Videos on Vuze" data-url="http://www.net-func.com/how-to/free-download-hd-videos-on-vuze/" data-via="Internet World" href="http://twitter.com/share"></a><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.net-func.com/how-to/free-download-hd-videos-on-vuze/&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;send=false&amp;colorscheme=light" style="border:none; overflow:hidden; width:90px; height:21px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.net-func.com/how-to/free-download-hd-videos-on-vuze/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Faster Connection With OpenDNS</title>
		<link>http://www.net-func.com/how-to/faster-connection-with-opendns/</link>
		<comments>http://www.net-func.com/how-to/faster-connection-with-opendns/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 12:12:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[faster connection]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[opendns]]></category>

		<guid isPermaLink="false">http://net-func.com/?p=19</guid>
		<description><![CDATA[Get a faster connection with some tweaks on DNS setting Learn how OpenDNS can make you feel the sensastion of a faster connection Did you have a problem with your internet connection and want a faster connection? Take a long time to open webpages? Try to enlarge the DNS cache. Caching name servers, also called [...]]]></description>
			<content:encoded><![CDATA[<h2>Get a faster connection with some tweaks on DNS setting</h2>
<h3>Learn how OpenDNS can make you feel the sensastion of a faster connection</h3>
<p>Did you have a problem with your internet connection and want a <strong>faster connection</strong>? Take a long time to open webpages? Try to enlarge the DNS cache. Caching name servers, also called <em>DNS caches</em>, store DNS query results for a period of time determined in the configuration (time-to-live) of each domain name record. DNS caches improve the efficiency of the DNS by reducing DNS traffic across the Internet, and by reducing load on authoritative name servers, particularly root name servers. Because they can answer questions more quickly, they also increase the performance of end-user applications that use the DNS. You can change the DNS server to enlarge your DNS cache. There are a free DNS server in the network that provide you a <a href="http://www.net-func.com/tips/speed-up-download-with-download-managers/">faster connection</a>. It&#8217;s called OpenDNS, it can speed up your internet connection by enlarge the DNS cache. You can try this if you tired with slow connection that make you disappointed.</p>
<p>First, select Control Panel from Start menu. Click Network Connections and choose your connection. Right click and choose properties. Select Internet Protocol (TCP/IP) and click properties. Write down your current DNS Settings before attempting the last step, this step is important to return your old settings if you want it for any reason.</p>
<p><img class="alignleft size-full wp-image-803" title="faster connection" src="http://www.net-func.com/wp-content/uploads/3x_faster_fiber_connection.png" alt="faster connection" width="214" height="135" /></p>
<p><span id="more-30"></span></p>
<p>For preferred DNS server type 208.67.222.222 and for the alternate DNS server type 208.67.220.220 an click OK. To make sure you have success change the setting, go to <a href="http://welcome.opendns.com" rel="nofollow">welcome.opendns.com</a>. If you see a congratulation from the site, then you are success speeding up your connection for international network. But, if your connection didn&#8217;t get faster after all of this or maybe badly slowing down, you can change your DNS settings with the old one that you&#8217;ve write down. For further information click<a href="http://www.opendns.com" rel="nofollow"> www.opendns.com</a> for more details about getting a faster connection.</p>
<div class="ce4-share" style="margin:10px 0"><script type="text/javascript"><!--
		document.write('<div class="g-plusone" href="http://www.net-func.com/how-to/faster-connection-with-opendns/" data-size="medium" data-count="true"></div>');
		-->
		</script><a class="twitter-share-button" data-count="horizontal" data-text="Faster Connection With OpenDNS" data-url="http://www.net-func.com/how-to/faster-connection-with-opendns/" data-via="Internet World" href="http://twitter.com/share"></a><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.net-func.com/how-to/faster-connection-with-opendns/&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;send=false&amp;colorscheme=light" style="border:none; overflow:hidden; width:90px; height:21px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.net-func.com/how-to/faster-connection-with-opendns/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Download Video from YouTube and Convert it to Your Favorite format</title>
		<link>http://www.net-func.com/how-to/how-to-download-video-from-youtube-and-convert-it-to-your-favorite-format/</link>
		<comments>http://www.net-func.com/how-to/how-to-download-video-from-youtube-and-convert-it-to-your-favorite-format/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 12:01:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Converter]]></category>
		<category><![CDATA[download video from youtube]]></category>
		<category><![CDATA[Freeware]]></category>

		<guid isPermaLink="false">http://net-func.com/?p=13</guid>
		<description><![CDATA[Well, you want to download video from Youtube and other sites But, you don&#8217;t know how to download video from Youtube, right? OK, lot of people is trying download video that they like to see again in flash video sites, such as Youtube, Google Video, Metacafe, Vuze, and other sites. I&#8217;ll explain you the way [...]]]></description>
			<content:encoded><![CDATA[<h2>Well, you want to download video from Youtube and other sites</h2>
<h3>But, you don&#8217;t know how to download video from Youtube, right?</h3>
<p>OK, lot of people is trying <strong>download video</strong> that they like to see again in flash video sites, such as Youtube, Google Video, Metacafe, Vuze, and other sites. I&#8217;ll explain you the <a href="http://www.net-func.com/category/how-to/">way to download those videos</a> and watch it in you mobile phone, PSP, iPod, and the other devices or maybe you want to watch in your computer again. There are 2 steps, first download video and then convert it. I&#8217;ll explain the first one :<br />
1. First go to <a href="http://www.internetdownloadmanager.com" rel="nofollow">www.internetdownloadmanager.com</a> and download the latest version of this program, then exit your browser. Next, open the file you have downloaded. Install it, it&#8217;s called IDM. Actually, it is a download manager that speeds up your download speed up to 500%. It is usually speeds up 300%, but still pretty fast. But I usually use it for downloading flash videos from Youtube because it easy to use.<br />
2. After the installation, the programs will tell you that is a free trial version and you must register it with the registration code which is you can buy from the official site. But if you don&#8217;t want to purchase it, you can download the application with keygen or patch. Type &#8220;idm keygen download&#8221; or &#8220;idm patch download&#8221; in Google search engine. Or if you want fast you can go to the site at the end of this post. OK, the program has been installed, we&#8217;ll go through the second step.</p>
<p><img class="alignleft size-full wp-image-791" title="download video" src="http://www.net-func.com/wp-content/uploads/fdm_youtube.png" alt="download video" width="267" height="200" /></p>
<p><span id="more-28"></span><br />
Converting Video :<br />
1. All you need is video converter that you can grab easily in most software download sites. If you have an iPod ,PSP, or MP4 Player, I recommend you go to <a href="http://www.dvdvideosoft.com" rel="nofollow">www.dvdvideosoft.com</a> and download the latest version of this nice program. After the installation, you can download the other converter add-ons like PSP converter, iPod converter, and mobile phone converter. Or if you want more specific programs to convert videos to your programs and more advanced options such as framerate, resolution, bitrate, you can search in google with type in the search engine &#8220;psp video converter&#8221; and search. Oh, I forgot one more thing, if you have a PSP you can download the PSP Video Converter by this <a href="http://pspvc.nswardh.com" rel="nofollow">link</a>. But, before you install the program you must install Combined Community Codec Pack in the same site.<br />
2. Last, put your video to the devices folder and happy watching!</p>
<p>Note : If you want to play .flv videos with your computer, you must install the FLV player at brothersoft or download.com and type &#8220;flv player&#8221; then download the freeware.</p>
<p><a href="http://rapidshare.com/files/158393769/IDM.v5.15.Incl.Update.3.Patch-UNREAL.or.keygen-BRD_zyberakuma.rar" rel="nofollow">http://rapidshare.com/files/158393769/IDM.v5.15.Incl.Update.3.Patch-UNREAL.or.keygen-BRD_zyberakuma.rar</a></p>
<p>Nothing more fun than having a meal while your freeware download video for you.</p>
<div class="ce4-share" style="margin:10px 0"><script type="text/javascript"><!--
		document.write('<div class="g-plusone" href="http://www.net-func.com/how-to/how-to-download-video-from-youtube-and-convert-it-to-your-favorite-format/" data-size="medium" data-count="true"></div>');
		-->
		</script><a class="twitter-share-button" data-count="horizontal" data-text="How To Download Video from YouTube and Convert it to Your Favorite format" data-url="http://www.net-func.com/how-to/how-to-download-video-from-youtube-and-convert-it-to-your-favorite-format/" data-via="Internet World" href="http://twitter.com/share"></a><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.net-func.com/how-to/how-to-download-video-from-youtube-and-convert-it-to-your-favorite-format/&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;send=false&amp;colorscheme=light" style="border:none; overflow:hidden; width:90px; height:21px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.net-func.com/how-to/how-to-download-video-from-youtube-and-convert-it-to-your-favorite-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

