<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>PeteStilgoe.com</title>
	<link>http://www.petestilgoe.com</link>
	<description>&#34;Be fearful when others are greedy, be greedy when others are fearful.”</description>
	<lastBuildDate>Mon, 30 Jan 2012 14:28:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.1.4" -->

	<item>
		<title>Turn Free Bets Into Free Cash &#8211; No Risk</title>
		<description><![CDATA[
When you sign up to new bookmakers online you get a free bet anything from £10 to £100, all this system is doing is using free bets against free bets to gurantee a positive cash return which you can then withdraw to your current account.
Depending on how many online betting accounts you have already will [...]]]></description>
		<link>http://www.petestilgoe.com/2012/01/turn-free-bets-into-free-cash/</link>
			</item>
	<item>
		<title>SQL script to search all tables for a particular column name</title>
		<description><![CDATA[
Run the below script against a database to return all tables where a particular column name exists

use my_db
SELECT t.name AS table_name,
SCHEMA_NAME(schema_id) AS schema_name,
c.name AS column_name
FROM sys.tables AS t
INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID
WHERE c.name LIKE &#039;&#60;columnname&#62;&#039;
ORDER BY schema_name, table_name;


]]></description>
		<link>http://www.petestilgoe.com/2012/01/sql-script-to-search-all-tables-for-a-particular-column-name/</link>
			</item>
	<item>
		<title>How to total a column of values in a Sharepoint DVWP</title>
		<description><![CDATA[
To total a column of values in a Sharepoint DVWP use:
&#60;xsl:value-of select=&#34;sum(/dsQueryResponse/Rows/Row/@TotalHoursWorked)&#34; /&#62;
To do something similar in Xpath with formatting:
format-number(sum(/dsQueryResponse/Rows/Row/@TotalHoursWorked), &#039;#,##0.00;-#,##0.00&#039;)

]]></description>
		<link>http://www.petestilgoe.com/2012/01/how-to-total-a-column-of-values-in-a-sharepoint-dvwp/</link>
			</item>
	<item>
		<title>How to create a back button in Sharepoint</title>
		<description><![CDATA[
How to create a back button in Sharepoint to take you back to the previous page either using a text link or image -
Text link:
&#60;a href=&#34;#&#34; onClick=&#34;history.go(-1)&#34;&#62;Back Link Text&#60;/a&#62;
Using a back button image:
&#60;a href=&#34;#&#34; onClick=&#34;history.go(-1)&#34;&#62;&#60;img src=&#34;linktobackbuttonimage.gif&#34; alt=&#34;Back&#34;/&#62;&#60;/a&#62;
Note: I have only tested this in Internet Explorer

]]></description>
		<link>http://www.petestilgoe.com/2012/01/how-to-create-a-back-button-in-sharepoint/</link>
			</item>
	<item>
		<title>Top 10 ways new forex traders lose money</title>
		<description><![CDATA[
Statistics show that the initial success for new forex traders is disturbingly low. Over time, this trend tends to improve, but for many, it is too late. After posting a series of losses, many new traders will give-up, believing that forex trading is simply not for them. It does not have to be this way.
1.Lack [...]]]></description>
		<link>http://www.petestilgoe.com/2012/01/top-10-ways-new-forex-traders-lose-money/</link>
			</item>
	<item>
		<title>Sharepoint 2010 Secure Store: An error occurred during the &#8220;Generate Key&#8221; process. Please try again or contact your administrator</title>
		<description><![CDATA[
&#8220;Sharepoint 2010 Secure Store: An error occurred during the &#8220;Generate Key&#8221; process. Please try again or contact your administrator&#8221;
Things to check:
 &#8211; Ensure the logged in user is a member of the farm administrators group
 &#8211; In my case the &#8216;Sharepoint Webservices Root&#8217; application pool had stopped on one of my app servers

]]></description>
		<link>http://www.petestilgoe.com/2012/01/sharepoint-2010-secure-store-an-error-occurred-during-the-generate-key-process-please-try-again-or-contact-your-administrator/</link>
			</item>
	<item>
		<title>How to display a URL hyperlink in a CQWP</title>
		<description><![CDATA[
In the relevant template section in itemstyle.xsl add a line something like (replacing the column name with the your column containing the URL):

LiveView: &#60;a href=&#34;{substring-before(@Live_x005F_x0020_View, &#039;,&#039;)}&#34;&#62;Click here&#60;/a&#62;

]]></description>
		<link>http://www.petestilgoe.com/2011/11/how-to-display-a-url-hyperlink-in-a-cqwp/</link>
			</item>
	<item>
		<title>K2 &#8211; The base type ’SourceCode.SharePoint.ProcessPortal.UI.PortalWebPartPage’ is not allowed for this page. The type is not registered as safe.</title>
		<description><![CDATA[
When creating a a process portal or trying to access certain sections of a process portal in K2 Blackpearl or Blackpoint &#038; you get the following error:
&#8220;Parser Error Message: The base type ’SourceCode.SharePoint.ProcessPortal.UI.PortalWebPartPage’ is not allowed for this page. The type is not registered as safe. 
Source Error: 
Assembly Name=&#8221;SourceCode.SharePoint.ProcessPortal, Version=4.0.0.0, Culture=neutral, PublicKeyToken=16a2c5aaaa1b130d
Page Language=&#8221;C#&#8221; MasterPageFile=&#8221;~masterurl/default.master&#8221; [...]]]></description>
		<link>http://www.petestilgoe.com/2011/11/k2-the-base-type-%e2%80%99sourcecode-sharepoint-processportal-ui-portalwebpartpage%e2%80%99-is-not-allowed-for-this-page-the-type-is-not-registered-as-safe/</link>
			</item>
	<item>
		<title>How to add Custom Style Sheet CSS to your masterpage file</title>
		<description><![CDATA[
Edit your masterpage file, In the  tag add a link to your custom CSS file just above the content place holder named &#8220;PlaceHolderAdditonalPageHead&#8221; ie.
&#60;link href=&#34;/Style%20Library/mystyle.css&#34; rel=&#34;stylesheet&#34; type=&#34;text/css&#34; /&#62;

]]></description>
		<link>http://www.petestilgoe.com/2011/10/how-to-add-custom-style-sheet-css-to-your-masterpage-file/</link>
			</item>
	<item>
		<title>K2 Blackpoint Blackpearl: Deploying smartobject error &#8211; Timeout expired</title>
		<description><![CDATA[
When deploying a new smartobject you get the following error in K2 Blackpoint / Blackpearl:
&#8220;Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding. &#8221;
You need to increase the timeout for K2 Smartobjects by doing the following &#8211; 
1) Open the following file &#8211; [InstallDir]K2 blackpearl\Host [...]]]></description>
		<link>http://www.petestilgoe.com/2011/09/k2-blackpoint-blackpearl-deploying-smartobject-error-timeout-expired/</link>
			</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.378 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-08 22:28:52 -->

