<?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 Multifunctioning &#187; tutorial</title>
	<atom:link href="http://net-func.com/category/tutorial/feed" rel="self" type="application/rss+xml" />
	<link>http://net-func.com</link>
	<description>Information about technology and internet</description>
	<lastBuildDate>Wed, 10 Mar 2010 00:00:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
<link>http://net-func.com</link>
<url>http://net-func.com/wp-content/uploads/USB-icon.png</url>
<title>Internet Multifunctioning</title>
</image>
		<item>
		<title>Create_the Dictionary Object&#8230;. Please Consider</title>
		<link>http://net-func.com/create_the-dictionary-object-please-consider</link>
		<comments>http://net-func.com/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[Computer]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[dictionary]]></category>

		<guid isPermaLink="false">http://net-func.com/?p=437</guid>
		<description><![CDATA[Okay, 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 Dictionary or Hash Table. This is like a Collection that behaves like a Collection [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, 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 Dictionary or 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 a Dictionary object, which is cool, and we can make use of this object within our VBA environment. To build a dictionary 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 dictionary. 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 dictionary compares keys and get the count and so on. An example:</p>
<p>&#8216;First create the Dictionary Object<br />
Dim my_dictionary as Object<br />
Set my_dictionary = CreateObject (&#8220;Scripting.Dictionary&#8221;)</p>
<p>&#8216;When adding an object or value to a dictionary 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_dictionary.Add &#8220;Key 1&#8243;, &#8220;Value 1&#8243;<br />
my_dictionary.Add &#8220;Key 2&#8243;, &#8220;Value 2&#8243;<br />
my_dictionary.Add &#8220;Key 3&#8243;, &#8220;Value 3&#8243;<br />
my_dictionary.Add &#8220;Key 4&#8243;, &#8220;Value 4&#8243;</p>
<p>So now we&#8217;ve added four values to the dictionary. Let&#8217;s do some things we cannot do cleanly or at all with a Collection. Say we want to replace &#8220;Value 3&#8243; with the name &#8220;Zebra&#8221;. Too easy!</p>
<p>my_dictionary.Item(&#8220;Key 3&#8243;) = &#8220;Zebra&#8221;</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 dictionary and wanted to avoid an error. Again, easy, we just use the Exists method of the dictionary 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>We might want to know how many items are in the dictionary, just use the Count method which is the same as the one in a collection.</p>
<p>MsgBox my_dictionary.Count</p>
<p>If you want to iterate through the items in a dictionary, you can&#8217;t use an integer counter as you would an Array or Collection but you can use two methods to do so:</p>
<p>&#8216;You can just grab the items from the dictionary like so:<br />
Dim items as Variant<br />
items = my_dictionary.Items</p>
<p>&#8216;Iterate through the array of items. These items can include objects aswell.<br />
Dim separate_item as Variant<br />
For Each separate_item in items<br />
MsgBox separate_item<br />
Next separate_item</p>
<p>&#8216;Or you can extract the keys and iterate through the items (which is another advantage over a Collection that does not give you it&#8217;s keys or let you know what they are)<br />
Dim keys as Variant<br />
keys = my_dictionary.Keys</p>
<p>&#8216;Iterate through the array of items. These items can include objects aswell.<br />
Dim key as Variant<br />
For Each key in keys<br />
MsgBox my_dictionary. Item(key)<br />
Next key</p>
<p>Too easy! To remove an item or all items you can use Remove and RemoveAll respectively:</p>
<p>my_dictionary.Remove(&#8220;Key 2&#8243;)</p>
<p>Or</p>
<p>my_dictionary.RemoveAll</p>
<p>These are the basics. I&#8217;ll look at the CompareMode method in un minuto. The Dictionary 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 spys 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 Dictionary 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 &#038; vbCrLf &#038; _<br />
my_dictionary(key).item(1) &#038; vbCrLf &#038; _<br />
my_dictionary(key).item(2) &#038; vbCrLf &#038; _<br />
my_dictionary(key).item(3)<br />
Next key</p>
<p>The CompareMode method lets you set how the dictionary compares it&#8217;s keys when looking for duplicates etc. There are four-compare modes vbBinaryCompare, vbTextCompare, vbDatabaseCompare (for MS Access only) and vbUseCompareOption (which uses the setting in the Option Compare statement at the top of a module). How can we use this? Say we add two values with the Keys of monkey and MONKEY&#8217; one in all lowercase and the other in all uppercase.</p>
<p>my_dictionary.Add &#8220;monkey&#8221;, &#8220;Giraffe&#8221;<br />
my_dictionary.Add &#8220;MONKEY&#8221;, &#8220;Elephant&#8221;<br />
MsgBox my_dictionary.Count</p>
<p>The MsgBox will show an item count of 2, because the two keys are essentially different. The dictionary is performing a binary comparison upon the keys so you can add more than one &#8216;monkey&#8217; as long as they have some difference in character case. What if we wanted the word monkey in all of it&#8217;s forms to be compared by name and not content? In other words we don&#8217;t want more than one &#8216;monkey&#8217; in the dictionary. We use CompareMode vbTextCompare:</p>
<p>my_dictionary.CompareMode = vbTextCompare<br />
my_dictionary.Add &#8220;monkey&#8221;, &#8220;Giraffe&#8221;<br />
my_dictionary.Add &#8220;MONKEY&#8221;, &#8220;Elephant&#8221;<br />
MsgBox my_dictionary.Count</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&#8230;.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. This VBScript tool will really pay dividends.</p>
]]></content:encoded>
			<wfw:commentRss>http://net-func.com/create_the-dictionary-object-please-consider/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Successful iPod Battery Replacement</title>
		<link>http://net-func.com/successful-ipod-battery-replacement</link>
		<comments>http://net-func.com/successful-ipod-battery-replacement#comments</comments>
		<pubDate>Sun, 22 Nov 2009 06:31:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[battery replacement]]></category>
		<category><![CDATA[ipod battery]]></category>

		<guid isPermaLink="false">http://net-func.com/?p=431</guid>
		<description><![CDATA[Almost everyone by now knows that the battery inside every Apple iPod has a finite life.
Apple Computer
will not leave you totally hanging – for $59 they will grudgingly accept your iPod and, after a few weeks, will send you a refurbished one back. Nevertheless, most people are not willing to give up the iPod that [...]]]></description>
			<content:encoded><![CDATA[<p>Almost everyone by now knows that the battery inside every Apple iPod has a finite life.</p>
<p>Apple Computer<br />
will not leave you totally hanging – for $59 they will grudgingly accept your iPod and, after a few weeks, will send you a refurbished one back. Nevertheless, most people are not willing to give up the iPod that they have grown to love in exchange for a used one with an unknown history, so they rightly choose to replace the battery in their iPod by themselves.</p>
<p>This can be a very affordable and feasible option for most people – with decent do-it-yourself battery replacement kits selling in the $20 to $40 range. And in most cases, the 3rd-party battery that you install will give you much greater playtime than the original, stock battery that came inside your iPod – a big plus.</p>
<p>Find a vendor that not only sells iPod batteries, but can also provide you with good tools, great instructions, and even better support. Avoid eBay fly-by-nights and hokey websites that sell cheap batteries and offer zero support. Installing a battery in your iPod is not the same thing as popping a new battery in your TV remote control, so do not proceed without the right tools and guidance in case you get in a jam.</p>
<p>iPod battery replacement seller ipodjuice.com is by far the category leader here, offering robust batteries, effective tools, detailed instructions with color photographs, and even customer support should you have any questions that aren’t already addressed in their written and online documentation.</p>
<p>Make sure that you get the right battery for your iPod model. iPod batteries physically vary in size and are not compatible between models (a battery for 4th Generation iPod will not fit, for example, inside an iPod mini). When shopping online, pay close attention to the color of the iPod being shown, the location of the navigation buttons, and the color of the ScrollWheel.</p>
<p>Before you grab a tool to change the battery in your iPod, find a clean, bright working space that is located in a non-carpeted area. You are going to be working with small connections and touching electrical components, and you will want to minimize chances of static electricity zapping your player.</p>
<p>This might seem basic, but read the directions that come with your battery replacement kit all the way through before proceeding. You are going to be in a hurry so that you can play music on your iPod once again, but rushing through the battery replacement process is ill advised. Take you time; look at every picture and read every word on the page – if you are unclear about any point, contact your vendor immediately for clarification before starting.</p>
<p>Plan to perform the iPod battery replacement process in one fell swoop. Do not start the project and stop halfway through. This not only increases the likelihood that you will skip a step, but may also cause unintended consequences. The iPod mini battery replacement process, for example, requires that you remove the two white top and bottom end caps. These end caps have adhesive underneath, and leaving these exposed for more than 20 minutes could cause the glue to dry out and prevent the end caps from sticking back in place.</p>
<p>Moreover, once you have connected the new battery, do not rush to close everything back up. Just like a mountain climber that has just reached the top of the peak – you are really just halfway done. Take your time and do not force any of the parts back together.</p>
<p>Once you have successfully installed your new iPod battery, you will be back to hours and hours of uninterrupted playtime once again</p>
]]></content:encoded>
			<wfw:commentRss>http://net-func.com/successful-ipod-battery-replacement/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Digital Photo Album with PowerPoint</title>
		<link>http://net-func.com/create-digital-photo-album-with-powerpoint</link>
		<comments>http://net-func.com/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[Computer]]></category>
		<category><![CDATA[tutorial]]></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[You may have precious photographs or important business pictures from time to time. A PowerPoint photo album is just a presentation that helps you store and display these photos in a digital way.
Why we want to make photo album with PowerPoint?
1. PowerPoint is available on most computers. You don’t need to buy other software to [...]]]></description>
			<content:encoded><![CDATA[<p>You may have precious photographs or important business pictures from time to time. A PowerPoint photo album is just a presentation that helps you store and display these photos in a digital way.</p>
<p>Why we want to make 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>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 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 photo album is an enjoyable thing. The process of making it is also interesting. So, when are you going to create your next photo album? Very soon, I presume.</p>
]]></content:encoded>
			<wfw:commentRss>http://net-func.com/create-digital-photo-album-with-powerpoint/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
