<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Thinkbox</title>
	<atom:link href="http://www.thethinkbox.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thethinkbox.ca</link>
	<description>Problem Solved</description>
	<lastBuildDate>Thu, 02 May 2013 04:08:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to avoid Paypal currency conversion / foreign exchange fees on eBay for international purchases</title>
		<link>http://www.thethinkbox.ca/2013/01/14/how-to-avoid-paypal-currency-conversion-foreign-exchange-fees-on-ebay-for-international-purchases/</link>
		<comments>http://www.thethinkbox.ca/2013/01/14/how-to-avoid-paypal-currency-conversion-foreign-exchange-fees-on-ebay-for-international-purchases/#comments</comments>
		<pubDate>Tue, 15 Jan 2013 06:15:10 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[ebay, kijiji, craigslist etc]]></category>
		<category><![CDATA[Paypal]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=627</guid>
		<description><![CDATA[<a href="http://www.thethinkbox.ca/2013/01/14/how-to-avoid-paypal-currency-conversion-foreign-exchange-fees-on-ebay-for-international-purchases/attachment/7/" rel="attachment wp-att-635"></a><br /><br /> By default, Paypal really wants to do the foreign exchange for you because they make a few percent off your purchase like most other banks and credit cards. Below I explain the steps required to avoid these fees.  In summary, it involves you signing up for a credit card [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2013/01/14/how-to-avoid-paypal-currency-conversion-foreign-exchange-fees-on-ebay-for-international-purchases/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to fly and store your motorcycle overseas for touring, without using a shipping company, cheaply</title>
		<link>http://www.thethinkbox.ca/2012/11/18/how-to-fly-and-store-your-motorcycle-overseas-for-touring-without-using-a-shipping-company-cheaply/</link>
		<comments>http://www.thethinkbox.ca/2012/11/18/how-to-fly-and-store-your-motorcycle-overseas-for-touring-without-using-a-shipping-company-cheaply/#comments</comments>
		<pubDate>Mon, 19 Nov 2012 05:30:58 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Importing Motorcycles to Canada]]></category>
		<category><![CDATA[Motorcycle Travel, Packing lists]]></category>
		<category><![CDATA[Motorcycles]]></category>
		<category><![CDATA[Shipping a motorcycle overseas]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=584</guid>
		<description><![CDATA[In this blog post I will explain the steps required to ship your motorcycle overseas yourself, registration and insurance and all that kind of stuff, step by step, it&#8217;s not difficult. Using specialized shipping companies is usually not worth it &#8211; they usually don&#8217;t clear customs for you, and they don&#8217;t prep your bike, so [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/18/how-to-fly-and-store-your-motorcycle-overseas-for-touring-without-using-a-shipping-company-cheaply/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fast copy an Array (or text files) directly to a range of cells in Excel, VBA macro code.</title>
		<link>http://www.thethinkbox.ca/2012/11/18/fast-copy-an-array-directly-to-a-range-of-cells-in-excel-vba-macro-code/</link>
		<comments>http://www.thethinkbox.ca/2012/11/18/fast-copy-an-array-directly-to-a-range-of-cells-in-excel-vba-macro-code/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 20:58:41 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Excel, Macros, VBA and Software tips]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=566</guid>
		<description><![CDATA[In Excel it is much faster to write large sets of data to a spreadsheet all at once instead of using a loop, by copying an array variable to a range of cells directly. This can speed up an Excel macro significantly, especially in large complex workbooks. It&#8217;s especially handy if you want to read [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/18/fast-copy-an-array-directly-to-a-range-of-cells-in-excel-vba-macro-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed up Excel VBA macros by turning calculations off and on</title>
		<link>http://www.thethinkbox.ca/2012/11/18/speed-up-excel-vba-macros-by-turning-calculations-off-and-on/</link>
		<comments>http://www.thethinkbox.ca/2012/11/18/speed-up-excel-vba-macros-by-turning-calculations-off-and-on/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 19:23:37 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Excel, Macros, VBA and Software tips]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=562</guid>
		<description><![CDATA[In large Excel workbooks when you are executing VB macros that change cells in sheets, you can speed up the process significantly by turning workbook calculations off at the begining of your subroutine, and then back on again at the end. Here are some subs that can do this. Simply call the &#8220;Calc_Off&#8221; sub at [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/18/speed-up-excel-vba-macros-by-turning-calculations-off-and-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel, VBA macro functions to convert column number to letter, or letter to column number</title>
		<link>http://www.thethinkbox.ca/2012/11/18/excel-vba-macro-functions-to-convert-column-number-to-letter-or-letter-to-column-number/</link>
		<comments>http://www.thethinkbox.ca/2012/11/18/excel-vba-macro-functions-to-convert-column-number-to-letter-or-letter-to-column-number/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 19:13:03 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Excel, Macros, VBA and Software tips]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=552</guid>
		<description><![CDATA[I&#8217;ve tested these in Excel 2010 in sheets with over 16,000 columns and the functions work even for large numbers of columns. Function ColumnLetterToNumber(ColumnLetters As String) As Long ColumnLetterToNumber = Range(ColumnLetters &#38; "1").Column End Function Function ColumnNumberToLetters(ColumnNumber As Integer) As String Dim strLetters As String strLetters = Cells(1, ColumnNumber).Address(1, 0) ColumnNumberToLetters = Left(strLetters, InStr(1, strLetters, [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/18/excel-vba-macro-functions-to-convert-column-number-to-letter-or-letter-to-column-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to copy an Excel Worksheet with Forms to another workbook without external references</title>
		<link>http://www.thethinkbox.ca/2012/11/18/how-to-copy-an-excel-worksheet-with-forms-to-another-workbook-without-external-references/</link>
		<comments>http://www.thethinkbox.ca/2012/11/18/how-to-copy-an-excel-worksheet-with-forms-to-another-workbook-without-external-references/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 18:53:46 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Excel, Macros, VBA and Software tips]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=543</guid>
		<description><![CDATA[<a href="http://www.thethinkbox.ca/2012/11/18/how-to-copy-an-excel-worksheet-with-forms-to-another-workbook-without-external-references/activexbutton/" rel="attachment wp-att-544"><br /> </a> The trick is to replace all of your &#8220;Form Controls&#8221; with &#8220;ActiveX Controls&#8221;.  <br /> In the Developer toolbar in Excel they appear below the Form Controls.<br />The differences I have found:<br />When copying a sheet with the buttons or list boxes to another workbook, there are no longer [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/18/how-to-copy-an-excel-worksheet-with-forms-to-another-workbook-without-external-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defining global variables, and arrays of unknown variable length in Excel macro, VBA</title>
		<link>http://www.thethinkbox.ca/2012/11/18/defining-global-variables-and-arrays-of-unknown-variable-length-in-excel-macro-vba/</link>
		<comments>http://www.thethinkbox.ca/2012/11/18/defining-global-variables-and-arrays-of-unknown-variable-length-in-excel-macro-vba/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 17:59:52 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Excel, Macros, VBA and Software tips]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=485</guid>
		<description><![CDATA[It&#8217;s not usually recommended to use global variables because they make it more difficult for debugging or reading other people&#8217;s code.  However, they are handy sometimes when you&#8217;re in a rush to get your code done. At the top of a Module for example, simply type something like these below.  I&#8217;ve defined three Pipe Specification [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/18/defining-global-variables-and-arrays-of-unknown-variable-length-in-excel-macro-vba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching between HTML and Visual editor in WordPress, without messing up your custom HTML code</title>
		<link>http://www.thethinkbox.ca/2012/11/18/switching-between-html-and-visual-editor-in-wordpress-without-messing-up-your-custom-html-code/</link>
		<comments>http://www.thethinkbox.ca/2012/11/18/switching-between-html-and-visual-editor-in-wordpress-without-messing-up-your-custom-html-code/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 17:48:19 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=531</guid>
		<description><![CDATA[<a href="http://wordpress.org/extend/plugins/preserved-html-editor-markup/">Preserved HTML Editor Markup</a> is your solution, it is a plugin that preserves your custom HTML code.  By default WordPress&#8217;s TinyMCE will often mess up special HTML tags you use when you switch to the Visual editor even just for a second.  Preserved HTML Editor Markup stops this from happening.  It is particularly useful [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/18/switching-between-html-and-visual-editor-in-wordpress-without-messing-up-your-custom-html-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Batch Renaming application, for Windows</title>
		<link>http://www.thethinkbox.ca/2012/11/17/free-batch-renaming-application-for-windows/</link>
		<comments>http://www.thethinkbox.ca/2012/11/17/free-batch-renaming-application-for-windows/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 00:15:12 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Excel, Macros, VBA and Software tips]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=470</guid>
		<description><![CDATA[<a href="http://www.thethinkbox.ca/2012/11/17/free-batch-renaming-application-for-windows/batchrename/" rel="attachment wp-att-471"></a> Batch rename files in a directory you specify in Windows, for free! <p style="text-align: center;">I programmed this little application. Just specify the directory path location of interest and this application will allow you to search and replace text in all file names in that folder at the same time. It only [...]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/11/17/free-batch-renaming-application-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>White blood cell chasing bacteria</title>
		<link>http://www.thethinkbox.ca/2012/06/03/white-blood-cell-chasing-bacteria/</link>
		<comments>http://www.thethinkbox.ca/2012/06/03/white-blood-cell-chasing-bacteria/#comments</comments>
		<pubDate>Sun, 03 Jun 2012 18:33:26 +0000</pubDate>
		<dc:creator>Curtis</dc:creator>
				<category><![CDATA[Wonderful and weird]]></category>

		<guid isPermaLink="false">http://www.thethinkbox.ca/?p=447</guid>
		<description><![CDATA[The human body is amazing &#8211; it&#8217;s as if each cell has a mind of its own. This video from <a href="http://www.biochemweb.org/neutrophil.shtml">BioChemWeb.org</a> shows a white blood cell (Neutrophil) crawling amung red blood cells, chasing after a bacterium (Staphylococcus aureus). [See post to watch Flash video]]]></description>
		<wfw:commentRss>http://www.thethinkbox.ca/2012/06/03/white-blood-cell-chasing-bacteria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: www.thethinkbox.ca @ 2013-05-20 09:41:39 by W3 Total Cache -->