<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>Any Look Up</title>
	<link>http://anylookup.com</link>
	<description>Look Up Your IP Address, WHOIS Info, Horoscope, Fortune, Elven Name and More!</description>
	<lastBuildDate>Wed, 06 Jan 2010 15:58:53 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Koni</title>
		<description><![CDATA[
Another &#8220;girl playing guitar&#8221; video I wanted to share, or maybe just save it here since it&#8217;s old, about 5 years old, but I still like it a lot. The girl&#8217;s name is Koni.
]]></description>
		<link>http://anylookup.com/koni</link>
			</item>
	<item>
		<title>Beijing subway singer</title>
		<description><![CDATA[
Something I liked and would like to share with everyone else.
]]></description>
		<link>http://anylookup.com/beijing-subway-singer</link>
			</item>
	<item>
		<title>Firefox Live Bookmarks Feed Refresh Frequency</title>
		<description><![CDATA[The default rate of Firefox Live Bookmark refresh is 30 minutes. Which is often too long for some people. This can be changed:
Enter about:config in the url location bar and hit enter.
Right-click anywhere within the list of preferences and select New -&#62; Integer.
When you get asked to enter the preference name, enter:
browser.bookmarks.livemark_refresh_seconds
You will then be [...]]]></description>
		<link>http://anylookup.com/firefox-live-bookmarks-feed-refresh-frequency</link>
			</item>
	<item>
		<title>Random Microsoft Rant</title>
		<description><![CDATA[I don&#8217;t hate Microsoft, I have been using windows since the Windows 3.1 era, along with other microsoft products. But sometimes the small things that Microsoft choose to do simply piss me off so much that I have to write about them here:
1. Who is the genius that thought it was a good idea to [...]]]></description>
		<link>http://anylookup.com/random-microsoft-rant</link>
			</item>
	<item>
		<title>How to really disable event firing in sharepoint</title>
		<description><![CDATA[One of the things I found out the hard way while programming event handlers in sharepoint is that you have to wrap your update() or delete() functions with the disableeventfiring function individually, for example:
this will work:
base.DisableEventFiring();
item.update();
base.EnableEventFiring();
this will NOT work:
base.DisableEventFiring();
item.update();
item.delete();
base.EnableEventFiring();
So the moral of the story is, only do one event triggering action at a time, do [...]]]></description>
		<link>http://anylookup.com/how-to-really-disable-event-firing-in-sharepoint</link>
			</item>
	<item>
		<title>How to add or remove permissions to a list item in sharepoint</title>
		<description><![CDATA[Ok here is how I add or remove or copy permissions to a list item in sharepoint:



1
 if (properties.ListTitle.Equals(&#8220;Document Library&#8221;)) 


2
{


3
using (SPWeb objWeb = properties.OpenWeb()) 


4
{


5
SPListItem d_item = properties.ListItem; //this is the one I want to copy permission from



6
SPRoleAssignmentCollection roles = d_item.RoleAssignments;


7
SPListItem item = myFile.Item; //this is the one I want to copy permission to 


8
item.BreakRoleInheritance(true); //you must set this to true or it wouldn&#8217;t work



9
while (item.RoleAssignments.Count &#62; 0) 


10
{


11
item.RoleAssignments.Remove(0);


12
}


13
foreach (SPRoleAssignment role in roles) 


14
{


15
item.RoleAssignments.Add(role);


16
}


17
base.DisableEventFiring(); 


18
item.Update();


19
base.EnableEventFiring(); 


20
}


21
}



]]></description>
		<link>http://anylookup.com/how-to-add-or-remove-permissions-to-a-list-item-in-sharepoint</link>
			</item>
	<item>
		<title>How to customize the item edit form in sharepoint designer</title>
		<description><![CDATA[I needed to customize the item edit / display / new form to remove some fields from the form. In SPD you can not convert the edit form to XSLT dataview. What you have to do is:
1. Hide the default form: Select the ListFormWebPart, right click and select web part properties. Go to layout and [...]]]></description>
		<link>http://anylookup.com/how-to-customize-the-item-edit-form-in-sharepoint-designer</link>
			</item>
	<item>
		<title>How to Add, Remove, Manage List Columns in SharePoint Designer</title>
		<description><![CDATA[To Add/Remove/Manage columns in sharepoint designer(SPD), first open up the site in SPD then open up the view&#8217;s aspx file. In design mode, right click on the DataFormWebPart and select &#8220;convert to XLST data view&#8221;.
Now you should have a &#8220;Common data view tasks&#8221; popup, if not, just click on the arrow to the right. You [...]]]></description>
		<link>http://anylookup.com/how-to-add-remove-manage-list-columns-in-sharepoint-designer</link>
			</item>
	<item>
		<title>Int32.Parse Versus Convert.ToInt32 in SharePoint</title>
		<description><![CDATA[Today I found out the hard way that SharePoint doesn&#8217;t like the function Int32.Parse. I spent several hours trying to debug my code, then finally come to the conclusion that by using Int32.Parse to convert a int to string, it mysteriously prevents execution of everything that follows this line (although this compiles perfectly in VS2008).
The [...]]]></description>
		<link>http://anylookup.com/int32parse-versus-converttoint32-in-sharepoint</link>
			</item>
	<item>
		<title>Sharepoint Document Library Mass Upload Tool</title>
		<description><![CDATA[This is a tool written by Stuart Preston to enable us to mass upload files, folders and sub-folders into our sharepoint document library. The tool will automatically create the folders in sharepoint. There is no limit on the number of documents you could upload.
Download SPBulkUpload
How to use:
1. Extract the zip file, this is actually a [...]]]></description>
		<link>http://anylookup.com/sharepoint-document-library-mass-upload-tool</link>
			</item>
</channel>
</rss>
