<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://csharpzealot.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>&lt;P&gt;CSharpZealot.com&lt;/P&gt;</title><link>http://csharpzealot.com/blogs/default.aspx</link><description>.Net the C# way</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.2)</generator><item><title>SuperPreview the answer to testing cross browser web design?</title><link>http://csharpzealot.com/blogs/andrewb/archive/2009/04/01/superpreview-the-answer-to-testing-visual-elements-cross-browser.aspx</link><pubDate>Wed, 01 Apr 2009 08:25:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:260</guid><dc:creator>abartucciotto</dc:creator><slash:comments>1</slash:comments><description>&lt;P&gt;Have you ever worked on a web project that was required to work cross browser and also across several versions of the browser. Chances are you have as most companies require, at a minimum, the site to work in IE6 and FireFox.&lt;/P&gt;
&lt;P&gt;A project I&amp;nbsp; recently worked on required the team to set up Virtual Machine with IE6 installed to test the graphical layout of the web application.&amp;nbsp;The test VM was needed due to the fact that you can't install IE 6 and IE 7 on the same machine and all of our developers were working in IE7. This is a painful process for something as simple as the testing across several browser versions.&lt;/P&gt;
&lt;P&gt;I just watched a presentation by Scott Guthrie (&lt;A class="" title=MIX09 href="http://videos.visitmix.com/MIX09/KEY01" target=_blank&gt;http://videos.visitmix.com/MIX09/KEY01&lt;/A&gt;) and he outlined a new tool for Expression Blend called SuperPreview. What this does is allow you to check your presentation layers cross browser and in different browser versions. It displays a split screen view that demonstrates the position of an elements such as div tags on your screen via the DOM. The left split shows the element position in a browser of your choice... FireFox for instance, the right split shows the elements position&amp;nbsp;in another browser instance such as&amp;nbsp;IE6 but it also displays the elements position in FireFox so you can get a good comparison on how much the elements may be out of whack. This tool seems essential in my opinion for front end developers. The download is available at &lt;A href="http://blogs.msdn.com/xweb/archive/2009/03/18/Microsoft-Expression-Web-SuperPreview-for-Windows-Internet-Explorer.aspx"&gt;http://blogs.msdn.com/xweb/archive/2009/03/18/Microsoft-Expression-Web-SuperPreview-for-Windows-Internet-Explorer.aspx&lt;/A&gt;.&amp;nbsp;The trial version is&amp;nbsp;250MB. &lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=260" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Browser+Compatibility/default.aspx">Browser Compatibility</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Software/default.aspx">Software</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Front+End+Design/default.aspx">Front End Design</category></item><item><title>What does the $Resources: string mean in SharePoint</title><link>http://csharpzealot.com/blogs/andrewb/archive/2009/02/25/what-does-the-resources-string-mean-in-sharepoint.aspx</link><pubDate>Thu, 26 Feb 2009 03:33:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:259</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;The other day I was modifying a custom site template for SharePoint. I actually had to create some list views for pages that I was provisioning through some modules. Because the template was copied from an out of the box site template, Team Site, it already had some views in it.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;One of the views had a property called list which was $Resources:core,lists_Folder;/$Resources:core,announce_Folder. This was obviously targeting a list and you could deduct from the value that it was an announcements list. But what exactly is the value this represents. To find this out you need to first locate the core.resx file. This file is located in the /12/Resources folder.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Once you locate this file, using the string in the list property mentioned above, we can then search for the values. E.g. search for lists_Folder will give you the value of Lists. Searching for announce_Folder will give you the value of Announcements. So here we have Lists/Announcements. Pretty obvious in this example but what about all the other resource strings dotted throughout the SharePoint ether? First of all you need to find the correct resx file to search. The value after $Resources: represents what file to search e.g. $resources:core would mean the file is core.resx. In another example, such as in a page in layouts, you will find a lot of the string $Resources:wss. The file we need to look for in this instance is wss.resx. This is not located in the Resources folder we were previously looking. To find the file the best way is to do a Windows search for *.resx in the 12 hive. This lists out all the resx files used by SharePoint. You will find that wss.resx exists in 12/CONFIG/Resources. &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Use this method when you need to determine the what strings mean. Don’t change the resx files however as you will be modifying every site in the farm.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=259" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Site+Definitions/default.aspx">Site Definitions</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/List+Views/default.aspx">List Views</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Resource+Files/default.aspx">Resource Files</category></item><item><title>Hiding SharePoint List Fields Programmatically</title><link>http://csharpzealot.com/blogs/andrewb/archive/2009/02/09/hiding-sharepoint-list-fields-programmatically.aspx</link><pubDate>Tue, 10 Feb 2009 02:53:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:258</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Sometimes a customer may request that various fields should not be displayed in certain list forms. SharePoint lists have a number of forms that are used to view, create&amp;nbsp;and update field data.&lt;/P&gt;
&lt;P&gt;These fields are called dispform.aspx, editform.aspx and newform.aspx. There are a few ways you can edit these forms. Some people use SharePoint Designer,&amp;nbsp;I personally never use it. In a nutshell you can insert a custom list form into one of the list forms&amp;nbsp;I mentioned previously and then go to town on it by deleting or inserting fields. Here is a link on how to &lt;A class="" href="http://blah.winsmarts.com/2007-5-Customize_the_-and-quot;NewFormaspx-and-quot;_page_for_a_SharePoint_List.aspx"&gt;customize the NewForm.aspx&lt;/A&gt;. I'm not to sure about how this approach is long term as&amp;nbsp;I am unsure&amp;nbsp;that when you add new fields to your list for instance that the changes are reflected on your customized form.&lt;/P&gt;
&lt;P&gt;Another way to show/hide fields is to modify the list schema.xml file of any custom lists you create. To be honest I tried using this approach on a custom list to hide some fields but did not have much luck. The list was installed by a WSP and activated in the site definition and didn't pick up the fact that I had said to ShowInDisplayForm="false" for a number of fields. Why it didn't I am yet to discover. I had a custom content type declared in the list schema however the content type was not set up as separate feature. Maybe if I set the ShowInDisplayForm="false" in the field declaration feature. e.g. the element manifest file called columns.xml that sets up custom fields and is specified as part of the content type feature. So that approach was a no go for me.&lt;/P&gt;
&lt;P&gt;The approach I am going to discuss now was by far the easiest for me. That is to hide fields programmatically from a list from. In my instance it was the display form. To achieve this all I had to do was connect to&amp;nbsp;my SharePoint site. I used a console application to run all my tests before I actually include them into my deployment packages. Here is the code to insert in your Console Application:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; using (SPSite site = new SPSite("http://Your Site"))&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; using (SPWeb web = site.OpenWeb())&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine("Get List Object");&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPList list = web.Lists["Powers"];&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR&gt;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (SPField fields in list.Fields)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine("Field: " + fields.Title.ToString());&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPField listField = list.Fields["Your List Field To Hide"];&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listField.ShowInDisplayForm = false;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listField.ShowInEditForm = true;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listField.ShowInListSettings = true;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listField.ShowInNewForm = true;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listField.ShowInViewForms = true;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listField.Update();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine("Show field " + "Your List Field To Hide" + " in display form:&amp;nbsp; " + listField.ShowInDisplayForm);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;It's fairly straight forward and allows you to set the ShowInDisplayForm = false. Upon compiling and running the application you can refresh your list view form in the browser&amp;nbsp;and the field should be hidden. The other list forms are also specified in the code in case you want to hide them from other forms also. You will note the update is done on the listField object not the actual list. I tried for ages trying to get my changes to occur only to realize I was updating the list object. This does nothing to update the fields. I am also listing out the fields of the list using the loop to get the exact display name of the fields. Obviously not required though so you can delete this out if you want.&lt;/P&gt;
&lt;P&gt;So far my experience is telling me that not all fields can be switched on or off. All the&amp;nbsp;custom fields&amp;nbsp;in the list&amp;nbsp;can be&amp;nbsp;shown or hidden but&amp;nbsp;&amp;nbsp;I am having difficulty with&amp;nbsp;one SharePoint field nameley the "Approval Status" field. This states whether an item is approved, pending etc Hopefully I can get to the bottom of this one.&lt;/P&gt;
&lt;P&gt;Once you are happy with your code you can easily insert this into a feature activated event as part of a feature receiver to save yourself the hassle of having to manually hide the field using the console application.&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=258" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Forms/default.aspx">SharePoint Forms</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+List+Forms/default.aspx">SharePoint List Forms</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Custom+SharePoint+Lists/default.aspx">Custom SharePoint Lists</category></item><item><title>How to get your Internet Explorer Developer Toolbar to work</title><link>http://csharpzealot.com/blogs/andrewb/archive/2009/01/27/how-to-get-your-internet-explorer-developer-toolbar-to-work.aspx</link><pubDate>Tue, 27 Jan 2009 07:39:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:257</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;If you need to develop the branding of a MOSS site chances are you will use one of the developer toolbars that can be enabled in your browser. IE and Firebox both supply there own versions. Some would argue that the Firefox developer toolbar is better but that is not the point of this post. &lt;/P&gt;
&lt;P&gt;You may have difficulty getting the IE toolbar to work after you first download and install the plugin. The symptons I'm referring to are that you can see the toolbar but every option is greyed out. After looking around the internet a bit it seemed that I was not alone. To solve the issue simply select Tools &amp;gt; Options from the IE menu. Select the advanced tab and under the Browsing section make sure that "enable third party browser extensions"* is checked. Close and start up a new window of Internet Explorer and check to see that you can select the&amp;nbsp;items in the&amp;nbsp;developer tool bar.&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=257" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Design/default.aspx">SharePoint Design</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Internet+Explorer/default.aspx">Internet Explorer</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Developer+Toolbar/default.aspx">Developer Toolbar</category></item><item><title>Increasing the widths of Multi-Select boxes on SharePoint List Forms using JQuery</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/12/10/increasing-the-widths-of-multi-select-boxes-on-sharepoint-list-forms-using-jquery.aspx</link><pubDate>Wed, 10 Dec 2008 07:43:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:256</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Have you ever wondered how it would be possible to increase the width of a Form Field such as a multi-select box? To see what I mean create a custom field in a list. This can be a lookup to a list that allows multiple values. When you create and edit an item the width of the select box is governed by a DIV that is hard-coded and wraps the form element (select box). create and edit a new item in teh list. If you do a search on the source code of your editform.aspx for example, you will find a div tag&amp;nbsp;specifying absolute width and&amp;nbsp;height:&amp;nbsp;&lt;STRONG&gt;&amp;lt;div style='width:143px;height:125px;overflow:scroll'&amp;gt;&lt;/STRONG&gt; &lt;/P&gt;
&lt;P&gt;The div tag restricts how much text is being displayed so if you have some fairly big strings you may only see half of them. I did spend quite a while trying out a few options e.g. embedding classes into the Table Cells that contained the Div and few other bits and pieces but eventually found I could use a JQUERY to modify the DOM at runtime&amp;nbsp;and set new widths for the "problematic" DIV tag.&lt;/P&gt;
&lt;P&gt;This technique&amp;nbsp;works really well if you are deploying the list and its fields as features as you can insert this code directly into the any forms such as the editform.aspx and newform.aspx and not have to go into SharePoint Designer to access your form pages.&lt;/P&gt;
&lt;P&gt;Firstly download the jQuery core code &lt;A href="http://docs.jquery.com/Downloading_jQuery"&gt;http://docs.jquery.com/Downloading_jQuery&lt;/A&gt;. Place this script file in the 12 hive somewhere. I used a new folder in the layouts folder e.g .../12/templates/layouts/myfolder&lt;/P&gt;
&lt;P&gt;Create another js file to contain your code. In this js file insert the following jQuery. Save the js as myjquery.js:&lt;FONT size=2&gt;&lt;/P&gt;
&lt;P&gt;$(document).ready(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;function&lt;/FONT&gt;&lt;FONT size=2&gt;() { &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;$(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"td.ms-input div"&lt;/FONT&gt;&lt;FONT size=2&gt;).css(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"width"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"300px"&lt;/FONT&gt;&lt;FONT size=2&gt;); &lt;/FONT&gt;&lt;BR&gt;&lt;FONT size=2&gt;$(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"td.ms-input div"&lt;/FONT&gt;&lt;FONT size=2&gt;).css(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"height"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"125px"&lt;/FONT&gt;&lt;FONT size=2&gt;);&lt;/FONT&gt;&lt;BR&gt;&lt;FONT size=2&gt;$(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"td.ms-input div"&lt;/FONT&gt;&lt;FONT size=2&gt;).css(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"overflow"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"auto"&lt;/FONT&gt;&lt;FONT size=2&gt;); &lt;/FONT&gt;&lt;BR&gt;&lt;FONT size=2&gt;$(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"td.ms-input div input"&lt;/FONT&gt;&lt;FONT size=2&gt;).css(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"width"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"300px"&lt;/FONT&gt;&lt;FONT size=2&gt;); &lt;/FONT&gt;&lt;BR&gt;$(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"td.ms-input div select"&lt;/FONT&gt;&lt;FONT size=2&gt;).css(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"width"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"300px"&lt;/FONT&gt;&lt;FONT size=2&gt;); &lt;/FONT&gt;&lt;BR&gt;&lt;FONT size=2&gt;}); &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;Using basic inheritance rules the jQuery will find the &lt;STRONG&gt;any &lt;/STRONG&gt;input and select boxes contained within the table cell with a class of &lt;STRONG&gt;ms-input&lt;/STRONG&gt;. It will then locate the the DIV nested in that table and apply a width of 300px.&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;If you have access to the editform.aspx&amp;nbsp;located in your&amp;nbsp;feature then&amp;nbsp;insert the reference to the jQuery base code and your jQuery code files as follows.&lt;/P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;
&lt;P&gt;&amp;lt;&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;script&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;type&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="text/javascript"&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;src&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="/_LAYOUTS/myfolder/jquery-1.2.6.min.js"&amp;gt;&amp;lt;/&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;script&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&amp;gt;&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;
&lt;P&gt;&amp;lt;&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;script&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;type&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="text/javascript"&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;src&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="/_LAYOUTS/myfolder/myjquery.js"&amp;gt;&amp;lt;/&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;script&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&amp;gt;&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;I placed my references into the &lt;STRONG&gt;PlaceHolderMain&lt;/STRONG&gt; content placeholder.&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;if&amp;nbsp; you dont have access to&amp;nbsp;the form you want to modify&amp;nbsp;via a feature&amp;nbsp;you will need to use SharePoint Designer to open up the form. &lt;/FONT&gt;&lt;FONT size=2&gt;Save the form and make sure your paths to your JS files are correct and make sure when you browse the form in the browser that your changes are actually being applied. The last thing you want to worry about is caching pages so do an IISRESET to be sure.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;&lt;FONT size=2&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=256" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Forms/default.aspx">SharePoint Forms</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/FormFields/default.aspx">FormFields</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+List+Forms/default.aspx">SharePoint List Forms</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/JQUERY/default.aspx">JQUERY</category></item><item><title>PSSUG: Peter Ward presents on Business Continuity with Backup and Restore</title><link>http://csharpzealot.com/blogs/perth-events/archive/2008/09/30/pssug-peter-ward-presents-on-business-continuity-with-backup-and-restore.aspx</link><pubDate>Tue, 30 Sep 2008 09:46:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:255</guid><dc:creator>CSharpZealot</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;SPAN id=description&gt;We're running again and this time around we have Peter Ward (again, yay) delivering a business orientated presentation. &lt;BR&gt;&lt;BR&gt;There's more news - indeed big news, which will be announced at the event, so be certain that you come along. &lt;BR&gt;&lt;BR&gt;We have changed venue (yes i know, again) and this time it's with bells and whistles with food as well. &lt;BR&gt;&lt;BR&gt;As you know, we've had Peter present on a number of occasions, so that it's almost fair to say that he's one of our biggest numbers. For you that's been attending a presentation with Peter, you know already that it's going to be great!! &lt;BR&gt;&lt;BR&gt;A little bit about Peter: &lt;BR&gt;Peter Ward is WARDY IT Solutions Chief Technical Architect. Peter is an active member in the Australian SQL Server community and President of the Queensland SQL Server User Group. Peter is a highly regarded speaker at SQL Server events throughout Australia and is a sought after SQL Server consultant and trainer, providing solutions for some of the largest SQL Server sites in Australia. Peter also writes the editorial for the daily SQL-Server-Performance.com newsletter. In the last year Peter was selected as a speaker for Tech-Ed Australia and America, SQL Server Open World in and as a Spotlight speaker for the PASS Community Summit, the largest SQL Server event in the world. Peter has been awarded as a Microsoft Most Valuable Professional for his technical excellence and commitment to the SQL Server Community. &lt;BR&gt;&lt;BR&gt;Topic: &lt;BR&gt;Business Continuity with Backup and Restore &lt;BR&gt;The Backup and Restore commands are the most important SQL Server commands in a Database Administrators arsenal. In the event of a system failure or user error, the Backup and Restore commands provide the ability to recover from what otherwise could be a catastrophe. With the release of SQL server 2005 and 2008 these commands have been enhanced significantly. For example, the ability to take an adhoc backup without affecting the restore sequence and the ability to revert a database from a snapshot. In this session, Peter Ward from WARDY IT Solutions (www.wardyit.com) will explain how to utilise many of the new recovery features as part of your SQL Server business continuity strategy. &lt;BR&gt;&lt;BR&gt;Venue: Level 15, 191 St Georges Terrace (that's Fujitsu's main offices at the Parmelia House, Corner of Mills St and St Georges Terrace). &lt;BR&gt;&lt;BR&gt;Time: 5:30pm - 7:00pm &lt;BR&gt;Date: 16th of October, 2008 &lt;BR&gt;&lt;BR&gt;If you have any questions please don't hesitate to contact me (brian.madsen[at]live.com). &lt;BR&gt;&lt;BR&gt;Be mindful, that this is a new venue (right across from where we used to hang out!). &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To register for this session, click here:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://www.sqlserver.org.au/Events/RegisterMeeting.aspx?EventId=358"&gt;http://www.sqlserver.org.au/Events/RegisterMeeting.aspx?EventId=358&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Looking forward to seeing you there.&lt;/SPAN&gt; &lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=255" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/perth-events/archive/tags/Perth+SQL+Server+User+Group/default.aspx">Perth SQL Server User Group</category></item><item><title>Accessible MOSS Intranet master page</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/09/12/accessible-moss-intranet-master-page.aspx</link><pubDate>Fri, 12 Sep 2008 03:20:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:254</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;I have started building up our Accessible moss portal master page borrowing the same methods applied to the AKS master pages. These include labeling tables as layout tables and using the wss search control. I have added in my own labels for the scopes drop down and search input box as this is required to comply with accessibility standards. Doing this I have managed to narrow the accessibility errors down to 2 for the portal home page which is pretty good. I am using&amp;nbsp;&lt;A class="" title="WAVE accessibility test" href="http://wave.webaim.org/" target=_blank&gt;WAVE&lt;/A&gt; to test the accessibility. The errors I am getting are for missing "alt" text for some blank.gif images. I tried to find them but they are in SharePoint controls that I can't modify. The 2 errors is 1 lower than the amount for the AKS master pages.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;I also converted the DOC TYPE to “loose” instead of running in quirks mode. What happens when you do this to the default master page? Well the height="100%" for tables, cells and rows will no longer work so you are left with a portal that does not extend the full height of your browser. You can work around this however if you set some background images to repeat vertically. This will give the impression that your site fits the height of the browser. It can also be achieved for fixed width or liquid layout sites.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=254" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Accessibilty/default.aspx">SharePoint Accessibilty</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Master+Pages/default.aspx">Master Pages</category></item><item><title>Craving SharePoint Podcasts and training movies</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/09/03/craving-sharepoint-podcasts-and-training-movies.aspx</link><pubDate>Thu, 04 Sep 2008 01:50:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:253</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Lately I have been craving some fresh podcasts and videos to load on my ipod touch and listen to/watch whilst I am at work. I have been hunting through google but have been unsuccessful in digging anything up. The best I have found so far are those delivered to my inbox via rss from the &lt;A href="http://blogs.msdn.com/sharepoint/"&gt;http://blogs.msdn.com/sharepoint/&lt;/A&gt;. If any of you are not already subscribed to this then I recommend getting onto it. It's SharePointy gold straight from the source.&lt;/P&gt;
&lt;P&gt;Training videos are frequently displayed revolving around development tasks in Visual Studio 2008. &lt;/P&gt;
&lt;P&gt;If anyone has some other good links please feel free to post them up&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=253" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/RSS/default.aspx">RSS</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Training/default.aspx">SharePoint Training</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Podcasts/default.aspx">Podcasts</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Blogs/default.aspx">Blogs</category></item><item><title>Designing good SharePoint Case Management GUI</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/08/04/designing-good-gui.aspx</link><pubDate>Mon, 04 Aug 2008 03:56:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:252</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;I have been working on&amp;nbsp;a SharePoint Case Management&amp;nbsp;Portal Project for some time now and we've just finished iteration 3 now. When the site was first designed and built, the custom SharePoint&amp;nbsp;menu looked cool. Each item had its own icon and each icon meant something as it was not really overwhelming on the eye. We've added&amp;nbsp;in&amp;nbsp;a whole bunch of&amp;nbsp;new icons and now the menu looks terrible. &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;I've been browsing the web researching GUI design principles when I came across a site called &lt;A title="IxDA - Interaction Design Association" href="http://www.ixda.org/index.php"&gt;&lt;FONT color=#800080&gt;IxDA &lt;/FONT&gt;&lt;/A&gt;(Interaction Design Association). It’s not your typical "look at this design" site but&amp;nbsp;a forum for discussion regarding Design Patterns, Tools, Research and Methods regarding Web, Desktop, Mobile and any other type of Interface design. I highly recommend a read if you want to stimulate your brain into gear with some good quality discussion.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;So what am I going to do about my menu.&amp;nbsp;Well so far I have built up mental model of all the items that make up the menu. I have given the idea of&amp;nbsp;a tree menu some thought but I find the idea of an expanding/contracting tree menu a bit cumbersome. Whilst this would certainly&amp;nbsp;help&amp;nbsp;with the issue of keeping the menu height small (when tree items are contracted) the thought of having to implement this in SharePoint and the Value it will add really don't seem too attractive to me.&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;In terms of what we currently have, the items are grouped into two sections -&amp;nbsp; All items of type "View" e.g. view details, view notes etc were in one group and all actions items in a separate group. In all the there are 22 items which makes for a lengthy menu. Potentially too long if&amp;nbsp;we want to&amp;nbsp;ensure that majority of items are visible in a 1024 resolution.&amp;nbsp;I like the idea of limiting the amount of clicks the user would have to do to get to a page. This means that splitting the site up into a 2 level hierarchy would not really do the job. By this mean having top level menu items that would link you through to sub-sites for a given action with the rest of the menu options provided on the sub-site. Hmmm decision decisions.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Well I’ll mess around about in Photoshop I think to see how it could look. But in the mean time check out &lt;A class="" title=IxDA href="http://www.ixda.org/index.php"&gt;IxDA&lt;o:p&gt;&lt;/o:p&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=252" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Design+Links/default.aspx">Design Links</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Design/default.aspx">SharePoint Design</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/GUI/default.aspx">GUI</category></item><item><title>Settting a Master Page for a WSS SharePoint site</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/07/22/settting-a-master-page-for-a-wss-sharepoint-site.aspx</link><pubDate>Wed, 23 Jul 2008 02:58:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:251</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Just a had a colleague ask me how to set the Master Page for a WSS site. I had to cast my mind back to a project I worked on&amp;nbsp;a while ago&amp;nbsp;in which two techniques were used to set the Master Page. One way was editing the "Modify All Site Settings" page,&amp;nbsp;accessed through the Site Actions button, which involved a modified user interface to allow an administrator to actually pick a master page from the gallery as you would in a standard Moss publishing site. This technique is actually packaged as a web part at &lt;A class="" title=SPMasterPicker href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=SPMasterPicker" target=_blank&gt;CodePlex&lt;/A&gt;. &lt;/P&gt;
&lt;P&gt;The other technique involved using features to deploy a master page to the master page gallery and then using another feature to set it as the sites master page by using code within the FeatureActivated SPFeatureReceiverProperties.&lt;/P&gt;
&lt;P&gt;The below code from the FeatureActivated&amp;nbsp;method&amp;nbsp;also sets a logo and theme that I had created. This can be ommitted if you don't need to set this.&amp;nbsp;As always I create an additional folder within the Images folder in the 12 hive just incase any service pack updates that are applied to a SharePoint installation overwrites my files.&lt;/P&gt;
&lt;P&gt;public override void FeatureActivated(SPFeatureReceiverProperties properties)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPWeb newWeb = (SPWeb)properties.Feature.Parent;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWeb.AllowUnsafeUpdates = true;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Apply web theme&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWeb.ApplyTheme("none");&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWeb.ApplyTheme("Your Theme");&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Apply Logo&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWeb.SiteLogoUrl = "/_layouts/images/YourFolder/YourLogo.gif";&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWeb.SiteLogoDescription = "Logo Description";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Check if MasterPage exists in Master Page Gallery&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (SPListItem listItem in newWeb.Site.RootWeb.Lists["Master Page Gallery"].Items)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (listItem["Name"].ToString().Equals("YourMasterPage.Master", StringComparison.OrdinalIgnoreCase))&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Found Master Page So apply it to the current web&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string masterUrl = new Uri(newWeb.Site.Url).GetComponents(UriComponents.Path, UriFormat.Unescaped);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!masterUrl.StartsWith("/")) masterUrl = "/" + masterUrl;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!masterUrl.EndsWith("/")) masterUrl += "/";&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; masterUrl += "_catalogs/masterpage/YourMasterPage.master";&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWeb.MasterUrl = masterUrl;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWeb.CustomMasterUrl = masterUrl;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=251" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Features/default.aspx">Features</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Master+Pages/default.aspx">Master Pages</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/WSS/default.aspx">WSS</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Feature+Receiver/default.aspx">Feature Receiver</category></item><item><title>AKS Accessibility Kit for SharePoint installed and working</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/07/11/aks-accessibility-kit-for-sharepoint-installed-and-working.aspx</link><pubDate>Fri, 11 Jul 2008 08:51:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:250</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Today I had a bit of spare time to attempt an installation of the Accessibility Kit for SharePoint. The kit can be download from &lt;A title="CodePlex AKS Download" href="http://www.codeplex.com/aks"&gt;&lt;FONT color=#800080&gt;Codeplex &lt;/FONT&gt;&lt;/A&gt;or the &lt;A title="AKS site itself" href="http://aks.hisoftware.com/index.html"&gt;&lt;FONT color=#800080&gt;AKS site itself&lt;/FONT&gt;&lt;/A&gt;. The file size is around 17MB&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;One of the things I discovered after installing AKS file is that it really is only built for public facing MOSS sites at the moment. What you get when you install the kit is basically a feature that sits within your Features folder on the file system. It’s the one called AKS. Using the STSADM tool you can install and activate the feature for a given site collection. This will deploy a bunch of AKS master pages and CSS file onto you site. Navigate to the site collection where you activated the feature and browse to site settings and the master page and page layouts gallery. You will find the new master&amp;nbsp;pages titled AKS_BlueBand.master and&amp;nbsp;several others.&amp;nbsp;The&amp;nbsp;CSS is deployed to the style library.&amp;nbsp;A good source of information for exactly what happens can be found at &lt;A title="CMS Wire AKS description" href="http://www.cmswire.com/cms/product-news/sharepoint-gets-still-more-accessible-with-accessibility-toolkit-002058.php"&gt;&lt;FONT color=#800080&gt;CMS Wire&lt;/FONT&gt;&lt;/A&gt;. &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;I hope to crack open the master pages for a good look and run the pages through an online checker such as ATRC. We are currently building some Accessible SharePoint sites for some Government agencies however we built it using our own master pages so it will be interesting to see how this one stacks up. So far the AKS master pages I have applied look pretty good. There is an issue with the site actions menu playing up a bit in terms of styling widths on mouse hover.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Hopefully have some more on this fairly soon. So far so good with the AKS install&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=250" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Accessibilty/default.aspx">SharePoint Accessibilty</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Master+Pages/default.aspx">Master Pages</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/AKS/default.aspx">AKS</category></item><item><title>Port in use Error with sharepoint install</title><link>http://csharpzealot.com/blogs/kiwiland/archive/2008/06/29/port-in-use-error-with-sharepoint-install.aspx</link><pubDate>Mon, 30 Jun 2008 03:10:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:248</guid><dc:creator>DUSTY_NZ</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;If you are getting the error&lt;/P&gt;
&lt;P&gt;"&lt;STRONG&gt;The port specified has already been chosen.&amp;nbsp; Please choose a different port&lt;/STRONG&gt;." &lt;/P&gt;
&lt;P&gt;when trying to configure the Central admin then you may find that the issue comes from your machine name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Building a Demo&amp;nbsp;SharePoint Environment I was encountering the issue. I was stumped with the above error and no matter what port I tried I could not get it to work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I foudn the problem when working through the logs.&lt;/P&gt;
&lt;P&gt;06/26/2008 16:07:21&amp;nbsp; 1&amp;nbsp; INF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Searching for a duplicate site &lt;A href="http://mossdemo/#2:11000/"&gt;http://MOSSDEMO#2:11000/&lt;/A&gt;&lt;BR&gt;06/26/2008 16:07:21&amp;nbsp; 1&amp;nbsp; ERR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Found a duplicate site &lt;A href="http://mossdemo/#2:11000/"&gt;http://mossdemo:80/#2:11000/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;It looks like the # is used as a delimiter and throwing the everything out. I renamed the machine and all sweet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=248" width="1" height="1"&gt;</description></item><item><title>Kerberos Delegation Howto - The APP</title><link>http://csharpzealot.com/blogs/kiwiland/archive/2008/06/10/kerberos-delegation-howto-the-app.aspx</link><pubDate>Wed, 11 Jun 2008 02:38:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:245</guid><dc:creator>DUSTY_NZ</dc:creator><slash:comments>0</slash:comments><description>&lt;TABLE class="" cellSpacing=0 cellPadding=0&gt;

&lt;TR&gt;
&lt;TD class=ms-PostTitle class="ms-PostTitle"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;
&lt;DIV class=ms-PostBody&gt;
&lt;DIV&gt;
&lt;DIV class=ExternalClassA1073FA86165481D9D3CCAD5757ACAED&gt;
&lt;DIV&gt;Here's the app. Very simple to deploy.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href="http://blog.kiwiland.net.nz/Zip%20Files/KerberosTest.zip"&gt;http://blog.kiwiland.net.nz/Zip%20Files/KerberosTest.zip&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;This app was not written by myself. Instead by an excellent co-worker Stephen Evers. &lt;A href="http://csharpzealot.com/blogs/stevene/default.aspx"&gt;http://csharpzealot.com/blogs/stevene/default.aspx&lt;/A&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=245" width="1" height="1"&gt;</description></item><item><title>Kerberos Troubleshooting</title><link>http://csharpzealot.com/blogs/kiwiland/archive/2008/06/10/kerberos-troubleshooting.aspx</link><pubDate>Wed, 11 Jun 2008 02:29:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:243</guid><dc:creator>DUSTY_NZ</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;And here is some information that I have gathered from Dr Google regarding troubleshooting kerberos.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://csharpzealot.com/blogs/kiwiland/pages/kerbero-troubleshooting.aspx"&gt;http://csharpzealot.com/blogs/kiwiland/pages/kerbero-troubleshooting.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=243" width="1" height="1"&gt;</description></item><item><title>Kerberos Delegation</title><link>http://csharpzealot.com/blogs/kiwiland/archive/2008/06/10/kerberos-delegation.aspx</link><pubDate>Wed, 11 Jun 2008 02:19:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:240</guid><dc:creator>DUSTY_NZ</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Finally here is a howto, walk through or whatever you want to call it. I hated kerberos. I mean who doesn't. Avoided it like the plague and treated it like someone elses problem.&lt;/P&gt;
&lt;P&gt;That was until it became my problem. Development project that required Kerberos delegation and I looked everywhere for assistance and found no help. So I sat down and worked it out. The 3 most boring days of my life.&lt;/P&gt;
&lt;P&gt;Anyway, all sussed so decided to write a lab to help other people.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://csharpzealot.com/blogs/kiwiland/pages/kerberos-delegation.aspx"&gt;http://csharpzealot.com/blogs/kiwiland/pages/kerberos-delegation.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=240" width="1" height="1"&gt;</description></item><item><title>A bit about me</title><link>http://csharpzealot.com/blogs/kiwiland/archive/2008/06/10/a-bit-about-me.aspx</link><pubDate>Wed, 11 Jun 2008 02:09:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:239</guid><dc:creator>DUSTY_NZ</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;FONT face="Times New Roman" size=3&gt;Who am I? Well I am an Infrastructure Consulting working in Perth, West Australia. I have almost 20 years experience in the IT industry and broke my teeth in on working with DOS 3 and everything in between. Those were the days having to manually configure IRQ's and DMA ports just to get your sound card working and 3D games involved 2D with perspective.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman" size=3&gt;My skill set now falls in-between anything and everything and currently seems to have a focus on SharePoint. My contribution to the IT industry is as a problem solver. Most of the articles you will find here are based upon questions that have been raised in my role and Dr Google has been unable to resolve.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman" size=3&gt;&amp;nbsp;Anyway, enough about me and onto why you are here.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman" size=3&gt;&amp;nbsp;Answers to the universe or there abouts.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman" size=3&gt;&amp;nbsp;Paul&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=239" width="1" height="1"&gt;</description></item><item><title>Annual Exmouth Fishing Trip</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/06/03/annual-exmouth-fishing-trip.aspx</link><pubDate>Wed, 04 Jun 2008 01:30:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:232</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>Last week was my annual&amp;nbsp;fishing&amp;nbsp;trip to Exmouth. Exmouth is a remote town around 13 hours drive north of Perth. A couple friends and myself, Eric Salotti and &lt;SPAN class=SubjectSenderLabel id=SenderData&gt;&lt;SPAN class=ContactPresence&gt;&lt;/SPAN&gt;Marco De Laurentiis&amp;nbsp;&lt;/SPAN&gt; cruised up for the week to fish off Marco's boat. The fishing as usual provided plenty of highlights but it wasn't up to its usual explosiveness. I managed to snare myself some personal best fish however in the shape of Spanish Mackerel, Rankin Cod and Coral Trout. The currents were a bit funny and there was a bit of weed around which caused problems when we were trolling. We got to see some massive whales jumping around which was absolutely awesome. Can't wait to get back up there next year.&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=232" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/fishing/default.aspx">fishing</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/hobbies/default.aspx">hobbies</category></item><item><title>More SpellChecker quirks - Select default language or check in spanish anyone?</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/06/03/more-spellchecker-quirks-select-default-language-or-check-in-spanish-anyone.aspx</link><pubDate>Tue, 03 Jun 2008 09:39:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:231</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;At the moment I'm just looking into an extremely interesting bug within the sharepoint spell checker. One of my colleagues, Fred&amp;nbsp; Schwass, informed me that when you type in certain words the default language drop down appears asking you to select a language (Australian in our case) even though&amp;nbsp; we have explicitly set to default to Australian anyway.&lt;/P&gt;
&lt;P&gt;Normal functionality performs&amp;nbsp;as follows. Enter your text, submit your form or check your text, spell checker highlights suggested words&lt;/P&gt;
&lt;P&gt;Buggy&amp;nbsp;functionality perfroms as follows: Enter your text, submit&amp;nbsp;your form or check your text, spell checker requires you to select default language, spell checker highlights suggest words&lt;/P&gt;
&lt;P&gt;It's funny because you type in "Innacurate" or "Orange tree" and it produces the bug however typing in "orange" or "tree" will not produce the bug. There are also certain words that trigger the spellchecker to check the words in spanish. &lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=231" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Spell+Check/default.aspx">Spell Check</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SpellChecker/default.aspx">SpellChecker</category></item><item><title>RDN: Expression Web 2 and Silverlight + Reactive Programming with SyncLINQ</title><link>http://csharpzealot.com/blogs/perth-events/archive/2008/05/26/rdn-expression-web-2-and-silverlight-reactive-programming-with-synclinq.aspx</link><pubDate>Mon, 26 May 2008 15:18:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:229</guid><dc:creator>CSharpZealot</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;A href="http://msmvps.com/blogs/brianmadsen/WindowsLiveWriter/ReadifyDeveloperNetworkinActionsolidtech_F295/RND_logo_4.png"&gt;&lt;IMG style="BORDER-TOP-WIDTH:0px;BORDER-LEFT-WIDTH:0px;BORDER-BOTTOM-WIDTH:0px;BORDER-RIGHT-WIDTH:0px;" height=140 alt=RND_logo src="http://msmvps.com/blogs/brianmadsen/WindowsLiveWriter/ReadifyDeveloperNetworkinActionsolidtech_F295/RND_logo_thumb_1.png" width=655 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.readify.net/" target=_blank&gt;Readify's&lt;/A&gt; presence in Perth is hardly a secret and now us "westerners" gets to profit from the high level of skill that &lt;A href="http://www.readify.net/" target=_blank&gt;Readify&lt;/A&gt; stands for.&lt;/P&gt;
&lt;P&gt;Alongside &lt;A href="http://www.readify.net/" target=_blank&gt;Readify's&lt;/A&gt; move to Perth we get to see &lt;A href="http://www.readify.net/Default.aspx?tabid=286" target=_blank&gt;RDN&lt;/A&gt; in action.&lt;/P&gt;
&lt;P&gt;Two brains in the field, &lt;A href="http://somenewkid.blogspot.com/" target=_blank&gt;Alister Jones&lt;/A&gt; (UX Guru) and &lt;A href="http://www.paulstovell.com/blog" target=_blank&gt;Paul Stovell&lt;/A&gt; (.Net Guru) is hitting us hard with the first event from &lt;A href="http://www.readify.net/rdn.aspx" target=_blank&gt;RDN&lt;/A&gt;.&lt;EM&gt;&lt;STRONG&gt;&lt;A href="http://www.readify.net/rdnregister.aspx" target=_blank&gt;&lt;IMG style="BORDER-TOP-WIDTH:0px;BORDER-LEFT-WIDTH:0px;BORDER-BOTTOM-WIDTH:0px;MARGIN:0px 0px 0px 10px;BORDER-RIGHT-WIDTH:0px;" height=444 alt=RND_29-05_event_details src="http://msmvps.com/blogs/brianmadsen/WindowsLiveWriter/ReadifyDeveloperNetworkinActionsolidtech_F295/RND_29-05_event_details_3.png" width=270 align=right border=0&gt;&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;ReadiPrimer - Expression Web 2 and Silverlight 2: Twice the Power, Double the Ease &lt;/STRONG&gt;- presented by &lt;A href="http://somenewkid.blogspot.com/" target=_blank&gt;Alister Jones&lt;/A&gt; (MVP)&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Fresh off the back at presenting at REMIX08, hear our local UX guru Alister Jones present on the next version of Microsoft Expression Web, which provides developers and designers iwth the tools they need to work with the current and next versions of Microsoft Silverlight. This session demonstrates how the new features in Expression Web and Silverlight make it much easier to create rich interactive applications for the web.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;ReadiDepth - Reactive Programming with SyncLINQ&lt;/STRONG&gt; - presented by &lt;A href="http://www.paulstovell.com/blog" target=_blank&gt;Paul Stovell&lt;/A&gt; (MVP)&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;As Windows Client developers, our platform is always improving. From Win16 to WPF and Silverlight; what was once considered impossible has increasingly become normal. However, while the capabilities of our platform have evolved, have we? Is Object Orientated programming enough, or is there a paradigm that can better leverage these platforms?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;During this presentation, Paul introduces Reactive Programming. If you work with Windows Forms, WPF and Silverlight, prepare for a shift!&lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What more can you possibly ask for? Two top notch pros presenting on exciting and new technologies?&lt;/P&gt;
&lt;P&gt;I have long waited for &lt;A href="http://www.readify.net/rdn.aspx" target=_blank&gt;RDN&lt;/A&gt; to come to Perth and now they're finally here!&lt;/P&gt;
&lt;P&gt;55 seats has already been snatched up, so be quick and register here: &lt;A title=http://www.readify.net/rdnregister.aspx href="http://www.readify.net/rdnregister.aspx"&gt;http://www.readify.net/rdnregister.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Even though the event calendar still doesn't have a listing for Perth, it's worthwhile to keep a close eye on what's coming (i'm sure that there'll be events coming very, very soon to the calendar.&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.readify.net/rdncalendar.aspx href="http://www.readify.net/rdncalendar.aspx"&gt;http://www.readify.net/rdncalendar.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There's also a Facebook group available for us who's addicted - &lt;A title=http://www.facebook.com/group.php?gid=9424182970 href="http://www.facebook.com/group.php?gid=9424182970"&gt;http://www.facebook.com/group.php?gid=9424182970&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Anyways, maybe we can get to rub shoulders with notables like &lt;A href="http://www.notgartner.com/" target=_blank&gt;Mitch Denny&lt;/A&gt; (MVP), &lt;A href="http://www.markitup.com/" target=_blank&gt;Darren Neimke&lt;/A&gt; (MVP) and &lt;A href="http://weblogs.asp.net/pglavich/" target=_blank&gt;Paul Glavich&lt;/A&gt; (MVP) at some stage?&lt;/P&gt;
&lt;DIV class=wlWriterSmartContent id=scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a80fef41-7a23-4bd5-b76e-5800873aece5 style="PADDING-RIGHT:0px;DISPLAY:inline;PADDING-LEFT:0px;PADDING-BOTTOM:0px;MARGIN:0px;PADDING-TOP:0px;"&gt;Technorati Tags: &lt;A href="http://technorati.com/tags/Readify" rel=tag&gt;Readify&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Alister%20Jones" rel=tag&gt;Alister Jones&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Paul%20Stovell" rel=tag&gt;Paul Stovell&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Mitch%20Denny" rel=tag&gt;Mitch Denny&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Darrren%20Neimke" rel=tag&gt;Darrren Neimke&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Paul%20Glavich" rel=tag&gt;Paul Glavich&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Readify%20Developer%20Network" rel=tag&gt;Readify Developer Network&lt;/A&gt;,&lt;A href="http://technorati.com/tags/RDN" rel=tag&gt;RDN&lt;/A&gt;&lt;/DIV&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=229" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/perth-events/archive/tags/Readify+Developer+Network/default.aspx">Readify Developer Network</category></item><item><title>Advanced Search Bug in SharePoint</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/05/08/advanced-search-bug-in-sharepoint.aspx</link><pubDate>Fri, 09 May 2008 02:27:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:228</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Recently I was doing some work for a client around setting up an advanced search page and some scopes. The client has several web&amp;nbsp;applications set up and the Shared Service Provider (SSP)&amp;nbsp;is indexing all the web applications.&amp;nbsp;There are several scopes we set up specificly grabbing content from one of the&amp;nbsp;web applications on the SSP.&amp;nbsp;These scopes are set up to grab data that have specific content types.&lt;/P&gt;
&lt;P&gt;The problem arose when we tried to set the default scope on the advanced search page. By default the scope for advanced search is All Sites. However when you set the scope to be a custom scope and ensure that no other scopes are active when you return to the advanced search page and search for an item it will return results from every single web application. This&amp;nbsp;is very strange behavior and one which I am curious to hear if anyone has experienced anything like this. &lt;/P&gt;
&lt;P&gt;The only way to return items from the custom scope is to modify the advanced search web part and specifically enable scopes on the web part. You then have to select the scope by ticking the check box and click search. I would have thought that by setting a default scope through Site Actions &amp;gt; Site Settings &amp;gt; Modify All Site Settings &amp;gt; Search Scopes on the advanced search section that this would cover it. Maybe there is something I have overlooked. Of course one solution would be to set up seperate SSP's for the web applications but geez I would like to know why it won't work.&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=228" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Advanced+Search/default.aspx">Advanced Search</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Search+Scopes/default.aspx">Search Scopes</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+Search/default.aspx">SharePoint Search</category></item><item><title>PSSUG: Greg Low presents on Dynamic Management Views and Custom Reports in SQL Server 2005</title><link>http://csharpzealot.com/blogs/perth-events/archive/2008/04/29/pssug-greg-low-presents-on-dynamic-management-views-and-custom-reports-in-sql-server-2005.aspx</link><pubDate>Tue, 29 Apr 2008 23:05:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:227</guid><dc:creator>CSharpZealot</dc:creator><slash:comments>2</slash:comments><description>&lt;P&gt;&lt;SPAN id=description&gt;The Perth SQL Server User Group is being visited by none other than Greg Low (www.sqldownunder.com), Microsoft Regional Director, SQL Server MVP. &lt;BR&gt;&lt;BR&gt;&lt;IMG style="WIDTH:153px;HEIGHT:147px;" height=147 hspace=10 src="http://csharpzealot.com/photos/csharpzealot/images/226/original.aspx" width=153 align=left&gt;Greg Low has been presenting at the Perth SQL Server User Group before and each time has been a fantastic event. Greg is a seasoned presenter and trainer and has been synonymous with the SQL Server community in Australia for as long as I can remember. &lt;BR&gt;&lt;BR&gt;Greg is an internationally recognised consultant, developer and trainer. He has been working in development since 1978, holds a PhD in Computer Science and a host of Microsoft certifications. Greg is the country lead for Solid Quality, a SQL Server MVP and one of only three Microsoft MSDN Regional Directors for Australia. Greg also hosts the SQL Down Under podcast (www.sqldownunder.com), organises the SQL Down Under Code Camp and co-organises CodeCampOz. Greg is a PASS (Professional Association for SQL Server) board member. &lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;
&lt;HR&gt;
Event Details: &lt;BR&gt;&lt;BR&gt;Topic: Getting Started with Dynamic Management Views (DMVs) and Custom Reports in SQL Server 2005 - Greg Low &lt;BR&gt;Venue: Level 8, 182 St Georges Terrace (Change Corporation head office) &lt;BR&gt;Date: 7th of May, 2008 &lt;BR&gt;Time: 5:30pm - 7:30pm &lt;BR&gt;Cost: FREE &lt;BR&gt;&lt;BR&gt;Dynamic Management Views were introduced in SQL Server 2005 but as yet, they appear to be little understood. In this session, Greg will explain their role and show the most useful DMVs in action. He will also show how to use them with Custom Reports introduced in SQL Server 2005 Service Pack 2. &lt;BR&gt;------------------------------------------------------ &lt;BR&gt;&lt;BR&gt;As usual drinks and nibblies are provided by our sponsor - Change Corporation (www.changecorporation.com.au) and we meet in the boardroom. &lt;BR&gt;&lt;BR&gt;Please let reception know that you're there for the SQL Server user group meeting and you'll be directed by our friendly receptionist. &lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR&gt;Click on the link below to register so we can ensure that we have drinks and nibblies available for everyone.&lt;/SPAN&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://www.sqlserver.org.au/Events/RegisterMeeting.aspx?EventId=328"&gt;http://www.sqlserver.org.au/Events/RegisterMeeting.aspx?EventId=328&lt;/A&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=227" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/perth-events/archive/tags/Perth+SQL+Server+User+Group/default.aspx">Perth SQL Server User Group</category></item><item><title>AWIA: BarCamp Perth 2.0</title><link>http://csharpzealot.com/blogs/perth-events/archive/2008/04/28/awia-barcamp-perth-2-0.aspx</link><pubDate>Tue, 29 Apr 2008 02:40:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:225</guid><dc:creator>CSharpZealot</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;The Australian Web Industry Association is at it again....BarCamp Perth 2.0 (nice web 2.0 reference there) is coming!&lt;/P&gt;
&lt;P&gt;Last time was, by all accounts, a blast and i believe that &lt;A class="" href="http://www.nickhodge.com/blog/" target=_blank&gt;Nick Hodge&lt;/A&gt; attended as well.&lt;/P&gt;
&lt;P&gt;This year is bound to be even better (if at all possible?) and attendance is a must!&lt;/P&gt;
&lt;P&gt;Venue: Central TAFE 140 Royal St East Perth&lt;BR&gt;Cost: FREE!!!!!!!&lt;BR&gt;Date: 9th of May, 2008&lt;BR&gt;Time: 9am - 5pm&lt;/P&gt;
&lt;P&gt;So bring your geekgear and enjoy! I'll be seeing you there!&lt;/P&gt;
&lt;P&gt;For more information, head on over to &lt;A href="http://barcamp.port80.asn.au/Main/BarCamp2"&gt;http://barcamp.port80.asn.au/Main/BarCamp2&lt;/A&gt;&amp;nbsp;and register!&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=225" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/perth-events/archive/tags/Port80/default.aspx">Port80</category><category domain="http://csharpzealot.com/blogs/perth-events/archive/tags/AWIA/default.aspx">AWIA</category></item><item><title>AWIA: Mini-Talks 2.0</title><link>http://csharpzealot.com/blogs/perth-events/archive/2008/04/28/awia-mini-talks-2-0.aspx</link><pubDate>Tue, 29 Apr 2008 02:24:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:224</guid><dc:creator>CSharpZealot</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;The &lt;A class="" href="http://www.webindustry.asn.au/" target=_blank&gt;Australian Web Industry Association&lt;/A&gt;, the association that runs and supports the &lt;A class="" href="http://forums.port80.asn.au/" target=_blank&gt;Port80 community forums&lt;/A&gt;&amp;nbsp;is holding another round of their mini-talks.&lt;/P&gt;
&lt;P&gt;In essence it's short presentations by people from the community on a wide range of topics (i presented there at their virgin event on the Expression Suite) and it's a great way to get out there and see what's happening in the industry.&lt;/P&gt;
&lt;P&gt;Port80, which started years ago, was originally formed as a community for&amp;nbsp;designers and developers in the web industry (not to forget graphics designers, sorry guys) and has been a constant inspiration for many - kudos on AWIA for continuing the community and for the support they provide.&lt;/P&gt;
&lt;P&gt;So, go have a beer, network and enjoy the presentations!&lt;/P&gt;
&lt;DIV class=entry&gt;
&lt;P&gt;Venue: The Velvet Lounge (corner of Beufort and Grosvenor Street in Mt Lawley)&lt;BR&gt;Date: The 7th of May, 2008&lt;BR&gt;Time: 6:00pm, talks start at 6:30pm&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Join us at The Velvet Lounge next to the Flying Scotsman pub in Mt Lawley (corner of Beaufort and Grosvenor Streets) and meet your fellow web professionals. There’s free food, a bar and each month we host two, ten minute talks from members on their area of expertise. This month’s speakers are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;TBA 
&lt;LI&gt;TBA &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;No need to register, just rock up and join in! The night kicks off at 6.00pm. Talks start around 6:30pm &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=224" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/perth-events/archive/tags/Port80/default.aspx">Port80</category><category domain="http://csharpzealot.com/blogs/perth-events/archive/tags/AWIA/default.aspx">AWIA</category></item><item><title>Perth SharePoint User Group Monthly Meeting</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/04/10/perth-sharepoint-user-group-monthly-meeting.aspx</link><pubDate>Fri, 11 Apr 2008 02:21:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:222</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:11pt;FONT-FAMILY:'Calibri','sans-serif';"&gt;&lt;o:p&gt;The monthly Perth SharePoint User Group meeting is on next tuesday at 12:30 pm. This provides sharepoint developers and prospective sharepoint customers with a great opportunity to link up with some of the great resources we have around Perth plus you get free Pizza. How cool is that? For all the details see the information provided kindly by Rick Rosato below.&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:11pt;FONT-FAMILY:'Calibri','sans-serif';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:11pt;COLOR:#1f497d;FONT-FAMILY:'Calibri','sans-serif';"&gt;&lt;A href="http://www.connectedsystems.com/news/Event%20Library/Perth_SharePoint_User_Group_Meeting_April_2008.aspx"&gt;http://www.connectedsystems.com/news/Event%20Library/Perth_SharePoint_User_Group_Meeting_April_2008.aspx&lt;/A&gt; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE class=MsoNormalTable style="BACKGROUND:white;WIDTH:100%;mso-cellspacing:0cm;mso-yfti-tbllook:1184;mso-padding-alt:0cm 0cm 0cm 0cm;" cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;

&lt;TR style="mso-yfti-irow:0;mso-yfti-firstrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;BACKGROUND:#bfbfbf;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Verdana','sans-serif';"&gt;Event Information&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:1;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Event:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Topic:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;B&gt;&lt;SPAN style="FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;FONT size=3&gt;Perth SharePoint User Group&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Various SharePoint Solutions (with Ajax controls) &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:7.68%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;" rowSpan=8&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:2;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Date and Time:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Tuesday, 15th April 2008 &lt;B&gt;12:30 pm&lt;/B&gt; &lt;BR&gt;(GMT +08:00, Perth) &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;(3&lt;SUP&gt;rd&lt;/SUP&gt; Tuesday of every month)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:59.55pt;mso-yfti-irow:3;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:59.55pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Where:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:59.55pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Microsoft Perth – Presentation Room&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Level 14, QV1 Building (&lt;A href="http://www.qv1perth.com/qv1/location.htm" target=_blank&gt;http://www.qv1perth.com/qv1/location.htm&lt;/A&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;250 St George’s Terrace, Perth&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:4;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Parking Option:&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoListParagraph style="MARGIN:0cm 0cm 0pt 18pt;TEXT-INDENT:-18pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;1.&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:7pt;COLOR:black;"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;QV.1 Car Park is via Murray Street – Wilson (&lt;A href="http://www.wilsonparking.com.au/html/content-easylocator.cfm" target=_blank&gt;http://www.wilsonparking.com.au/html/content-easylocator.cfm&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:navy;FONT-FAMILY:'Arial','sans-serif';"&gt; &lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;- select WA &amp;amp; Perth CBD on right side)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN:0cm 0cm 0pt 18pt;TEXT-INDENT:-18pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;2.&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:7pt;COLOR:black;"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Cloisters Car Park - via St Georges Terrace or Hay Street&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN:0cm 0cm 0pt 18pt;TEXT-INDENT:-18pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;3.&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:7pt;COLOR:black;"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;His Majesty’s Car Park is via Murray Street – City of Perth (&lt;A href="http://www.mapimage.net/city_of_perth/" target=_blank&gt;http://www.mapimage.net/city_of_perth/&lt;/A&gt;) &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN:0cm 0cm 0pt 18pt;TEXT-INDENT:-18pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;4.&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:7pt;COLOR:black;"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Elder Street Car Park – City of Perth (&lt;A href="http://www.mapimage.net/city_of_perth/" target=_blank&gt;http://www.mapimage.net/city_of_perth/&lt;/A&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:5;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;RSVP:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Rick Rosato – &lt;A href="mailto:rick@connectedsystems.com"&gt;rick@connectedsystems.com&lt;/A&gt;&lt;SPAN style="COLOR:#1f497d;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;CoB Monday 14&lt;SUP&gt;th&lt;/SUP&gt; April 2008&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:6;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Presenter:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Rick Rosato – Connected Systems&lt;SPAN style="COLOR:#1f497d;"&gt; &lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="COLOR:#464c51;FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;FONT size=3&gt;(&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:#1f497d;FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;A href="mailto:rick@connectedsystems.com"&gt;rick@connectedsystems.com&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:navy;FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;A href="mailto:Jeremy.Thake@alphawest.com.au"&gt;&lt;SPAN style="FONT-SIZE:12pt;"&gt;)&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:#1f497d;FONT-FAMILY:'Arial','sans-serif';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:7;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Duration:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;1 hour &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:44.25pt;mso-yfti-irow:8;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:44.25pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Description:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:44.25pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;This session will be led by Rick Rosato, Consultant at Connected Systems.&amp;nbsp; Rick will demonstrate various solutions created in Sharepoint where many of the web part are using Ajax controls.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:32.3pt;mso-yfti-irow:9;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:32.3pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;" align=right&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:11pt;FONT-FAMILY:'Calibri','sans-serif';"&gt;Level:&lt;/SPAN&gt;&lt;/B&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:32.3pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;200&amp;nbsp; (100 – High level business overview – mostly slides, 200 – Business/Somewhat Technical – some slides and some demos, 300 – Quite technical – few slides, mostly demo and some coding, 400 – Extremely technical - mostly coding, few slides)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:0cm;BORDER-TOP:#ece9d8;PADDING-LEFT:0cm;PADDING-BOTTOM:0cm;BORDER-LEFT:#ece9d8;PADDING-TOP:0cm;BORDER-BOTTOM:#ece9d8;HEIGHT:32.3pt;BACKGROUND-COLOR:transparent;"&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:8.35pt;mso-yfti-irow:10;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;BACKGROUND:#bfbfbf;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:100%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;" colSpan=3&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;mso-line-height-alt:8.35pt;"&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Verdana','sans-serif';"&gt;Upcoming Topics &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:8.35pt;mso-yfti-irow:11;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;mso-line-height-alt:8.35pt;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Under Consideration:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt 18pt;TEXT-INDENT:-18pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;1.&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:7pt;"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;Talk fest – bring your curly questions.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt 18pt;TEXT-INDENT:-18pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;2.&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:7pt;"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;What does it take to pass the SharePoint Exams?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;mso-line-height-alt:8.35pt;"&gt;&lt;B&gt;&lt;I&gt;&lt;U&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;We are looking for volunteer speakers to present on a topic of their choice.&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/U&gt;&lt;/I&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:7.68%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;mso-line-height-alt:8.35pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:8.35pt;mso-yfti-irow:12;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;BACKGROUND:#bfbfbf;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:100%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;" colSpan=3&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;mso-line-height-alt:8.35pt;"&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Verdana','sans-serif';"&gt;Additional Notes&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:8.35pt;mso-yfti-irow:13;mso-yfti-lastrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:19.56%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;TEXT-ALIGN:right;mso-line-height-alt:8.35pt;" align=right&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Notes:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:72.76%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Please selectively forward this invite to those who might be interested in attending the Perth SharePoint User Group meetings. We don’t want SPAMmers!!&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Arial','sans-serif';"&gt;Also, the time has changed to 1&lt;/SPAN&gt;&lt;/B&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;2:30pm – pizza pr&lt;SPAN style="COLOR:black;"&gt;ovided.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;mso-line-height-alt:8.35pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:3.75pt;BORDER-TOP:#ece9d8;PADDING-LEFT:3.75pt;PADDING-BOTTOM:3.75pt;BORDER-LEFT:#ece9d8;WIDTH:7.68%;PADDING-TOP:3.75pt;BORDER-BOTTOM:#ece9d8;HEIGHT:8.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;mso-line-height-alt:8.35pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=222" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Perth+SharePoint/default.aspx">Perth SharePoint</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SharePoint+User+Group/default.aspx">SharePoint User Group</category></item><item><title>MOSS Advanced Search throwing "Object reference not set to an instance of an object."</title><link>http://csharpzealot.com/blogs/andrewb/archive/2008/04/09/moss-advanced-search-throwing-object-reference-not-set-to-an-instance-of-an-object.aspx</link><pubDate>Wed, 09 Apr 2008 05:32:00 GMT</pubDate><guid isPermaLink="false">f69e4a66-d24f-4c68-b2f6-facf1945ad59:221</guid><dc:creator>abartucciotto</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;I've been playing with the advanced search for a client and wanted to do something fairly straight forward. All I wanted to do is disable the &lt;STRONG&gt;language picker&lt;/STRONG&gt;&amp;nbsp;and &lt;STRONG&gt;result type&lt;/STRONG&gt; picker. The language picker is the one allows you to search &lt;SPAN&gt;&lt;STRONG&gt;only the language(s)&lt;/STRONG&gt; such as French, German etc. Both these features were not required by the client but they did need the custom scopes&amp;nbsp;I had&amp;nbsp;set up to be visible to allow further filtering. So what's the problem&amp;nbsp;I hear you ask? Well after modifying the Advanced Search Web Part to disable the features and enable the scopes it kept on throwing the error "Object reference not set to an instance of an object." &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Initially I though this could be&amp;nbsp;caused by not specifying a label for the scopes but it was still throwing the error even after supplying labels. After much enabling and disabling of scopes, languages and results it did eventually display the way I wanted but it was sporadic at best.&amp;nbsp;My solution of trying combinations until worked is not really a solution and how do you document this for&amp;nbsp;a client? &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"Um Just fiddle with with a bit until it works and then don't ever touch it".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;After searching around for a resolution&amp;nbsp;I hit the wall. A few posts suggest that Service Pack 1 for SharePoint is the cause of the problem. If anyone knows anything about this please let me know.&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://csharpzealot.com/aggbug.aspx?PostID=221" width="1" height="1"&gt;</description><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Search/default.aspx">Search</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/MOSS+Bugs/default.aspx">MOSS Bugs</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/SP1/default.aspx">SP1</category><category domain="http://csharpzealot.com/blogs/andrewb/archive/tags/Advanced+Search/default.aspx">Advanced Search</category></item></channel></rss>