<?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>Bridge to Nova &#187; My Experience</title>
	<atom:link href="http://www.bridgetonova.com/category/my-experience/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bridgetonova.com</link>
	<description>Keep Your Mind Wide Open</description>
	<lastBuildDate>Sat, 05 Dec 2009 04:14:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to delete every other row in Excel</title>
		<link>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html</link>
		<comments>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html#comments</comments>
		<pubDate>Sat, 04 Jul 2009 06:03:18 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[MS Office]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html</guid>
		<description><![CDATA[Have you ever looking for option to delete every odd or even rows in Excel? Looking through menu after menu, hoping there’s some option hidden somewhere? Well, the bad news is that there’s no built-in function as of Excel 2007. You need to use some marco to do just that. Here’s the procedure. This procedure [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-7697226414384593";
//468x60, btn home page
google_ad_slot = "3068992652";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><p>Have you ever looking for option to delete every odd or even rows in Excel? Looking through menu after menu, hoping there’s some option hidden somewhere? </p>
<p>Well, the bad news is that there’s no built-in function as of Excel 2007. You need to use some marco to do just that. </p>
<p>Here’s the procedure. This procedure applies to all Excel versions from 97 to 2007, however I’ll provide screenshot using Excel 2007.</p>
<p>&#160;</p>
<ul>
<li>Open your Excel file. </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/samplesheet.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="sample sheet" border="0" alt="sample sheet" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/samplesheet_thumb.jpg" width="204" height="295" /></a> </p>
<ul>
<li>In Excel 2007, Go to Developer tab, click Visual Basic. (All other Excel versions, go to Tools menu -&gt; Marco –&gt; Visual Basic Editor) </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/excel2007developertab.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="excel 2007 developer tab" border="0" alt="excel 2007 developer tab" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/excel2007developertab_thumb.jpg" width="504" height="111" /></a> </p>
<p>&#160;</p>
<ul>
<li>Then in Visual Basic window, Insert Menu –&gt; Module </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/vbinsertmenu.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="vb insert menu" border="0" alt="vb insert menu" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/vbinsertmenu_thumb.png" width="384" height="181" /></a>&#160; </p>
<ul>
<li>After that copy and paste the following code into the module window. </li>
</ul>
<blockquote><pre>Sub Delete_Every_Other_Row()

   ' Dimension variables.
   Y = False              ' Change this to True if you want to
                          ' delete rows 1, 3, 5, and so on.
   I = 1
   Set xRng = Selection

   ' Loop once for every row in the selection.
   For xCounter = 1 To xRng.Rows.Count

       ' If Y is True, then...
       If Y = True Then

           ' ...delete an entire row of cells.
           xRng.Cells(I).EntireRow.Delete

       ' Otherwise...
       Else

           ' ...increment I by one so we can cycle through range.
           I = I + 1

       End If

       ' If Y is True, make it False; if Y is False, make it True.
       Y = Not Y

   Next xCounter

End Sub</pre>
</blockquote>
<ul>
<li>Go back to your excel workbook,&#160; Select the Cells that you want for alternative rows to delete. <em>Note : It is important to select the cells, if you select the whole column, Excel will most likely hang when you run Macro.</em> </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/selectcell.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="select cell" border="0" alt="select cell" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/selectcell_thumb.png" width="186" height="244" /></a> </p>
<p>&#160;</p>
<ul>
<li>After that, click Marcos under Developer tab in Excel 2007. (All other excel versions, Tools menu –&gt; Marcos ) You should see the dialog box as follow. Click on Run. </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/marcopopup.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="marco popup" border="0" alt="marco popup" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/marcopopup_thumb.png" width="384" height="384" /></a> </p>
<p>Bravo! That’s it! Hopefully Excel 2010 will have built-in function for this.&#160; </p>
<p>&#160;</p>
</p>
<p>Source : <a href="http://support.microsoft.com/kb/213610">Microsoft</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I like about WordPress over Blogger</title>
		<link>http://www.bridgetonova.com/2008/02/what-i-like-about-wordpress-over-blogger.html</link>
		<comments>http://www.bridgetonova.com/2008/02/what-i-like-about-wordpress-over-blogger.html#comments</comments>
		<pubDate>Fri, 01 Feb 2008 03:30:18 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[BtN related]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Experience]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2008/02/what-i-like-about-wordpress-over-blogger.html</guid>
		<description><![CDATA[As I&#8217;ve been on WordPress for about a month, let me share what I like about WordPress over Blogger. Many plugins available There are many advantages of WordPress. The main obvious thing is that many varieties of plugins. I just imagine what I want to do with my blog and google it with wordpress plugin, [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve been on WordPress for about a month, let me share what I like about WordPress over Blogger.</p>
<p><strong>Many plugins available</strong></p>
<p>There are many advantages of WordPress. The main obvious thing is that many varieties of plugins. I just imagine what I want to do with my blog and google it with wordpress plugin, BLAM! there&#8217;s always one available. In fact, the biggest headache for me is to choose the best suitable plugins.</p>
<p><strong>Access to root directory</strong></p>
<p>Another thing is that not really related to WordPress, but I can&#8217;t access my root directory. So that I can edit .htaccess file anyway I liked. Of course, I&#8217;ve total control over robots.txt too.</p>
<p><strong>Themes and ads</strong></p>
<p>There are many themes to choose from and most of them are premium quality. Easily blended with adsense. Most important of all, I can inject adsense ads between posts without having to use any parser.</p>
<p><strong>Schedule posts</strong></p>
<p align="center"><a href="http://www.bridgetonova.com/wp-content/uploads/2008/01/timestamp1.jpg"><img src="http://www.bridgetonova.com/wp-content/uploads/2008/01/timestamp-thumb1.jpg" style="border: 0px none " alt="timestamp" border="0" height="218" width="199" /></a></p>
<p>This is my favourite part. I can schedule post to any day and time I want. I don&#8217;t have to wait and post. I simply have to check in &#8220;Edit timestamp&#8221; and then choose the time and date I desire. This feature would really come in handy if I plan to take vacations. Many blogger users are longing for this feature too. I hope Blogger team would soon implement this.</p>
<p>If I have to write down, there&#8217;ll be many more. Let me stop here. I&#8217;ll follow up later with the post What I like about Blogger over WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2008/02/what-i-like-about-wordpress-over-blogger.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress plugins I am using</title>
		<link>http://www.bridgetonova.com/2008/01/wordpress-plugins-i-am-using.html</link>
		<comments>http://www.bridgetonova.com/2008/01/wordpress-plugins-i-am-using.html#comments</comments>
		<pubDate>Thu, 24 Jan 2008 00:19:31 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[BtN related]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2008/01/wordpress-plugins-i-am-using.html</guid>
		<description><![CDATA[Since I moved to WordPress, I haven&#8217;t made a full explanation about how and what plugins I am using. So here is the lists of WordPress plugins I am using as of now. 1. Akismet 2. All in One SEO Pack 3. Google XML Sitemaps 4. Maintain Blogger Permalinks 5. Shylock Adsense 6. WP-ContactForm 7. [...]]]></description>
			<content:encoded><![CDATA[<p>Since I <a href="http://www.bridgetonova.com/2008/01/life-in-the-wordpress-world.html">moved to WordPress</a>, I haven&#8217;t made a full explanation about how and what plugins I am using. So here is the lists of WordPress plugins I am using as of now.</p>
<p>1. Akismet<br />
2. All in One SEO Pack<br />
3. Google XML Sitemaps<br />
4. Maintain Blogger Permalinks<br />
5. Shylock Adsense<br />
6. WP-ContactForm<br />
7. WP-DBManager<br />
8. FeedBurner FeedSmith<br />
9. Similar Posts</p>
<p>Let me explain you one by one in details.</p>
<p><strong><u><a href="http://akismet.com/">Akismet</a></u></strong></p>
<p>This plugin comes with WordPress. This is a must have plugin for all WordPress users. What does this do?</p>
<blockquote><p>Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need a <a href="http://wordpress.com/api-keys/">WordPress.com API key</a> to use it. You can review the spam it catches under Comments.</p></blockquote>
<p>Yes, as it is mentioned above, you need to have WordPress.com API key for Akisment to operate. But it would take only a minute to create free WordPress.com account and get your API key.</p>
<p><strong><u></u></strong></p>
<p><strong><u><a href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/">All in One SEO Pack</a></u></strong></p>
<p>This plugin is very important to most bloggers. As the name says, this plugin fulfills almost every SEO needs. It can optimize your title, your post name, what you want to show or not, meta tags and many more. Highly recommend for organic traffic.</p>
<p><strong><u></u></strong></p>
<p><strong><u><a href="http://www.arnebrachhold.de/redir/sitemap-home/">Google XML Sitemaps</a></u></strong></p>
<p>The name says it all. It will create Google XML Sitemaps for you to submit at the Google Webmaster Center. If you don&#8217;t know what is Google Webmaster Center, well, you&#8217;re really a newbie. Start googling for it.</p>
<p><strong><u></u></strong></p>
<p><strong><u><a href="http://justinsomnia.org/">Maintain Blogger Permalinks</a></u></strong></p>
<p>This plugin is for those who move to WordPress platform from Blogger.com like me. As WordPress.com have naming strategy different with Blogger.com, if we want to maintain our traffic and incoming links, we need to use it.</p>
<p>For example, a post title like: &#8220;Nobody give a damn about global warming yet&#8221; would make permalinks by blogger as:</p>
<blockquote><p>nobody-give-a-damn-about</p></blockquote>
<p>But for WordPress, it would produce permalinks as follow:</p>
<blockquote><p>nobody-give-a-damn-about-global-warming-yet</p></blockquote>
<p>This plugin will simply convert that long WordPress permalinks to make it look like Blogger permalinks. You only need to activate once. After that you can even delete this plugin if you want.</p>
<p>Well, whee, this post become too long now. So let me stop here and I will continue explanation about all other plugins later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2008/01/wordpress-plugins-i-am-using.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Life in the WordPress world</title>
		<link>http://www.bridgetonova.com/2008/01/life-in-the-wordpress-world.html</link>
		<comments>http://www.bridgetonova.com/2008/01/life-in-the-wordpress-world.html#comments</comments>
		<pubDate>Sat, 12 Jan 2008 14:55:50 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[BtN related]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2008/01/life-in-the-wordpress-world.html</guid>
		<description><![CDATA[Well, moving to WordPress is quite challenging job for me. Blogger is very good for beginners. But as I have been on Blogger for more than two years, I&#8217;m so getting used to it. The first problem I face in the WordPress is that I can&#8217;t import Blogger posts using WordPress built-in import tools. So, [...]]]></description>
			<content:encoded><![CDATA[<p>Well, moving to WordPress is quite challenging job for me. Blogger is very good for beginners. But as I have been on Blogger for more than two years, I&#8217;m so getting used to it.</p>
<p>The first problem I face in the WordPress is that I can&#8217;t import Blogger posts using WordPress built-in import tools. So, I have to google around found that I should open <a href="http://www.wordpress.com">wordpress.com</a> account first. Import all my bloggers post to there and then export to the wordpress files. After that I have to import to my new installed wordpress blog.</p>
<p>Just like everyone else, even though I moved to WordPress, I don&#8217;t want to lose all my traffic and incoming links. Thanks to advice from Justinsomnia for <a href="http://justinsomnia.org/2006/10/maintain-permalinks-moving-from-blogger-to-wordpress/">Maintain permalinks moving from Blogger.</a> I have followed all the advices from that article and it worked.</p>
<p>For those of you who wondered which plugins I am using now, here is the screenshot.</p>
<p align="center"><a href="http://www.bridgetonova.com/wp-content/uploads/2008/01/plugin1.jpg"><img src="http://www.bridgetonova.com/wp-content/uploads/2008/01/plugin-thumb1.jpg" style="border: 0px none " alt="plugin" border="0" height="217" width="404" /></a></p>
<p>I&#8217;ll share my experience about each plugin later as I&#8217;m so new to this now. Hopefully, I&#8217;m matured now. I love WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2008/01/life-in-the-wordpress-world.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to view feedburner subscriber counts from blogs that don&#8217;t display</title>
		<link>http://www.bridgetonova.com/2008/01/how-to-view-feedburner-subscriber.html</link>
		<comments>http://www.bridgetonova.com/2008/01/how-to-view-feedburner-subscriber.html#comments</comments>
		<pubDate>Thu, 10 Jan 2008 02:30:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=278</guid>
		<description><![CDATA[Well, we are very curious with our competitions. Sometimes, we really want to know how much of the subscribers do they have too? For me, I haven&#8217;t publicly shown my feed subscriber counts yet even though I am having a quite impressive number for me. Well, anyway, if you want to view the feedburner counts [...]]]></description>
			<content:encoded><![CDATA[<p>Well, we are very curious with our competitions. Sometimes, we really want to know how much of the subscribers do they have too? For me, I haven&#8217;t publicly shown my feed subscriber counts yet even though I am having a quite impressive number for me.</p>
<p>Well, anyway, if you want to view the feedburner counts of the blogs that don&#8217;t display, you might be able to see it if you&#8217;re lucky. In fact, lucky here means those blog owners should have got change of mind and should be stupid too.</p>
<p>Here&#8217;s how to achieve this.</p>
<p>This is my feed address.<br />
<blockquote>http://feeds.feedburner.com/BridgeToNova</p></blockquote>
<p>If you want to see my subscriber, you should type in the address bar as follow.<br />
<blockquote>http://feeds.feedburner.com/~fc/BridgeToNova</p></blockquote>
<p>What do you see now?</p>
<p><a href="http://bp3.blogger.com/_gi_LZGbBtrU/R4Uic85xpiI/AAAAAAAAAPs/bUA7rgP5x-A/s1600-h/feedcount-not-enable.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp3.blogger.com/_gi_LZGbBtrU/R4Uic85xpiI/AAAAAAAAAPs/bUA7rgP5x-A/s400/feedcount-not-enable.jpg" border="0" /></a></p>
<p> I&#8217;m not lying to you. You can&#8217;t see my counts because I know this trick and I&#8217;ve already prevented from it by deactivating in my feedburner dashboard. But hey, there are a lot of bloggers out there who don&#8217;t know this and you can check their feed counts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2008/01/how-to-view-feedburner-subscriber.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change Outlook startup folder</title>
		<link>http://www.bridgetonova.com/2008/01/how-to-change-outlook-startup-folder.html</link>
		<comments>http://www.bridgetonova.com/2008/01/how-to-change-outlook-startup-folder.html#comments</comments>
		<pubDate>Tue, 08 Jan 2008 09:49:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=270</guid>
		<description><![CDATA[Microsoft Outlook display the Outlook Today page when you first start up since very earlier versions, but for me, it&#8217;s a quite useless page since I just want to read my email. I always change Outlook default setting by digging into Advanced Options via Tools &#8211;&#62;&#62; Options and then change the default folder. Hey but [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Outlook display the Outlook Today page when you first start up since very earlier versions, but for me, it&#8217;s a quite useless page since I just want to read my email. </p>
<p>I always change Outlook default setting by digging into Advanced Options via Tools &#8211;&gt;&gt; Options and then change the default folder. Hey but there&#8217;s an easier way to do this.</p>
<p>Just click on the Customize Outlook today button on the upper right corner of your Outlook as in the following pic.</p>
<p><a href="http://lh5.google.com/jasonbtn/R4NGfLj54xI/AAAAAAAAACY/Sma1kTC1ym4/customize%20outlook%20today%5B8%5D?imgmax=800"><img style="border-width:0;" height="59" alt="customize outlook today" src="http://lh4.google.com/jasonbtn/R4NGh7j54yI/AAAAAAAAACg/xgnVrqTb2E0/customize%20outlook%20today_thumb%5B6%5D?imgmax=800" width="504" border="0" /></a></p>
<p>After that you will see the following screen.</p>
<p><a href="http://lh5.google.com/jasonbtn/R4NHHLj541I/AAAAAAAAAC4/m4xgSyWRbJ4/chooseoutlookdefaultfolder6?imgmax=800"><img style="border-width:0;" height="224" alt="choose outlook default folder" src="http://lh4.google.com/jasonbtn/R4NHJ7j542I/AAAAAAAAADA/jt-sSW6UnrA/chooseoutlookdefaultfolder_thumb4?imgmax=800" width="504" border="0" /></a></p>
<p>Be sure to uncheck, &quot;When starting, go directly to Outlook Today&quot; checkbox. The default for these would make Outlook to go directly to your inbox. If you prefer to go Outlook to any other folder than your inbox, you can choose any folder you want by click on Choose Folders button.</p>
<p>Hope this tip would help you make more productivity. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2008/01/how-to-change-outlook-startup-folder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make Word 2007 to save default in Word 97-2003 format</title>
		<link>http://www.bridgetonova.com/2007/12/how-to-make-word-2007-to-save-default.html</link>
		<comments>http://www.bridgetonova.com/2007/12/how-to-make-word-2007-to-save-default.html#comments</comments>
		<pubDate>Sat, 22 Dec 2007 08:53:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=260</guid>
		<description><![CDATA[Microsoft has introduced new file formats in Office 2007. I&#8217;ve already told you guys about how to open docx files for those who still don&#8217;t have Office 2007. But for me, as a Office 2007 user, sometimes I forget to save the file in Word97-2003 compatible mode and save it in 2007 new format and [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has introduced new file formats in Office 2007. I&#8217;ve already told you guys about <a href="http://www.bridgetonova.com/2007/11/how-to-open-docx-files-without-office.html">how to open docx files</a> for those who still don&#8217;t have Office 2007. </p>
<p>But for me, as a Office 2007 user, sometimes I forget to save the file in Word97-2003 compatible mode and save it in 2007 new format and then send to my friends and coworkers, who are still using Office 2003 or older. After a couple of times happened, I&#8217;ve got to find a way to change Office 2007 default save file format. After a dozen times of accidentally sending a Word 2007 document to co-workers still stuck on Office 2003, I&#8217;ve decided to make Word save in the Word 2003 format by default.</p>
<p>Here is the procedure:</p>
<p>1. First click on the Office button and then choose Word Options as in the following picture.</p>
<p><a href="http://bp3.blogger.com/_gi_LZGbBtrU/R2uAvc5xpWI/AAAAAAAAAOM/RlghE4BUv9s/s1600-h/world-default-save.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp3.blogger.com/_gi_LZGbBtrU/R2uAvc5xpWI/AAAAAAAAAOM/RlghE4BUv9s/s400/world-default-save.jpg" border="0" /></a></p>
<p>2. After that Choose the save on the left column. And then from Save files in this format drop-down menu, choose Word97-2003 Document (.doc) as in the following pic.</p>
<p><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R2uBR85xpXI/AAAAAAAAAOU/RelODjvnN5w/s1600-h/choose-save-format.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp1.blogger.com/_gi_LZGbBtrU/R2uBR85xpXI/AAAAAAAAAOU/RelODjvnN5w/s400/choose-save-format.jpg" border="0" /></a></p>
<p>After that click save. From now on, Word 2007 will always save file in Word 97-2003 format. No more incompatible format saving any more. As you can guess, even though I told you only about Word 2007, you can apply this tip in Excel 2007, Powerpoint 2007 and any other Office 2007 applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/12/how-to-make-word-2007-to-save-default.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add ads code into Blogger Beta</title>
		<link>http://www.bridgetonova.com/2007/12/how-to-add-ads-code-into-blogger-beta.html</link>
		<comments>http://www.bridgetonova.com/2007/12/how-to-add-ads-code-into-blogger-beta.html#comments</comments>
		<pubDate>Fri, 21 Dec 2007 11:47:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=258</guid>
		<description><![CDATA[If you&#8217;ve ever tried to insert the Google Adsense code directly into your Blogger XML Template as you want ads between post (not in the widget sidebar or anywhere else), you&#8217;ll be stunned like me when you get the following error message. Your template could not be parsed as it is not well-formed. Please make [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever tried to insert the Google Adsense code directly into your Blogger XML Template as you want ads between post (not in the widget sidebar or anywhere else), you&#8217;ll be stunned like me when you get the following error message.</p>
<blockquote><p>Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly. XML error message: The processing instruction target matching &#8220;[xX][mM][lL]&#8221; is not allowed.</p></blockquote>
<p>This is because Blogger uses more strict and standardized XML. The above error simply mean the Adsense code is not standardized XML. To solve this, we need to replace all the html character such as &#8216;&lt;&#8217; with &#8216;&gt;&#8217; &#8216;&#8221;&#8216; with &#8216;&#8221;&#8216;.   Check the example below: This is original code.<br />
<blockquote><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpUI/AAAAAAAAAN8/mof8lF_MKec/s1600-h/ads-original-html.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpUI/AAAAAAAAAN8/mof8lF_MKec/s400/ads-original-html.jpg" border="0" /></a></p></blockquote>
<p>This is XML standardized code:<br />
<blockquote><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpVI/AAAAAAAAAOE/K2gJcutIOAs/s1600-h/parse-ads-xml.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpVI/AAAAAAAAAOE/K2gJcutIOAs/s400/parse-ads-xml.jpg" border="0" /></a></p></blockquote>
<p>You can use your text editor to replace all the HTML manually. Hey why don&#8217;t you check out <a href="http://blogcrowds.com/resources/parse_html.php">Blogcrowds HTML parser</a>. It is very easy and convenient. Be warned that changing the ads might violate the TOS of your specific ads company. So be sure to check with them to play safe.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/12/how-to-add-ads-code-into-blogger-beta.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable Windows XP error reporting</title>
		<link>http://www.bridgetonova.com/2007/12/how-to-disable-windows-xp-error.html</link>
		<comments>http://www.bridgetonova.com/2007/12/how-to-disable-windows-xp-error.html#comments</comments>
		<pubDate>Tue, 18 Dec 2007 04:13:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=252</guid>
		<description><![CDATA[For the users of Windows XP, you may get the pop-up windows that appears every time some of programs crashes. You have the option to choose whether you want to report the error to Microsoft or not. We usually click No and the message disappears, and we get on with our work. Well, I have [...]]]></description>
			<content:encoded><![CDATA[<p>For the users of Windows XP, you may get the pop-up windows that appears every time some of programs crashes. You have the option to choose whether you want to report the error to Microsoft or not. We usually click No and the message disappears, and we get on with our work.</p>
<p>Well, I have always just clicked NO, and moved on. I never even bother to click YES. I just wanted to get on with my work, so that I find a way to stop the computer to avoid showing that popup. Well, now I&#8217;ve got the tip to fix the problem. It is a simple fix.</p>
<ul>
<li>Just right click on the My Computer and click Properties. </li>
<li>Once the System dialog box is open, click the Advanced tab</li>
<li>And then click the Error Reporting tab at the bottom. </li>
<li>Check the box that disables Error Reporting.</li>
</ul>
<p>That&#8217;s it. I never have to look at that annoying popup again!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/12/how-to-disable-windows-xp-error.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows services you can disable to improve startup speed and security</title>
		<link>http://www.bridgetonova.com/2007/12/windows-services-you-can-disable-to.html</link>
		<comments>http://www.bridgetonova.com/2007/12/windows-services-you-can-disable-to.html#comments</comments>
		<pubDate>Mon, 10 Dec 2007 04:51:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=242</guid>
		<description><![CDATA[Windows services run in the background when you start the computer no matter who&#8217;s logged in. I&#8217;ll tell you the services which I think can be harmful for a system especially if your computer is over a network such as Internet/ University/ Office as bad boys can be anywhere. To start the services management console, [...]]]></description>
			<content:encoded><![CDATA[<p>Windows services run in the background when you start the computer no matter who&#8217;s logged in.</p>
<p>I&#8217;ll tell you the services which I think can be harmful for a system especially if your computer is over a network such as Internet/ University/ Office as bad boys can be anywhere.</p>
<p>To start the services management console, Go to Start Menu &#8211;&gt;&gt; Run and then type services.msc</p>
<p>After that disable any of the following services.</p>
<ul>
<li>1. Stopping Windows Messenger Spam</li>
<p>
<blockquote>Have you ever see a popup with a &#8220;Messenger Service&#8221; in the title bar while you&#8217;re surfing the net. If you did, that means someone is using the Messenger for sending adware to your system.</p>
<p>To stop it, disable the &#8220;Messenger&#8221; service from the Service Manager.</p></blockquote>
<li>2. Disable NetMeeting Remote Desktop Sharing</li>
<blockquote><p>It allows for someone to remotely access to your computer through NetMeeting. Unless, you&#8217;re regularly NetMeeting often, you should disable this.</p>
<p>Disable the &#8220;NetMeeting Remote Desktop Sharing&#8221; service from the Service Manager.</p></blockquote>
<li>3. Disable Protected Storage</li>
<blockquote><p>This service stores the passwords and the auto complete function with Internet Explorer. Unless, you want to use it, I recommend you disable it.</p>
<p>Disable &#8220;Protected Storage&#8221; service from the Service Manager.</p></blockquote>
<li>4. Remote Desktop Help Session Manager</li>
<p>
<blockquote>This service provides supports for Remote Assistance. If you use this service rarely or not at all, it is recommended to be disabled.</p>
<p>Disable &#8220;Remote Desktop Help Session Manager&#8221; service from the Service Manager.</p></blockquote>
<li>5. Remote Registry Service</li>
<blockquote><p>This service allows for your system registry to be accessible remotely. If you don’t require the assistance of someone to remotely have access to editing your registry settings, then disable this service.</p>
<p>Disable &#8220;Remote Registry&#8221; service from the Service Manager.</p></blockquote>
</ul>
<p>There you have it, 5 simple services which you can disable to improve not only security but also startup speed for your system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/12/windows-services-you-can-disable-to.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
