<?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; MOSS 2007</title>
	<atom:link href="http://codeforfuture.com/category/moss-2007/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>Creating custom column with complex logic</title>
		<link>http://codeforfuture.com/2011/08/08/creating-custom-column-with-complex-logic/</link>
		<comments>http://codeforfuture.com/2011/08/08/creating-custom-column-with-complex-logic/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 05:41:32 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Custom Columns]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=188</guid>
		<description><![CDATA[Hello Readers, I got following question from Chris Polek who happen to stumble upon my blog. I tried to answer it best of my knowledge but I am sure there can be multiple ways to achieve this. If you find a better solution, do comment! Question: I would like to create a column in a [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Readers,</p>
<p>I got following question from Chris Polek who happen to stumble upon my blog. I tried to answer it best of my knowledge but I am sure there can be multiple ways to achieve this. If you find a better solution, do comment!</p>
<p><strong>Question:</strong><br />
I would like to create a column in a custom list that will sequentially assign the number 1, 2 or 3 to an item created in the list. After assigning a &#8217;3&#8242;, it will start over at &#8217;1&#8242;. Optionally, this could be a name as well, but a number will work just fine.</p>
<p>Would you be able to help me with this request?</p>
<p><strong>Answer:</strong><br />
Interesting! You can do this by using a calculated column or by using a workflow.</p>
<p><strong>Calculated column method:</strong><br />
You can base your logic with the help of ID column.<br />
For e.g. If the id of the list item is 3 or 6 or 9 or if the sum of the digits is 3/6/9 then put the column value as 3<br />
For e.g. If id =12 then 1+2= 3 hence you will print 3<br />
If all above is false then if the id is even number then print 2 else print 1</p>
<p>If above logic seems complicated then try this<br />
<strong>Workflow method:</strong><br />
Create another list, create one list item where Title = 1<br />
Now on your original list write a workflow which will read this value and print in your custom column. Once this is done the workflow will also increment the value into another list by one or reset it to one if it has reached to 3</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2011/08/08/creating-custom-column-with-complex-logic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove all HTML tags from a string using XSLT?</title>
		<link>http://codeforfuture.com/2011/03/18/how-to-remove-all-html-tags-from-a-string-using-xslt/</link>
		<comments>http://codeforfuture.com/2011/03/18/how-to-remove-all-html-tags-from-a-string-using-xslt/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 15:59:00 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[XSLT Code Samples]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2011/03/18/how-to-remove-all-html-tags-from-a-string-using-xslt/</guid>
		<description><![CDATA[This is something a SharePoint programmer usually faces. I hope following solution give you help to move ahead. &#160; Removing all HTML tags from a string &#60;xsl:template name=&#34;removeHtmlTags&#34;&#62; &#60;xsl:param name=&#34;html&#34;/&#62; &#60;xsl:choose&#62; &#160;&#160;&#160; &#60;xsl:when test=&#34;contains($html, &#8216;&#38;lt;&#8217;)&#34;&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;xsl:value-of select=&#34;substring-before($html, &#8216;&#38;lt;&#8217;)&#34;/&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;!&#8211; Recurse through HTML &#8211;&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;xsl:call-template name=&#34;removeHtmlTags&#34;&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;xsl:with-param name=&#34;html&#34; select=&#34;substring-after($html, &#8216;&#38;gt;&#8217;)&#34;/&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/xsl:call-template&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>This is something a SharePoint programmer usually faces. I hope following solution give you help to move ahead.</p>
<p>&#160;</p>
<p><strong>Removing all HTML tags from a string</strong></p>
<p>&lt;xsl:template name=&quot;removeHtmlTags&quot;&gt;   <br />&lt;xsl:param name=&quot;html&quot;/&gt;    <br />&lt;xsl:choose&gt;    <br />&#160;&#160;&#160; &lt;xsl:when test=&quot;contains($html, &#8216;&amp;lt;&#8217;)&quot;&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:value-of select=&quot;substring-before($html, &#8216;&amp;lt;&#8217;)&quot;/&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;!&#8211; Recurse through HTML &#8211;&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:call-template name=&quot;removeHtmlTags&quot;&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:with-param name=&quot;html&quot; select=&quot;substring-after($html, &#8216;&amp;gt;&#8217;)&quot;/&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/xsl:call-template&gt;    <br />&#160;&#160;&#160; &lt;/xsl:when&gt;    <br />&#160;&#160;&#160; &lt;xsl:otherwise&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:value-of select=&quot;$html&quot;/&gt;    <br />&#160;&#160;&#160; &lt;/xsl:otherwise&gt;    <br />&lt;/xsl:choose&gt;    <br />&lt;/xsl:template&gt;</p>
<p>&#160;</p>
<p>Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2011/03/18/how-to-remove-all-html-tags-from-a-string-using-xslt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding best SharePoint PDF IFilter (64-bit)</title>
		<link>http://codeforfuture.com/2009/05/22/finding-best-sharepoint-pdf-ifilter-64-bit/</link>
		<comments>http://codeforfuture.com/2009/05/22/finding-best-sharepoint-pdf-ifilter-64-bit/#comments</comments>
		<pubDate>Fri, 22 May 2009 10:49:24 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[SharePoint2003]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=118</guid>
		<description><![CDATA[With due respect to original blog post here which is in German. This is a rewrite into English.  Germans please let me know if I have missed something. We often need to configure Office Server Search while working on MOSS 2007 infrastructure projects. Microsoft Filter Pack is efficient as long as it only comes to [...]]]></description>
			<content:encoded><![CDATA[<p><em>With due respect to original blog post <a href="http://blogs.itacs.de/Consulting/Lists/Beitraege/Post.aspx?List=00e8906b-aaa3-4a6b-82f4-a3fadb53f21d&amp;ID=20" target="_blank">here which is in German</a>. This is a rewrite into English.  Germans please let me know if I have missed something.<br />
</em></p>
<p>We often need to configure Office Server Search while working on MOSS 2007 infrastructure projects. Microsoft Filter Pack is efficient as long as it only comes to indexing the metadata documents or metadata and content of file types.</p>
<p>As a large volume of documentation often exist in PDF format and there is always a requirement to index those .pdf files. As you know for every other file type, a so called iFilter indexing is needed. In case of .pdf files, you need to aquire third party iFilters.</p>
<p><strong>The most common iFilters available for .pdf files are:</strong></p>
<p><a href="http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025" target="_blank">Adobe PDF iFilter 9 for 64-bit platforms</a></p>
<p><a href="http://www.foxitsoftware.com/pdf/ifilter/?gclid=CILK06PQz5oCFU8TzAodvE1rrw" target="_blank">Foxit PDF IFilter</a></p>
<p><a href="http://www.pdflib.com/products/tet-pdf-ifilter/?gclid=CKq-kMbQz5oCFc0vpAodOiP43Q" target="_blank">PDFlib TET PDF IFilter</a></p>
<p>Here, most common are Adobe PDF iFilter and Foxit PDF iFilter. While Adobe iFilter is available free of charge, for the other two you will need to pay license fees.</p>
<p>With respect to the performance, these two IFilters differ. Microsoft bloggers have already done various testings on  Adobe PDF iFilter and Foxit PDF iFilter. As a result of various testings done by Microsoft bloggers, Foxit iFilter (32 bit) is around 4 times as fast as the Adobe Filter. And Foxit iFilter (64 bit) is about 5 times, as fast as the Adobe Filter.</p>
<p>In addition we found <a href="http://www.pdflib.com/products/tet-pdf-ifilter/?gclid=CKq-kMbQz5oCFc0vpAodOiP43Q" target="_blank">PDFlib TET PDF IFilter</a>, for which there were no performance records found.</p>
<p>This was a enough reason to test all these three iFilters for their performance.</p>
<p><strong>The Test Setup:</strong></p>
<p>All three iFilters were tested on same hardware environment.</p>
<p>We used a virtual Hyper-V with two virtual processors and 4 GB RAM. OS used was Windows Server 2008 (Standard Edition) with Service Pack 1.</p>
<p>MOSS 2007 SP 1 (Cumulative update Feb 2009)</p>
<p>Here we indexed 1022 documents (both German and English) of volume of 1.8GB.</p>
<p>The default settings of the current IFilter were used. The duration of indexing was collected in two runs and considered the best result.</p>
<p><strong>The Test Result:</strong></p>
<p><strong></strong></p>
<div id="attachment_121" class="wp-caption alignnone" style="width: 582px"><strong><strong><img class="size-full wp-image-121" title="ifilter01" src="http://codeforfuture.com/wp-content/uploads/2009/05/ifilter01.jpg" alt="Sharepoint ifilter comparison" width="572" height="64" /></strong></strong><p class="wp-caption-text">Sharepoint ifilter comparison</p></div>
<p><strong>License costs compared </strong></p>
<p><strong></strong></p>
<div id="attachment_122" class="wp-caption alignnone" style="width: 582px"><strong><strong><img class="size-full wp-image-122" title="ifilter02" src="http://codeforfuture.com/wp-content/uploads/2009/05/ifilter02.jpg" alt="Sharepoint ifilter comparisions" width="572" height="91" /></strong></strong><p class="wp-caption-text">Sharepoint ifilter comparisons</p></div>
<p><strong></strong>Status: 11.05.2009, all data without guarantee.<strong><br />
</strong></p>
<p><strong>Rating:</strong></p>
<p>Alrough the Adobe iFilter comes free, its indexing performance has lot of scope for improvement. While the performance of  iFilter Foxit and PDFlib are at par. Initial review cannot comment on difference in the quality of indexing. You can therefore reduce the decision criteria for an iFilter on other factors like volume, cost and personal preferences.</p>
<p>If a large volume of PDF documents are to be indexed the one of the paid options are recommended.<br />
If the index server is not a dedicated server, then this task is preferably preformed by a Web Frontend Server. Because the indexing requires much CPU time, it should be exploited as efficiently as possible.</p>
<p>In case of multi-core <span onmouseover="_tipon(this)" onmouseout="_tipoff()">the PDFlib IFilter is </span>more cost effective than other peers.</p>
<p><strong>Resources:</strong></p>
<p><a href="http://blogs.itacs.de/Consulting/Lists/Beitraege/Post.aspx?List=00e8906b-aaa3-4a6b-82f4-a3fadb53f21d&amp;ID=20" target="_blank">Original blog post</a></p>
<p><strong>Download: </strong></p>
<p><strong></strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=60C92A37-719C-4077-B5C6-CAC34F4227CC&amp;displaylang=en" target="_blank">2007 Office System Converter: Microsoft Filter Pack</a></p>
<p><a href="http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025" target="_blank">Adobe PDF iFilter 9 for 64-bit platforms</a></p>
<p><a href="http://www.foxitsoftware.com/pdf/ifilter/?gclid=CILK06PQz5oCFU8TzAodvE1rrw" target="_blank">Foxit PDF IFilter</a></p>
<p><a href="http://www.pdflib.com/products/tet-pdf-ifilter/?gclid=CKq-kMbQz5oCFc0vpAodOiP43Q" target="_blank">PDFlib TET PDF IFilter</a></p>
<p><strong>Learn:</strong></p>
<p><a href="http://support.microsoft.com/kb/946336" target="_blank">How to register Microsoft Filter Pack with SharePoint Server 2007 and with Search Server 2008 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2009/05/22/finding-best-sharepoint-pdf-ifilter-64-bit/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Solutions: SharePoint datasheet view doesn&#8217;t work</title>
		<link>http://codeforfuture.com/2009/04/22/solutions-sharepoint-datasheet-view-doesnt-work/</link>
		<comments>http://codeforfuture.com/2009/04/22/solutions-sharepoint-datasheet-view-doesnt-work/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 04:44:25 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[SharePoint2003]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=86</guid>
		<description><![CDATA[I&#8217;m working on a data migration project where we are migrating all contents from SharePoint 2003 server to MOSS 2007 Enterprise Server. We are doing this manually as the MOSS server is already in place from a year or more and it is highly customized. While doing so I recognized that on my machine the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a data migration project where we are migrating all contents from SharePoint 2003 server to MOSS 2007 Enterprise Server. We are doing this manually as the MOSS server is already in place from a year or more and it is highly customized.</p>
<p>While doing so I recognized that on my machine the datasheet view doesn&#8217;t work. Then I started blaming my IE6 and upgraded to IE7 which didn&#8217;t helped and finally I landed up with IE8 which also didn&#8217;t worked.</p>
<p>It gives following error.<br />
&#8220;The Standard View of your list is being displayed because your browser does not support running ActiveX controls.&#8221;</p>
<p>While I tried to search for some solution, I found that lot of people are facing this problem.</p>
<p>There are many solutions that worked for them and there are many of them for who nothing worked actually.</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;&#8211;</p>
<p><strong>See Also:</strong> <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>&#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;&#8211;</p>
<p>So I came to a conclusion that there is no perfect solution available.</p>
<p><strong>Here are some possible solutions that work.</strong></p>
<p>All of these are not found by me. I&#8217;m just trying to put them at one place.</p>
<p><strong>1.</strong><br />
Microsoft says:<br />
A datasheet component that is compatible with Windows SharePoint Services is not installed.<br />
AND/OR<br />
A Microsoft Office 2003 Professional edition is not installed on the computer.<br />
AND/OR<br />
The Web browser does not support ActiveX controls.<br />
AND/OR<br />
Support for ActiveX controls is disabled</p>
<p>If you are using Office 2003, then try the first solution first. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7287252C-402E-4F72-97A5-E0FD290D4B76&amp;displaylang=en" target="_blank">Install Office 2003 web components</a>.</p>
<p>Make sure that you have installed Office 2003 or higher on your client machine.</p>
<p>Unfortunately there are no Office 2007 web components available and I am using Office 2007. Still I tried to install those which didn&#8217;t worked too.</p>
<p>I also tried my ActiveX settings for IE8 but that didn&#8217;t helped.</p>
<p>As I tried all of them. Still it didn&#8217;t worked. Then I carried on my R&amp;D.</p>
<p><strong>2.</strong><br />
On your client machine run, &#8220;Microsoft Office Diagnostics&#8221;.</p>
<p>This one worked for me. And datasheet view started working normally.</p>
<p>But this too doesn&#8217;t work for everyone.</p>
<p><strong>3. </strong><br />
Try putting the site in the trusted sites list. This may solve the problem if it is related to activeX.</p>
<p><strong>4.</strong><br />
Based on my exprience, this kind of problems (a ActiveX component doesn&#8217;t work on a particualr client) mostly is caused by a corrupted registry entry or file. So, a complete reinstallation may be the most prompt way to resolve such an issue. While this is not a good advice.</p>
<p><strong>5.</strong><br />
Open the file ows.js in your favorite editor. It can be found here.<br />
C:\Program Files\Common Files\Microsoft Shared\web server extensions\60\TEMPLATE\LAYOUTS\1033</p>
<p>Put following javascript code<br />
function RenderActiveX(str)<br />
{</p>
<p>document.write(str);<br />
}</p>
<p>and reset your app pool.</p>
<p>while if the problem is only with a perticular client then I wont suggest this.</p>
<p><strong>6.</strong></p>
<p>If you are working on as WSS 2.0 site then this hotfix might help you.</p>
<p>http://support.microsoft.com/kb/948919/en-us</p>
<p>This is a post SP3 hotfix.</p>
<p><strong>7.</strong></p>
<p>The Office Service Pack team has announced that <a href="http://blogs.technet.com/office_sustained_engineering/archive/2009/04/16/service-pack-2-for-the-2007-microsoft-office-system-due-to-ship-april-28th.aspx" target="_blank">Service Pack 2 for the 2007 Microsoft Office System due to ship April 28th</a>. This is a good news and we hope they solve this problem for all users.</p>
<p>Even I found some people who has tried all of these and still the datasheet view doesn&#8217;t work for them.</p>
<p>So I said earlier, there isn&#8217;t a perfect solution for this.<br />
<strong>If you know some more then please comment!</strong></p>
<p><strong>If you found the article useful, please re-tweet it and help others too.</strong><br />
<a href="http://hub.tm/?RcDTf"><br />
<img src="http://twitter.grader.com/assets/img/tweet-it-button.jpg" border="0" alt="TweetIt from HubSpot" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2009/04/22/solutions-sharepoint-datasheet-view-doesnt-work/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MCTS 70-630 all you need to know to clear this exam</title>
		<link>http://codeforfuture.com/2009/04/19/mcts-70-630/</link>
		<comments>http://codeforfuture.com/2009/04/19/mcts-70-630/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 05:21:39 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/?p=78</guid>
		<description><![CDATA[Yesterday I cleared MCTS Microsoft Office SharePoint Server 2007 Configuration (70-630) exam with 1000 out of 1000. This exam seems to be easy as compared to its sister exam 70-542. I'll suggest that you complete the study from e-book or hard copy and then before going to exam give 5-6 hours for revision.]]></description>
			<content:encoded><![CDATA[<p>Yesterday I cleared MCTS Microsoft Office SharePoint Server 2007 Configuration (70-630) exam with 1000 out of 1000.</p>
<p>This exam seems to be easy as compared to its sister exam 70-542.</p>
<p>I&#8217;ll suggest that you complete the study from e-book or hard copy and then before going to exam give 5-6 hours for revision.</p>
<p><strong>Books I used:</strong></p>
<p><strong><img class="size-full wp-image-130 alignnone" title="mcts-70-630" src="http://codeforfuture.com/wp-content/uploads/2009/06/mcts-70-630.jpg" alt="MCTS Microsoft Office SharePoint Server 2007 Configuration 70-630" width="86" height="110" /><br />
</strong></p>
<p>Sybex publication: <a href="http://www.amazon.com/gp/product/0470226633?ie=UTF8&amp;tag=codforfut-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0470226633">MCTS: Microsoft Office SharePoint Server 2007 Configuration Study Guide: Exam 70-630</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=codforfut-20&amp;l=as2&amp;o=1&amp;a=0470226633" border="0" alt="" width="1" height="1" /></p>
<p>by James Pyles</p>
<p>In the following book, you will also get sample questions for practice after each chapter.</p>
<p>After each chapter ends, there are also provided &#8220;Exam Essentials&#8221; which highlights vital things you should put more emphasis on.</p>
<p>The book also contains a &#8220;Assessment tests&#8221; which are helpful too.</p>
<p>If you are already working on MOSS 2007 and have gone through the initial setup stages at your workplace, then you can skip first 3 chapters as they are too basic. But from exam perspective do not skip the sample questions.</p>
<p>At end I&#8217;ll say enough work experience plays a vital role when you start answering exam.</p>
<p><strong>These are few links you can refer to get some more info.</strong><br />
<a href="http://www.microsoft.com/learning/mcp/mcts/spserver/config/default.mspx" target="_blank">MCTS: Microsoft Office SharePoint Server 2007 – Configuration</a><br />
<a href="http://www.microsoft.com/learning/en/us/exams/70-630.mspx" target="_blank">Preparation Guide for Exam 70-630</a></p>
<p><strong>Some more books (recommended on Microsoft Learning site)</strong></p>
<p><a href="http://www.amazon.com/gp/product/0735622825?ie=UTF8&amp;tag=codforfut-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0735622825">Microsoft® Office SharePoint® Server 2007 Administrator&#8217;s Companion</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=codforfut-20&amp;l=as2&amp;o=1&amp;a=0735622825" border="0" alt="" width="1" height="1" /></p>
<p><a href="http://www.amazon.com/gp/product/0735623686?ie=UTF8&amp;tag=codforfut-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0735623686">Inside Microsoft  Office SharePoint  Server 2007</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=codforfut-20&amp;l=as2&amp;o=1&amp;a=0735623686" border="0" alt="" width="1" height="1" /></p>
<p><strong>Some more sample tests</strong> (from Microsoft Certified Test providers)<br />
<a href="http://www.measureup.com/Site/display_article.aspx?id=955" target="_blank">MeasureUp </a>- they have practice tests, online courses and exam vouchers.<br />
<a href="http://www.selftestsoftware.com/dept.aspx?dept_id=1000">SelfTest Software</a> &#8211; they have practice exams, study guides, online learning and virtual labs too.</p>
<p>If you have any queries then comment with your email id. I&#8217;ll try to reply.</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2009/04/19/mcts-70-630/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Disabling mysite / mylinks on Sharepoint 2003 &amp; MOSS 2007</title>
		<link>http://codeforfuture.com/2008/12/10/disabling-mysite-mylinks-on-sharepoint-2003-moss-2007/</link>
		<comments>http://codeforfuture.com/2008/12/10/disabling-mysite-mylinks-on-sharepoint-2003-moss-2007/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 05:41:00 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[SharePoint2003]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2008/12/10/disabling-mysite-mylinks-on-sharepoint-2003-moss-2007/</guid>
		<description><![CDATA[No theory, just pure steps =) 1. Disabling mysite/mylinks on MOSS 2007 Step 1.Visit &#8220;Central Administration&#8221;Select &#8220;SharedServices&#8221; under &#8220;Shared Services Administration&#8221;Step 2:Under &#8220;User Profiles and My Sites&#8221;, select &#8220;Personalization services permissions&#8221; Step 3:This will open &#8220;Manage Permissions&#8221;. Select appropriate user for which you want to disable &#8220;mysite&#8221; option. In most cases you will have to [...]]]></description>
			<content:encoded><![CDATA[<p>No theory, just pure steps =)</p>
<p><span style="font-weight: bold;">1. Disabling mysite/mylinks on MOSS 2007</span></p>
<p><span style="font-weight: bold;">Step 1.</span><br />Visit &#8220;Central Administration&#8221;<br />Select &#8220;SharedServices&#8221; under &#8220;Shared Services Administration&#8221;<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_xm5KTL2VzWo/ST9bv4gnOOI/AAAAAAAABCY/9axgvthxaGE/s1600-h/Centraladmin.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 350px; height: 399px;" src="http://4.bp.blogspot.com/_xm5KTL2VzWo/ST9bv4gnOOI/AAAAAAAABCY/9axgvthxaGE/s400/Centraladmin.jpg" alt="" id="BLOGGER_PHOTO_ID_5278038166482663650" border="0" /></a><span style="font-weight: bold;">Step 2:</span><br />Under &#8220;User Profiles and My Sites&#8221;, select &#8220;Personalization services permissions&#8221;</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_xm5KTL2VzWo/ST9c4frwQtI/AAAAAAAABCg/OfCaOdgYac8/s1600-h/Personalization.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 302px;" src="http://3.bp.blogspot.com/_xm5KTL2VzWo/ST9c4frwQtI/AAAAAAAABCg/OfCaOdgYac8/s400/Personalization.jpg" alt="" id="BLOGGER_PHOTO_ID_5278039413948957394" border="0" /></a><br /><span style="font-weight: bold;">Step 3:</span><br />This will open &#8220;Manage Permissions&#8221;.</p>
<p>Select appropriate user for which you want to disable &#8220;mysite&#8221; option.</p>
<p>In most cases you will have to use &#8220;NT AUTHORITY\Authenticated Users&#8221;. This will apply to all authenticated users. In my case I was using windows integrated security so I used this one.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_xm5KTL2VzWo/ST9dpdci7ZI/AAAAAAAABCo/uUJeEXs3lno/s1600-h/managepermissions.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 147px;" src="http://1.bp.blogspot.com/_xm5KTL2VzWo/ST9dpdci7ZI/AAAAAAAABCo/uUJeEXs3lno/s400/managepermissions.jpg" alt="" id="BLOGGER_PHOTO_ID_5278040255161888146" border="0" /></a><span style="font-weight: bold;">Step 4:</span></p>
<p>Clicking the user will take you to the following screen.</p>
<p>Un-check the &#8220;Create personal site&#8221; option.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_xm5KTL2VzWo/ST9dpzdA0lI/AAAAAAAABCw/w9qS62kftCA/s1600-h/modifypermissions.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 238px;" src="http://1.bp.blogspot.com/_xm5KTL2VzWo/ST9dpzdA0lI/AAAAAAAABCw/w9qS62kftCA/s400/modifypermissions.jpg" alt="" id="BLOGGER_PHOTO_ID_5278040261069427282" border="0" /></a>This should work for you. You may additionally un select the &#8220;Use personal feature&#8221; option as per your needs.</p>
<p><span style="font-weight: bold;">2. Disabling mysite / mylinks on SharePoint 2003 Server</span></p>
<p>Check following detailed link for 2003 server.</p>
<p><a href="http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B887921">http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B887921</a></p>
<p>But again there are 2 types.<br />1. Turning off My Site personal site and turn off views for members of a site group<br />2. Turning off My Site personal sites without affecting views for a site group</p>
<p>So first confirm which option you want to go first. Then only make changes.</p>
<p>Enjoy..</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2008/12/10/disabling-mysite-mylinks-on-sharepoint-2003-moss-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InputFormTextBox width, Enabled, ReadOnly Properties not working properly</title>
		<link>http://codeforfuture.com/2008/12/03/inputformtextbox-width-enabled-readonly-properties-not-working-properly/</link>
		<comments>http://codeforfuture.com/2008/12/03/inputformtextbox-width-enabled-readonly-properties-not-working-properly/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 06:56:00 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2008/12/03/inputformtextbox-width-enabled-readonly-properties-not-working-properly/</guid>
		<description><![CDATA[InputFormTextBox&#8217;s width, Enabled, ReadOnly Properties doesn&#8217;t work properly whenever you enable RichTextMode. Unfortunately you cannot adjust the width of this control properly. Sometimes the toolbar get streatched but the inside frame doesn&#8217;t. I have tried various approach. Also tried to correct the width using JavaScript. But it doesn&#8217;t work People have tried many things link [...]]]></description>
			<content:encoded><![CDATA[<p>InputFormTextBox&#8217;s width, Enabled, ReadOnly Properties doesn&#8217;t work properly whenever you enable RichTextMode.</p>
<p>Unfortunately you cannot adjust the width of this control properly. Sometimes the toolbar get streatched but the inside frame doesn&#8217;t.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_xm5KTL2VzWo/STYvFNk1oNI/AAAAAAAABCQ/DuKtkp4BMlY/s1600-h/InputFormTextBox+Misaligned.jpg"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 159px;" src="http://2.bp.blogspot.com/_xm5KTL2VzWo/STYvFNk1oNI/AAAAAAAABCQ/DuKtkp4BMlY/s400/InputFormTextBox+Misaligned.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5275455780101136594" /></a></p>
<p>I have tried various approach. Also tried to correct the width using JavaScript. But it doesn&#8217;t work</p>
<p>People have tried many things link setting number columns etc.</p>
<p>But someone has posted <a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomization/thread/5b3c77db-71bd-408f-853e-46577631cc45/">on a forum thread</a> that this is a known Microsoft bug (Bug ID: 37846)</p>
<p>I don&#8217;t know where I can recheck if this id is true or not.</p>
<p>But probably this will be patched in next service pack.</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2008/12/03/inputformtextbox-width-enabled-readonly-properties-not-working-properly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>using RichTextBox control in Sharepoint MOSS 2007</title>
		<link>http://codeforfuture.com/2008/12/03/using-richtextbox-control-in-sharepoint-moss-2007/</link>
		<comments>http://codeforfuture.com/2008/12/03/using-richtextbox-control-in-sharepoint-moss-2007/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 05:26:00 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[reusable code]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2008/12/03/using-richtextbox-control-in-sharepoint-moss-2007/</guid>
		<description><![CDATA[Like me you too came searching for the RichTextField control for SharePoint. But you will be surprised that this is not the one you are looking for. You must be looking for a control which will allow you to create formatted text as shown in below given image. InputFormTextBox is the correct control you will [...]]]></description>
			<content:encoded><![CDATA[<p>Like me you too came searching for the RichTextField control for SharePoint. But you will be surprised that this is not the one you are looking for. </p>
<p>You must be looking for a control which will allow you to create formatted text as shown in below given image.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_xm5KTL2VzWo/STYs3UcFCiI/AAAAAAAABCI/sFgFuNTju3A/s1600-h/InputFormTextBox+Control.jpg"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 337px; height: 163px;" src="http://3.bp.blogspot.com/_xm5KTL2VzWo/STYs3UcFCiI/AAAAAAAABCI/sFgFuNTju3A/s400/InputFormTextBox+Control.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5275453342402021922" /></a></p>
<p>InputFormTextBox is the correct control you will ever need. This is available under Microsoft.SharePoint.WebControls namespace. (Only MOSS 2007)</p>
<p>How to use it? Very simple.</p>
<blockquote><p>InputFormTextBox richMessage = new InputFormTextBox();<br />richMessage.RichText = true;<br />richMessage.RichTextMode = SPRichTextMode.FullHtml;</p></blockquote>
<p>You may also use following useful properties:</p>
<blockquote><p>richMessage.AllowHyperlink = true;<br />richMessage.TextMode = TextBoxMode.MultiLine;<br />richMessage.Wrap = true;<br />richMessage.Rows = 10;<br />richMessage.Width = System.Web.UI.WebControls.Unit.Percentage(100);</p></blockquote>
<p>Check another thread for known issues with InputFormTextBox Control.<br /><a href="http://code.jaypatil.com/2008/12/inputformtextbox-width-enabled-readonly.html">InputFormTextBox width, Enabled, ReadOnly Properties not working properly</a><br />
<br/><br />
<span style="font-weight:bold;"><br />
If you found this post helpful then please share it.<br />
</span></p>
<p><a href="http://hub.tm/?IgjDe"><br />
<img border="0" target="_new" src="http://twitter.grader.com/assets/img/tweet-it-button.jpg" alt="TweetIt from HubSpot" title=""/><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2008/12/03/using-richtextbox-control-in-sharepoint-moss-2007/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>stsadm installfeature causes &quot;The farm is unavailable&quot; error</title>
		<link>http://codeforfuture.com/2008/10/23/stsadm-installfeature-causes-the-farm-is-unavailable-error/</link>
		<comments>http://codeforfuture.com/2008/10/23/stsadm-installfeature-causes-the-farm-is-unavailable-error/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 06:54:00 +0000</pubDate>
		<dc:creator>Jayvardhan Patil</dc:creator>
				<category><![CDATA[MOSS 2007]]></category>

		<guid isPermaLink="false">http://codeforfuture.com/2008/10/23/stsadm-installfeature-causes-the-farm-is-unavailable-error/</guid>
		<description><![CDATA[This October I was trying to install some features manually and while installing them using a batch file (as they were too many) it caused an error. My command line was like below: STSADM -o InstallFeature -filename FeatureName\feature.xml -force Before doing this I had already copied necessary feature files to &#8220;Features&#8221; directory. Solution: 1.This happens [...]]]></description>
			<content:encoded><![CDATA[<p>This October I was trying to install some features manually and while installing them using a batch file (as they were too many) it caused an error.</p>
<p>My command line was like below:</p>
<p><span style="font-family: courier new;"><span class="blsp-spelling-error" id="SPELLING_ERROR_0">STSADM</span> -o <span class="blsp-spelling-error" id="SPELLING_ERROR_1">InstallFeature</span> -<span class="blsp-spelling-error" id="SPELLING_ERROR_2">filename</span> <span class="blsp-spelling-error" id="SPELLING_ERROR_3">FeatureName</span>\feature.<span class="blsp-spelling-error" id="SPELLING_ERROR_4">xml</span> -force</span></p>
<p>Before doing this I had already copied necessary feature files to &#8220;Features&#8221; directory.</p>
<p>Solution:</p>
<p>1.<br />This happens when you do not have permissions on the database server. Make sure you have the necessary permissions.</p>
<p>2.<br />If you have recently updated your MOSS version to 12.0.0.6318 i.e. MOSS 2007 or <span class="blsp-spelling-error" id="SPELLING_ERROR_5">WSS</span> 3.0 Infrastructure Update (KB951695 &amp; KB951297)  then you might need to restart the PC/DB services.</p>
<p>3.<br />If you have updated <span class="blsp-spelling-error" id="SPELLING_ERROR_6">SQL</span> Server Express Edition to <span class="blsp-spelling-error" id="SPELLING_ERROR_7">SQL</span> Server then you need to restart the PC/DB services.</p>
<p>In my case just restarting machine helped. But in some cases you cannot restart server machine just like that. So in that case restarting the services might do well.</p>
<p>Let me know if this helped. Also let me know if there are better ways to do this. Or in case if you have faced different issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://codeforfuture.com/2008/10/23/stsadm-installfeature-causes-the-farm-is-unavailable-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

