<?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>Code For Future &#187; Miscellaneuos</title>
	<atom:link href="http://codeforfuture.com/category/miscellaneuos/feed/" rel="self" type="application/rss+xml" />
	<link>http://codeforfuture.com</link>
	<description>Share as you code.</description>
	<lastBuildDate>Mon, 08 Aug 2011 05:41:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Learning Technologies in a Social Way</title>
		<link>http://codeforfuture.com/2011/05/07/learning-technologies-in-a-social-way/</link>
		<comments>http://codeforfuture.com/2011/05/07/learning-technologies-in-a-social-way/#comments</comments>
		<pubDate>Sat, 07 May 2011 02:35:23 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[Miscellaneuos]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2011/05/07/learning-technologies-in-a-social-way/</guid>
		<description><![CDATA[I hate waking up early on weekends, but even after disabling alarms I still end up waking up the same time! So I decided to put this time to help others by blogging things that I learnt throughout the week. This week I met Parag, and he has a really effective concept of learning technologies. [...]]]></description>
			<content:encoded><![CDATA[<p>I hate waking up early on weekends, but even after disabling alarms I still end up waking up the same time! So I decided to put this time to help others by blogging things that I learnt throughout the week.</p>
<p>This week I met Parag, and he has a really effective concept of learning technologies. He has a website called as “<a href="http://diycomputerscience.com/" target="_blank">Do It Yourself Computer Science</a>” where one can learn the technology with his own pace and then interact socially using twitter with others who are too learning the same course at that time. This happens by forming <a href="http://diycomputerscience.com/blog/post/3" target="_blank">online study groups</a>. This concept is called as Flipping the classroom which is a revolutionary concept that can replace the conventional classrooms. Watch this TED video about what flipping the classroom means.</p>
<p><iframe width="560" height="349" src="http://www.youtube.com/embed/gM95HHI4gLk" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2011/05/07/learning-technologies-in-a-social-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a custom sequential number field in MOSS list?</title>
		<link>http://codeforfuture.com/2011/01/29/how-to-create-a-custom-sequential-number-field-in-moss-list/</link>
		<comments>http://codeforfuture.com/2011/01/29/how-to-create-a-custom-sequential-number-field-in-moss-list/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 06:16:29 +0000</pubDate>
		<dc:creator>Hemanth</dc:creator>
				<category><![CDATA[Miscellaneuos]]></category>
		<category><![CDATA[autonumber]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[field]]></category>
		<category><![CDATA[sequential]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=158</guid>
		<description><![CDATA[I recently came across a requirement where in customer wanted to auto generate a custom sequential number with current date as a part of this sequential number on a SharePoint list. Although SharePoint has an inbuilt “ID” field and Issue Tracker list can Issue ID. But they simply just provide running numbers like 1, 2, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently came across a requirement where in customer wanted to auto generate a custom sequential number with current date as a part of this sequential number on a SharePoint list.</p>
<p>Although SharePoint has an inbuilt “ID” field and Issue Tracker list can Issue ID. But they simply just provide running numbers like 1, 2, 3, 4.What if you need some prefix and also a choice from where the sequential numbers should start.</p>
<p>You can achieve this through different approaches, like using an event handler etc., but I think the following is the simplest of all.</p>
<p>Here is the step by step instructions on how to get this done.</p>
<p>There are two parts for this solution.</p>
<p>Part 1: Getting the desired sequential number</p>
<p>1. First of all we need to create a list which will help us in generating the numbers, let us call this list as “Unique Numbers”</p>
<p>2. Add one number field, &#8220;LastNumber&#8221; and one calculated field &#8220;NextNumber&#8221; to this list. The formula to be used for NextNumber is &#8220;[LastNumber]+1&#8243;(Note: The data type returned from this formula should be number)</p>
<p>3. Let us add a new Item to this list with the following information</p>
<p>Title : ORDERNO</p>
<p>LastNumber : 99</p>
<p>4. Now we need to create the second list I will call it “Orders”</p>
<p>5. Add a number field “OrderNo” to this new list, now we are ready to build the workflow to generate unique sequential numbers</p>
<p>6. Open your web site in SharePoint Designer (SPD) .Create a new workflow. In the File menu, select New-&gt;Workflow&#8230;</p>
<p>7. In the dialog that appears, give the workflow a name, e.g. &#8220;Assign Order Number&#8221;. In the drop-down list below, choose to connect the workflow to the list you want to assign auto sequential numbers to (In this case, this would be a list called Orders). Then check the middle option of the three check boxes below, &#8220;Start this workflow automatically when a new item is created&#8221;.</p>
<p>8. On the same dialog, there is a button at the bottom called &#8220;Variables&#8221;. Click it. Choose &#8220;Add&#8221;, name it &#8220;mNumber&#8221; and make it of type &#8220;Number&#8221;. Click OK, and OK again. Now, click &#8220;Next&#8221; in the dialog.</p>
<p>9. You can leave the step name as is (&#8220;Step 1&#8243;). Leave the &#8220;Condition&#8221; empty, and click the &#8220;Actions&#8221; button. In the menu that appears, select &#8220;Set workflow variable&#8221;. This will add an action to the list to the right of the Actions button. Now you need to set up this action. Click the link &#8220;Workflow variable&#8221;, this will open a small dropdown list. Select &#8220;Variable: mNumber&#8221;. Then click the next link, &#8220;value&#8221;. This will display a textbox and a small button in place of the link. Click the button (&#8220;Show databindings&#8221;). This will bring up a new dialog, where you will select the value to assign to the &#8220;mNumber&#8221; variable. In the &#8220;Data Source&#8221; drop down, select &#8220;Unique Numbers&#8221;. In the drop down just below (&#8220;Field:&#8221;) select &#8220;NextNumber&#8221;. Now, the dialog will be expanded with a &#8220;Find list object&#8221; section. In the drop down &#8220;Field&#8221;, select &#8220;Unique Numbers:Title&#8221;, and in the value box below, type ORDERNO. Click OK. SPD will now give a warning that the look up might return more than one value, just select &#8220;Yes&#8221; to continue here.</p>
<p>10. Now you add one more action. Click the &#8220;Actions&#8221; button and select &#8220;Set field in current object&#8221;. Click the &#8220;field&#8221; link in the new action, and in the list that appears, select the field in your list that is the target of the autonumber (e.g. &#8220;OrderNo&#8221;). Then click the &#8220;value&#8221; link, and once again click the little button that appears (&#8220;Show databindings&#8221;). This time, in the &#8220;Data Source&#8221; drop down, select &#8220;Workflow data&#8221;, and then in the next drop down, select the variable &#8220;mNumber&#8221;. Click OK.</p>
<p>11. Add yet another action, this time choose the &#8220;Update list item&#8221; action. Click the link in the new action, &#8220;update list object in this list&#8221;. This brings up another dialog, in the &#8220;List&#8221; drop down, select &#8220;Unique Numbers&#8221;. Click the &#8220;Add&#8221; button just below to the right, and in the new dialog&#8217;s first drop down (&#8220;Set this field:&#8221;), select &#8220;LastNumber&#8221; and to the right of the &#8220;To this value:&#8221; text box, click the formula button. Again, a new dialog appears, in the &#8220;Data Source&#8221; dropdown, select &#8220;Workflow data&#8221; and then in the &#8220;Field&#8221; drop down, select &#8220;Variable: mNumber&#8221;. Click OK twice to get back to the &#8220;Update list item&#8221; dialog. Now, once again in the &#8220;Find list object&#8221; section, select &#8220;Unique Numbers:Title&#8221;, and type in the value ORDERNO. SPD will give a warning again, click &#8220;Yes&#8221;.</p>
<p>12. That&#8217;s it. Click the &#8220;Finish&#8221; button, and if all is well, the workflow will be created.</p>
<p>13. Now when you create a new item in the Customers list you will see that a unique sequential “OrderNo” is generated</p>
<p>Now we have achieved our first goal of generating a desired sequential number. Now on to Part 2</p>
<p>Part 2: Adding a prefix to the sequential number, in this case current date in YYYYMMDD format</p>
<p>1. Create a field “Today’s Date” this should be of “Date and Time” type and default value should be today’s date.</p>
<p>2. Create another field “OrderID” of calculated type and use this formula</p>
<p>=TEXT(Today’s Date,&#8221;yyyymmdd&#8221;)&amp;OrderNo</p>
<p>Now when you create a new item on Orders list you will see that a new OrderID is generated .</p>
<p>Note: The field names mentioned here for example purpose, you can use any name with the same logic to make it work.</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2011/01/29/how-to-create-a-custom-sequential-number-field-in-moss-list/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting rid of &#8220;Outlook Integration Error&#8221;</title>
		<link>http://codeforfuture.com/2009/09/01/getting-rid-of-outlook-integration-error/</link>
		<comments>http://codeforfuture.com/2009/09/01/getting-rid-of-outlook-integration-error/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:47:19 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[Miscellaneuos]]></category>
		<category><![CDATA[Outlook Integration Error]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=139</guid>
		<description><![CDATA[WARNING: Please try on your own risk. Here you are going to edit your registry. Not following exact steps and doing something else might crash your operating system. Do only if you are completely comfortable with it. Or contact your administrator. Steps to getting rid of &#8220;Outlook Integration Error&#8221; which stops saving your communication history [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WARNING:</strong> Please try on your own risk. Here you are going to edit your registry. Not following exact steps and doing something else might crash your operating system. Do only if you are completely comfortable with it. Or contact your administrator.</p>
<p>Steps to getting rid of &#8220;Outlook Integration Error&#8221; which stops saving your communication history into your outlook.</p>
<p>1. Click Start, and then click Run.<br />
2. In the Open box, type regedit, and then press ENTER.<br />
3. Locate and then right-click the following registry subkey:<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Communicator<br />
4.Point to New, and then click DWORD Value.<br />
5.Type DisableEmailComparisonCheck as the name of new registry entry, and then press ENTER.<br />
6.Double-click DisableEmailComparisonCheck, type 1 in the Value data box, and then click OK.<br />
7.Exit Registry Editor.</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2009/09/01/getting-rid-of-outlook-integration-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft.NET tips and tracks (included interview questions)</title>
		<link>http://codeforfuture.com/2009/04/19/microsoftnet-tips-and-tracks-included-interview-questions/</link>
		<comments>http://codeforfuture.com/2009/04/19/microsoftnet-tips-and-tracks-included-interview-questions/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 04:52:15 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[Miscellaneuos]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=75</guid>
		<description><![CDATA[While searching for .NET tips and tracks i found that Michael Nemtsev is the guy who is a MVP is doing a great work. He is constantly collecting updating Microsoft.NET tips and tracks on his blog. These FAQs can also be considered as most likely interview questions. You can also download a PDF version of [...]]]></description>
			<content:encoded><![CDATA[<p>While searching for .NET tips and tracks i found that Michael Nemtsev is the guy who is a MVP is doing a great work.</p>
<p>He is constantly collecting updating Microsoft.NET tips and tracks on his blog.</p>
<p>These FAQs can also be considered as most likely interview questions.</p>
<p>You can also download a PDF version of it.</p>
<p>Find here: <a href="http://msmvps.com/blogs/laflour/pages/net-tips-amp-tricks.aspx">http://msmvps.com/blogs/laflour/pages/net-tips-amp-tricks.aspx</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><strong>See Also:</strong></p>
<p><a href="http://codeforfuture.com/2009/04/19/mcts-70-630/" target="_blank">MCTS: MOSS 2007 Configuration (70-630) all you need to know to clear this exam</a></p>
<p><a href="http://undestanding.com/" target="_blank">Most asked HR Interview Questions</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2009/04/19/microsoftnet-tips-and-tracks-included-interview-questions/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Find computer name using IP address</title>
		<link>http://codeforfuture.com/2009/04/02/find-computer-name-using-ip-address/</link>
		<comments>http://codeforfuture.com/2009/04/02/find-computer-name-using-ip-address/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 11:32:03 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[Miscellaneuos]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=28</guid>
		<description><![CDATA[If you want to find computer name of a machine from an IP address, here is what you can try. You can try this on machines in your LAN. You can also try this on your own machine if you are keen to find it using command prompt. Steps: 1. Goto &#8220;Start&#8221;&#62;&#8221;Run&#8221; 2. type &#8220;Command&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to find computer name of a machine from an IP address, here is what you can try.</p>
<p>You can try this on machines in your LAN.</p>
<p>You can also try this on your own machine if you are keen to find it using command prompt.</p>
<p><strong>Steps:</strong></p>
<p>1. Goto &#8220;Start&#8221;&gt;&#8221;Run&#8221;</p>
<p>2. type &#8220;Command&#8221; and press &#8220;OK&#8221;. For some OS you will need to type &#8220;cmd&#8221;.</p>
<p>3. Now you are in the command prompt.</p>
<p>4. Execute following command. (By typing and pressing enter)</p>
<p>ping -a 000.000.000.000</p>
<p>Here replace zeros with the IP address you have.</p>
<p>For e.g.</p>
<p>ping -a 10.83.0.98</p>
<p>3. It will return you the host name and also will ping it to find its availability.</p>
<p><img class="alignnone size-full wp-image-31" title="ping" src="http://codeforfuture.com/wp-content/uploads/2009/04/ping.jpg" alt="ping" width="669" height="338" /></p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2009/04/02/find-computer-name-using-ip-address/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Outlook: Getting rid of 100s of meeting responses you get when you schedule a meeting for all</title>
		<link>http://codeforfuture.com/2009/02/18/outlook-getting-rid-of-100s-of-meeting-responses-you-get-when-you-schedule-a-meeting-for-all/</link>
		<comments>http://codeforfuture.com/2009/02/18/outlook-getting-rid-of-100s-of-meeting-responses-you-get-when-you-schedule-a-meeting-for-all/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 14:17:00 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[Miscellaneuos]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2009/02/18/outlook-getting-rid-of-100s-of-meeting-responses-you-get-when-you-schedule-a-meeting-for-all/</guid>
		<description><![CDATA[If you are setting up meetings for a large group and then asking then to refrain from sending meeting responses, then this article is for you. You can automatically delete the empty responses you get. Please note the word &#8220;empty&#8221; here. It will not stop you anyway to read the edited responses. Here is the [...]]]></description>
			<content:encoded><![CDATA[<p>If you are setting up meetings for a large group and then asking then to refrain from sending meeting responses, then this article is for you.</p>
<p>You can automatically delete the <span style="font-weight: bold;">empty </span>responses you get. Please note the word &#8220;<span style="font-weight: bold;">empty</span>&#8221; here. It will not stop you anyway to read the edited responses.</p>
<p>Here is the procedure.<br /><span style="font-weight: bold;"><br />Step 1:</span></p>
<p>In Microsoft Outlook, Navigate to Tools>Options&#8230;<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_xm5KTL2VzWo/SZwctQaRmiI/AAAAAAAAD44/QaClSRpqtP8/s1600-h/meeting1.jpg"><img style="cursor: pointer; width: 361px; height: 400px;" src="http://1.bp.blogspot.com/_xm5KTL2VzWo/SZwctQaRmiI/AAAAAAAAD44/QaClSRpqtP8/s400/meeting1.jpg" alt="" id="BLOGGER_PHOTO_ID_5304146024960465442" border="0" /></a></p>
<p><span style="font-weight: bold;">Step 2:</span></p>
<p>Select <span style="font-weight: bold;">&#8220;E-mail Options&#8230;&#8221;</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_xm5KTL2VzWo/SZwdEIjFCHI/AAAAAAAAD5A/DdFrsxrpfy8/s1600-h/meeting2.jpg"><img style="cursor: pointer; width: 400px; height: 140px;" src="http://4.bp.blogspot.com/_xm5KTL2VzWo/SZwdEIjFCHI/AAAAAAAAD5A/DdFrsxrpfy8/s400/meeting2.jpg" alt="" id="BLOGGER_PHOTO_ID_5304146417986898034" border="0" /></a></p>
<p><span style="font-weight: bold;">Step 3:</span></p>
<p>Select <span style="font-weight: bold;">&#8220;Tracking Options&#8230;&#8221;</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_xm5KTL2VzWo/SZwdERC4y4I/AAAAAAAAD5I/TpyvMqBmp9Y/s1600-h/meeting3.jpg"><img style="cursor: pointer; width: 398px; height: 204px;" src="http://4.bp.blogspot.com/_xm5KTL2VzWo/SZwdERC4y4I/AAAAAAAAD5I/TpyvMqBmp9Y/s400/meeting3.jpg" alt="" id="BLOGGER_PHOTO_ID_5304146420267797378" border="0" /></a><br /><span style="font-weight: bold;"><br />Step 4:</span></p>
<p>On the &#8220;Tracking Options&#8221; dialog, check the <span style="font-weight: bold;">&#8220;Delete blank voting and meeting responses after processing&#8221;</span></p>
<p>And click <span style="font-weight: bold;">&#8220;OK&#8221;</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_xm5KTL2VzWo/SZwdEuUztVI/AAAAAAAAD5Q/ld4tVjSiwMU/s1600-h/meeting4.jpg"><img style="cursor: pointer; width: 376px; height: 368px;" src="http://4.bp.blogspot.com/_xm5KTL2VzWo/SZwdEuUztVI/AAAAAAAAD5Q/ld4tVjSiwMU/s400/meeting4.jpg" alt="" id="BLOGGER_PHOTO_ID_5304146428127589714" border="0" /></a></p>
<p>Hurray&#8230; you are done&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2009/02/18/outlook-getting-rid-of-100s-of-meeting-responses-you-get-when-you-schedule-a-meeting-for-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: How to remove blue rectangle around the image / imagemap</title>
		<link>http://codeforfuture.com/2008/09/29/javascript-how-to-remove-blue-rectangle-around-the-image-imagemap/</link>
		<comments>http://codeforfuture.com/2008/09/29/javascript-how-to-remove-blue-rectangle-around-the-image-imagemap/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 11:13:00 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[Miscellaneuos]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2008/09/29/javascript-how-to-remove-blue-rectangle-around-the-image-imagemap/</guid>
		<description><![CDATA[Sometimes it shows a focus like dark border around the image in IE and Firefox. I guess this is not a problem in Google Chrome. Solution for this is: use css! img{border: 0;} You can also set this in HTML as per your choice.]]></description>
			<content:encoded><![CDATA[<p>Sometimes it shows a focus like dark border around the image in <a href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx">IE</a> and <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>.</p>
<p>I guess this is not a problem in <a href="http://www.google.com/chrome">Google Chrome</a>.</p>
<p>Solution for this is:</p>
<p>use css!</p>
<p>img<br />{<br />border: 0;<br />}</p>
<p>You can also set this in HTML as per your choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2008/09/29/javascript-how-to-remove-blue-rectangle-around-the-image-imagemap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

