<?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>Review Of Web &#187; how to</title> <atom:link href="http://reviewofweb.com/tag/how-to/feed/" rel="self" type="application/rss+xml" /><link>http://reviewofweb.com</link> <description>Make the most of technology</description> <lastBuildDate>Sat, 12 May 2012 16:13:48 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Bloggers: Create a beautiful looking HTML table in minutes</title><link>http://reviewofweb.com/how-to/create-html-table-tabular-data-and-enmbed-in-blogs/</link> <comments>http://reviewofweb.com/how-to/create-html-table-tabular-data-and-enmbed-in-blogs/#comments</comments> <pubDate>Tue, 07 Sep 2010 00:03:24 +0000</pubDate> <dc:creator>Ankur Jain</dc:creator> <category><![CDATA[how to]]></category> <category><![CDATA[windows live writer]]></category><guid
isPermaLink="false">http://reviewofweb.com/?p=1052</guid> <description><![CDATA[If you’re a blogger and often have to draw good looking html tables, it may be a daunting task. Our favorite blogging tool, Windows Live Writer, though provides a native table creation utility but it lacks good formatting options.<p><a
href="http://reviewofweb.com/how-to/create-html-table-tabular-data-and-enmbed-in-blogs/">Bloggers: Create a beautiful looking HTML table in minutes</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></description> <content:encoded><![CDATA[<p></p><p>If you’re a blogger and often have to draw good looking html tables, it may be a daunting task. Our favorite blogging tool, Windows Live Writer, though provides a native table creation utility but it lacks good formatting options.</p><p>Here is a better and quick way. First go to MS Excel and create the best looking table in the world. With various options in Excel 2007 ad Excel 2010 it is literally a matter of minutes. Once done simply select and copy the complete table.</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="embed-html-table" src="http://reviewofweb.com/wp-content/uploads/2010/09/embedhtmltable.png" border="0" alt="embed-html-table" width="280" height="210" /></p><p>Go to Windows Live Writer. Right click where you would want to insert the table and choose Paste Special instead of Paste.</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="embed-excel-in-blog" src="http://reviewofweb.com/wp-content/uploads/2010/09/embedexcelinblog.png" border="0" alt="embed-excel-in-blog" width="509" height="332" /></p><p>Select Keep Formatting, press Ok button and you have your HTML table generated.  (<a
href="http://reviewofweb.com/camtasia-2/camtasia-quality-settings-impact-on-rendered-file-size-output/">Check</a> how the above table rendered on one our earlier articles)</p><p>Recommended: <strong><a
href="http://reviewofweb.com/blogging/best-tools-bloggers/">43 Hand Picked Tools for Bloggers</a></strong></p><p><a
href="http://reviewofweb.com/how-to/create-html-table-tabular-data-and-enmbed-in-blogs/">Bloggers: Create a beautiful looking HTML table in minutes</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></content:encoded> <wfw:commentRss>http://reviewofweb.com/how-to/create-html-table-tabular-data-and-enmbed-in-blogs/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Code: Click on an edit box and make the text disappear</title><link>http://reviewofweb.com/how-to/click-on-edit-box-and-make-text-disappear/</link> <comments>http://reviewofweb.com/how-to/click-on-edit-box-and-make-text-disappear/#comments</comments> <pubDate>Sat, 07 Aug 2010 11:56:39 +0000</pubDate> <dc:creator>Ankur Jain</dc:creator> <category><![CDATA[code]]></category> <category><![CDATA[how to]]></category><guid
isPermaLink="false">http://reviewofweb.com/?p=995</guid> <description><![CDATA[Code: Click on an edit box and make the text to disappear and bring the default text back again. This code uses two event handlers onfocus and onblur. The first one comes into the picture when focus is set on a particular object while second one comes into the picture when focus is just removed from an object.<p><a
href="http://reviewofweb.com/how-to/click-on-edit-box-and-make-text-disappear/">Code: Click on an edit box and make the text disappear</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></description> <content:encoded><![CDATA[<p></p><p>Recently while creating an opt-in form I had to incorporate this functionality in my squeeze page. Results that Google threw up, were either too complex or too simple which won’t suffice my need.</p><p>So, here, I have written a piece of code which will help me in future and hopefully you too!</p><p>This code uses two event handlers <strong>onfocus</strong> and <strong>onblur.</strong> The first one comes into the picture when focus is set on a particular object while second one comes into the picture when focus is just removed from an object.</p><pre class="brush: xml; title: ; notranslate">
&lt;input onfocus=&quot;this.value = (this.value=='First Name')?'' : this.value;&quot;
onblur=&quot;this.value = (this.value=='')? 'First Name' : this.value;&quot;
type=&quot;text&quot; name=&quot;MERGE1&quot; value=&quot;First Name&quot; size=&quot;0&quot;&gt;;
</pre><p><strong>Explanation:</strong></p><ul><li>onfocus checks for the value <strong>First Name, </strong>if it is present, it clears the field.</li><li>onblur check for the blank value. So say you bring your cursor to a particular field and then moves away from it without entering any value. This is where onblur event would insert the default value again.</li></ul><p><a
href="http://reviewofweb.com/how-to/click-on-edit-box-and-make-text-disappear/">Code: Click on an edit box and make the text disappear</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></content:encoded> <wfw:commentRss>http://reviewofweb.com/how-to/click-on-edit-box-and-make-text-disappear/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Where to find Allow Cell Drag and Drop option in Excel 2010?</title><link>http://reviewofweb.com/how-to/enable-cell-drag-and-drop-excel-2010/</link> <comments>http://reviewofweb.com/how-to/enable-cell-drag-and-drop-excel-2010/#comments</comments> <pubDate>Tue, 03 Aug 2010 21:23:05 +0000</pubDate> <dc:creator>Ankur Jain</dc:creator> <category><![CDATA[how to]]></category> <category><![CDATA[excel]]></category><guid
isPermaLink="false">http://reviewofweb.com/how-to/enable-cell-drag-and-drop-excel-2010/</guid> <description><![CDATA[Sometime back while working on excel 2010, it seems by mistake I disabled the option to use “cell drag and drop”. This feature allows you to drag the mouse and copy cells. If this option is disabled, your mouse pointer will never change to move pointer on selecting a particular cell.<p><a
href="http://reviewofweb.com/how-to/enable-cell-drag-and-drop-excel-2010/">Where to find Allow Cell Drag and Drop option in Excel 2010?</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></description> <content:encoded><![CDATA[<p></p><p>Sometime back while working on excel 2010, it seems by mistake I disabled the option to use “cell drag and drop”. This feature allows you to drag the mouse and copy cells. If this option is disabled, your mouse pointer will never change to move pointer on selecting a particular cell.</p><p>Ok, here is what I mean. In the illustration shown below, mouse pointer is getting changed to move pointer as soon as I bring it to the edge of a cell.</p><p><img
title="excel2010" style="display: block; float: none; margin-left: auto; margin-right: auto" height="215" alt="excel2010" src="http://reviewofweb.com/wp-content/uploads/2010/08/excel2010.gif" width="228" /></p><p>There is some info available on the net for Excel 2003 and the earlier versions ie&#160; by going to Tools &gt; Options &gt; Edit and checking &quot;Allow cell drag and drop&quot;, you can enable this option but there is no information regarding the same for Excel 2007 and Excel 2010. So how can you enable this option in 2010?</p><ol><li>Go to<strong> File &gt; Options &gt; Advanced &gt; Enable file handle and cell drag-and-drop</strong></li><li>Check this box.</li><li>Click OK and you’re done</li></ol><p>I wish there was some “mapping file” available from Microsoft for mapping excel 2003 and earlier versions navigation to excel 2007/2010. It could save us a lot of time.</p><p><a
href="http://reviewofweb.com/how-to/enable-cell-drag-and-drop-excel-2010/">Where to find Allow Cell Drag and Drop option in Excel 2010?</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></content:encoded> <wfw:commentRss>http://reviewofweb.com/how-to/enable-cell-drag-and-drop-excel-2010/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>How to Configure Windows 7&#8217;s Firewall</title><link>http://reviewofweb.com/how-to/how-to-configure-windows-7s-firewall/</link> <comments>http://reviewofweb.com/how-to/how-to-configure-windows-7s-firewall/#comments</comments> <pubDate>Tue, 29 Dec 2009 21:15:19 +0000</pubDate> <dc:creator>Ankur Jain</dc:creator> <category><![CDATA[how to]]></category> <category><![CDATA[software]]></category> <category><![CDATA[tools]]></category> <category><![CDATA[firewall]]></category> <category><![CDATA[set up]]></category> <category><![CDATA[windows]]></category><guid
isPermaLink="false">http://reviewofweb.com/?p=869</guid> <description><![CDATA[A firewall is essential when it comes to preventing malicious software and hackers from gaining access to your computer. With Windows 7, you can actually fine-tune your firewall settings to match your daily usage while still keep your computer well protected. To access the advanced settings and help you get started right away, follow these next few steps.<p><a
href="http://reviewofweb.com/how-to/how-to-configure-windows-7s-firewall/">How to Configure Windows 7&rsquo;s Firewall</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></description> <content:encoded><![CDATA[<p></p><p>A firewall is essential when it comes to preventing malicious software and hackers from gaining access to your computer. With Windows 7, you can actually fine-tune your firewall settings to match your daily usage while still keep your computer well protected. To access the advanced settings and help you get started right away, follow these next few steps.</p><p>First of all, you need to disable your Windows firewall to gain access to recommended settings. To do this, go to <strong>Control Panel&gt; System and Security &gt; Windows Firewall</strong> and then click on the “<strong>Change notification settings</strong>” link on the left panel. Disable both private and public network firewall and click apply to continue. At the Windows Firewall control panel page you see after clicking OK, you will notice a new button labeled “<strong>Use recommended settings</strong>” &#8212; this is what we are after &#8212; so go ahead and click the button.<img
style="border-bottom: 0px;border-left: 0px;margin: 5px 5px 5px 0px;border-top: 0px;border-right: 0px" src="http://reviewofweb.com/wp-content/uploads/2009/12/image9.png" border="0" alt="Windows 7 Firewall" width="426" height="325" align="left" /></p><p>A popup will ask for your confirmation, and you can safely click Yes to continue. Windows will analyze your current computer state, along with installed applications, and determine the right firewall settings for your computer. After the process is completed, you can continue with fine-tuning the firewall settings to suit your needs.</p><p>To access the advanced settings for Windows 7’s firewall, click “<strong>Advanced Settings</strong>” on the left panel of the Windows Firewall control panel page. You will see a new page with <strong>Inbound Rules</strong>, <strong>Outbound Rules</strong>, <strong>Connection Security Rules</strong>, and <strong>Monitoring</strong> links on the left panel. You can disable available rules or create new ones &#8212; for Inbound and Outbound Rules, this is essentially important and allows you to set the firewall to work according to your needs &#8212; and manage monitoring preferences from here.</p><p><a
href="http://reviewofweb.com/how-to/how-to-configure-windows-7s-firewall/">How to Configure Windows 7&rsquo;s Firewall</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></content:encoded> <wfw:commentRss>http://reviewofweb.com/how-to/how-to-configure-windows-7s-firewall/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to load a web page bypassing the cache of browser?</title><link>http://reviewofweb.com/how-to/load-web-page-bypassing-cache/</link> <comments>http://reviewofweb.com/how-to/load-web-page-bypassing-cache/#comments</comments> <pubDate>Mon, 06 Jul 2009 19:24:17 +0000</pubDate> <dc:creator>Ankur Jain</dc:creator> <category><![CDATA[how to]]></category> <category><![CDATA[productivity]]></category><guid
isPermaLink="false">http://reviewofweb.com/?p=602</guid> <description><![CDATA[Here are some keyboard shortcuts to load a web page bypassing cache. IE ctrl, Firefox Shift...<p><a
href="http://reviewofweb.com/how-to/load-web-page-bypassing-cache/">How to load a web page bypassing the cache of browser?</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></description> <content:encoded><![CDATA[<p></p><p>Some sites like <a
rel="tag" href="http://reviewofweb.com/tag/gmail">Gmail</a> have problems with the cache of browser. If you are a regular user of Gmail, you may encountered this issue where it just doesn&#8217;t load and you<img
style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" title="Bypass Browser Cache" src="http://reviewofweb.com/wp-content/uploads/2009/06/image.png" border="0" alt="Bypass Browser Cache" width="170" height="132" align="right" /> have to manually clear the cache to make it working.</p><p>Here are some keyboard shortcuts to load a web page bypassing cache: that can help you a bit</p><ol><li>For Internet Explorer: Hold the Control key and click the Refresh button on the toolbar.</li><li>For Firefox: Hold down the Shift key and click the Reload button on the navigation toolbar.</li><li>For Safari: Hold down the Shift key and click the Reload toolbar button.</li></ol><p>Simple yet effective tip.</p><p><a
href="http://www.numion.com/Stopwatch/">Source</a></p><p><a
href="http://reviewofweb.com/how-to/load-web-page-bypassing-cache/">How to load a web page bypassing the cache of browser?</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></content:encoded> <wfw:commentRss>http://reviewofweb.com/how-to/load-web-page-bypassing-cache/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Moving from one machine to another? Follow these tips.</title><link>http://reviewofweb.com/how-to/moving-one-computer-to-another-changing-hard-disks/</link> <comments>http://reviewofweb.com/how-to/moving-one-computer-to-another-changing-hard-disks/#comments</comments> <pubDate>Tue, 17 Feb 2009 11:20:14 +0000</pubDate> <dc:creator>Ankur Jain</dc:creator> <category><![CDATA[how to]]></category> <category><![CDATA[tools]]></category><guid
isPermaLink="false">http://reviewofweb.com/how-to/moving-one-computer-to-another-changing-hard-disks/</guid> <description><![CDATA[If you are moving from one laptop/computer to another. I am sure these tips would prove to be quite handy. Belarc advisor. Windows Live Writer. Memento. firefox profile<p><a
href="http://reviewofweb.com/how-to/moving-one-computer-to-another-changing-hard-disks/">Moving from one machine to another? Follow these tips.</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></description> <content:encoded><![CDATA[<p></p><p>So recently I have to change my laptop&#8217;s hard disk. It is always a big pain to move files, bookmarks and other info from one laptop to another. More so, moving means all the installed programs would need to be re-installed on the new machine. If you are a blogger like me, you will have other softwares like Windows Live Writer too.</p><p>This time when I moved, I wrote a quick check list which I &#8216;m sure would prove to be quite handy to all of us in future.<img
style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin-left: 0px; margin-right: 0px; border-right-width: 0px" title="Belarc" src="http://reviewofweb.com/wp-content/uploads/2009/02/image.png" border="0" alt="Belarc" width="163" height="90" align="right" /></p><h4>Take a scan of your system using <a
href="http://www.belarc.com/free_download.html">Belarc advisor</a>:</h4><p>Belarc advisor creates a detailed profile of your installed software and hardware, missing Microsoft hotfixes, anti-virus status, etc and displays the results in your Web browser. It also shows the keys/licenses of installed softwares. I would recommend to take a print of this web page created by Belarc and keep it in a safe place.</p><p>Back up ALL your important files in a USB or a CD’s . I use my classic 80 GB Ipod for these purpose. Like any USB devices, it proves to be quite handy and fast.</p><h4>Back Up Firefox bookmarks and related profiles:</h4><p>Firefox bookmarks, cookies, Google Toolbar data for firefox all resides in a folder inside.</p><blockquote><p>C:\Documents and Settings\<em>&lt;Your Profile Name&gt;</em>\Application Data\Mozilla\Firefox\Profiles</p></blockquote><p>The folder would have some name like <em>eid50wk9.default. </em>Take a copy of this folder.</p><h4>Back Up IE favorites:</h4><p>Take a copy of IE favorites that reside in</p><blockquote><p>C:\Documents and Settings\<em>&lt;Your Profile Name&gt;<img
style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin-left: 0px; margin-right: 0px; border-right-width: 0px" title="Memento Notes" src="http://reviewofweb.com/wp-content/uploads/2009/02/image1.png" border="0" alt="Memento Notes" width="150" height="122" align="right" /></em></p></blockquote><h4>Back Up <a
href="http://www.guyswithtowels.com/dev/apps/memento.html">Memento Notes</a>:</h4><p>I use Memento Notes as a Post-IT for my laptop. It&#8217;s a small, no-frills program that sits quietly in my task bar. If you are taking a back up of Memento notes, make sure to copy both memento.exe and memento.notes. Memento.notes is like a database where all your Post-ITs reside.</p><h4>Back Up <a
href="http://download.live.com/writer">Windows Live Writer (WLW):</a></h4><p><a
href="http://download.live.com/writer"></a>If you &#8216;re a blogger I &#8216;m sure you must be using this great application from Microsoft. WLW inherently does not provide any means to take a back up of stored drafts, settings, external plugins etc. Scott has created an excellent <a
href="http://scottisafooldev.spaces.live.com/blog/cns!FE151030F50B5B37!556.entry">Windows Live Writer back up utility</a>.  After a quick installation, it takes a single click to take &#8216;Backup&#8217; and then one more click to &#8216;Restore&#8217; your settings on the new computer. Note that while restoring, Windows Live Writer should be closed otherwise it may throw an error. Also if you don’t see your posts after restoring, don’t fret. Go to C:\Documents and Settings\&lt;<em>your profile</em>&gt;\My Documents\My Weblog Posts\Drafts and double click on one of the posts , you will then see all posts inside WLW right hand pane.</p><p><img
style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" title="windows live writer backup" src="http://reviewofweb.com/wp-content/uploads/2009/02/image2.png" border="0" alt="windows live writer backup" width="505" height="317" /></p><h4>Back Up Email client:</h4><p>It will depend on the kind of client you are using. For Mozilla Thunderbird, back up means simply copying the mail folder to the back-up location.</p><p>I trust these points would be useful for all of us. I suggest you to bookmark(Ctrl-D) this post for future use.</p><p><a
href="http://reviewofweb.com/how-to/moving-one-computer-to-another-changing-hard-disks/">Moving from one machine to another? Follow these tips.</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></content:encoded> <wfw:commentRss>http://reviewofweb.com/how-to/moving-one-computer-to-another-changing-hard-disks/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 4/8 queries in 0.066 seconds using disk: basic
Object Caching 1120/1122 objects using disk: basic

Served from: reviewofweb.com @ 2012-05-23 02:42:01 -->
