<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Brattle Consulting Group, Inc.</title>
	
	<link>http://www.brattleconsultinggroup.com/blog</link>
	<description />
	<lastBuildDate>Thu, 26 Jan 2012 21:30:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/brattleconsultinggroup/aQer" /><feedburner:info uri="brattleconsultinggroup/aqer" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Lightswitch ‘getauthenticationinfo’ notfound</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/2AN4dOBlyV0/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/uncategorized/lightswitch-getauthenticationinfo-notfound/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 20:30:52 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Load operation failed for query 'GetAuthenticationInfo'. The remote server returned an error: NotFound.]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=319</guid>
		<description><![CDATA[Simply read this post and you issue will be solved.
issue: Load operation failed for query &#8216;GetAuthenticationInfo&#8217;. The remote server returned an error: NotFound. 
1) This error is deceiving &#8211; the error doesn&#8217;t actually have to do with an incorrectly configured system.
2) The solution is simple  
Login to your server (mine is Windows 2008 R2) [...]]]></description>
			<content:encoded><![CDATA[<p><strong><strong>Simply read this post and you issue will be solved.</strong><br />
<em>issue: Load operation failed for query &#8216;GetAuthenticationInfo&#8217;. The remote server returned an error: NotFound.</em><strong> </strong></strong></p>
<p>1) This error is deceiving &#8211; the error doesn&#8217;t actually have to do with an incorrectly configured system.<br />
2) The solution is simple <img src='http://www.brattleconsultinggroup.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Login to your server (mine is Windows 2008 R2) &gt; Open IIS Manager &gt; select your Lightswitch site &gt; click on Authentication (under IIS) &gt; <span style="text-decoration: underline;">ensure</span> &#8216;Anonymous Authentication&#8217; is the only one enabled.</p>
<p>Restart your application from the browser and you should be good.  We&#8217;ll have more to come related to Lightswitch development.</p>
<p><strong>UPDATED: 1/26/2012</strong><br />
If the above solutions does not work &#8211; just REPAIR .NET 4.0 and restart your server.  This just worked for me on a new server configuration.<strong> </strong></p>
<p><strong><br />
</strong></p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/2AN4dOBlyV0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/uncategorized/lightswitch-getauthenticationinfo-notfound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/uncategorized/lightswitch-getauthenticationinfo-notfound/</feedburner:origLink></item>
		<item>
		<title>Querystring not working on iPhone</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/PxtA-XwrUt4/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/uncategorized/querystring-not-working-on-iphone/#comments</comments>
		<pubDate>Wed, 11 May 2011 18:18:49 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone querystring issues]]></category>
		<category><![CDATA[querystring issues]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/uncategorized/querystring-not-working-on-iphone/</guid>
		<description><![CDATA[Known Browser Issue: Safari on iPhone 4.2.6 and below
Known Issue Overview: When requesting a .NET or Classic ASP / VBScript page using Safari on iPhone v. 4.2.6 the querystring value is modified.  We would expect &#8216;?id=12&#8242; to be processed as &#8216;request.querystring(&#8221;id&#8221;) = 12&#8242;.  However, this is not the case.
Solution: Trim(Split(Request.Querystring(&#8221;id&#8221;),&#8221;\o&#8221;)(0)
Reason: When parsing the querystring we [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Known Browser Issue:</strong> Safari on iPhone 4.2.6 and below<br />
<strong>Known Issue Overview:</strong> When requesting a .NET or Classic ASP / VBScript page using Safari on iPhone v. 4.2.6 the querystring value is modified.  We would expect &#8216;?id=12&#8242; to be processed as &#8216;request.querystring(&#8221;id&#8221;) = 12&#8242;.  However, this is not the case.<br />
<strong>Solution: </strong>Trim(Split(Request.Querystring(&#8221;id&#8221;),&#8221;\o&#8221;)(0)<br />
<strong>Reason: </strong>When parsing the querystring we noticed that Safari was rendering the &#8216;id&#8217; parameter&#8217;s value as<br />
[value] \o [URL]?id=12 \o</p>
<p><strong>More Information: </strong>.Net or classic ASP / VBScript are affected by this issue if iPhone is running below version 4.3 (Go to Settings &gt; General &gt; About on the iPhone to find the version).</p>
<p>Safari will acquire the querystring value, the actual issue is the data within the querystring.  A normal querystring request would provide you with the passed parameter (i.e. ?id=12, request.querystring(&#8221;id&#8221;) = 12) right?  It should, but when processing this request with Safari, the querystring value is modified to include the URL and some additional escape characters.</p>
<p><em>Here is what we found:<br />
</em> We passed a value within the &#8216;id&#8217; parameter: http://www.xyz.com?id=testtest.  Safari processed the request.querystring(&#8221;id&#8221;) and translated &#8216;testtest&#8217; to &#8216;testtest \o http://www.xyz.com/?id=testtest \o&#8217;</p>
<p>The fix is simple: Trim(Split(Request.Querystring(&#8221;id&#8221;),&#8221;\o&#8221;)(0), but unexpected.</p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/PxtA-XwrUt4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/uncategorized/querystring-not-working-on-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/uncategorized/querystring-not-working-on-iphone/</feedburner:origLink></item>
		<item>
		<title>HTML 5: rel=’prefetch’ Functionality</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/-YJYeMtFw8Q/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/development-suggestions/html-5/html-5-prefetch/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 17:55:47 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=310</guid>
		<description><![CDATA[Browsing efficiency is commonly discussed during the discovery phase of a web application project.  &#8220;How will your services increase my website&#8217;s performance and reduce lag?&#8221;.  Our answer is typically based around our high-performance servers, network equipment and streamlined code.  With HTML 5 there is an additional tool in our toolbox  .
We&#8217;ve all see and maybe [...]]]></description>
			<content:encoded><![CDATA[<p>Browsing efficiency is commonly discussed during the discovery phase of a web application project.  &#8220;How will your services increase my website&#8217;s performance and reduce lag?&#8221;.  Our answer is typically based around our high-performance servers, network equipment and streamlined code.  With HTML 5 there is an additional tool in our toolbox <img src='http://www.brattleconsultinggroup.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>We&#8217;ve all see and maybe even used the &lt;link&gt; tag within the head of an HTML file.  With the release of HTML 5 there are several new link relations, but we are only going to focus on the &#8216;prefetch&#8217; relation in this post.  The &#8216;prefetch&#8217; relation (i.e. &lt;link rel=&#8217;prefetch&#8217;  href=&#8217;SOME URL&#8217;&gt;, allows us to deploy a technique to pre-cache/pre-load a file before the user requests it. </p>
<p>Search engines like Google have already implemented this code to increase your browsing performance.  You can see this code in action by using Firefox to search Google for &#8216;CNN&#8217; &#8211; once the result pane is loaded, right-click to view the source and search for &#8216;prefetch&#8217;.</p>
<p><strong>Technically&#8230;How Does This Work?<br />
</strong>When you browse a website your browser will process the page and then it will sit idle waiting for your next request.  The &#8216;prefetch&#8217; relation increases your browser&#8217;s performance by making use of this &#8216;idle&#8217; time.  After the requested page has been loaded, your browser will then cache the &#8216;prefetch&#8217; file (indicated by the &#8216;href&#8217; attribute).  Once the file has been cached by your browser, navigating to the new page is extremely efficient, because your browser already has the page.</p>
<p><strong>What else do I need to know?<br />
</strong>Determining what pages to cache at what point during the user&#8217;s browsing experience is very important.  There are several factors to consider, which are found within your analytic software.  Remember, you can cache several pages, but if a user doesn&#8217;t see those pages there isn&#8217;t a benefit.</p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/-YJYeMtFw8Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/development-suggestions/html-5/html-5-prefetch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/development-suggestions/html-5/html-5-prefetch/</feedburner:origLink></item>
		<item>
		<title>Hosted Fonts… Finally</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/_LQaismW3bk/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/uncategorized/hosted-fonts-finally/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 16:58:26 +0000</pubDate>
		<dc:creator>gdirth</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=307</guid>
		<description><![CDATA[Tired of the way fonts have worked online for the last 20 years? So is everyone else. Fortunately there are a variety of services emerging (both free and paid) providing hosted web fonts. These fonts should be completely cross platform/cross browser compatible and they require nothing on the users end.
The two platforms that I am [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of the way fonts have worked online for the last 20 years? So is everyone else. Fortunately there are a variety of services emerging (both free and paid) providing hosted web fonts. These fonts should be completely cross platform/cross browser compatible and they require nothing on the users end.</p>
<p>The two platforms that I am most aware of are <a href="http://code.google.com/webfonts/">Google Web Fonts</a> (and the Google Web Fonts API) and <a href="http://www.ascenderfonts.com">Ascender Fonts</a>. The Google Web Fonts are publicly available for free, Ascender Fonts  has different licensing packages available depending on your needs.</p>
<p>With Google Web Fonts using a font on your site is as simple as including a link to a stylesheet hosted at &#8220;http://fonts.googleapis.com/&#8221; and providing a querystring value for the font you want to include. For example to include their &#8220;Tangerine&#8221; font you would include this link &#8220;http://fonts.googleapis.com/css?family=Tangerine&#8221;. You can then reference that font family just as you would any other font family in your styles.</p>
<p><code>font-family: 'Tangerine', serif;<br />
font-size: 48px;<br />
text-shadow: 4px 4px 4px #aaa;</code></p>
<p>Full documentation for getting started with google web fonts can be found here <a href="http://code.google.com/apis/webfonts/docs/getting_started.html">http://code.google.com/apis/webfonts/docs/getting_started.html</a></p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/_LQaismW3bk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/uncategorized/hosted-fonts-finally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/uncategorized/hosted-fonts-finally/</feedburner:origLink></item>
		<item>
		<title>Gridview Basics</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/5ZT2ukQ1Ukw/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/development-suggestions/vb-net-gridview-tips/gridview-basics/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 21:30:00 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[VB.net Gridview Tips]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=301</guid>
		<description><![CDATA[If you&#8217;re new to Gridviews this should be a helpful article.
Situation:
You have a limited amount of space horizontally to display your gridview, but someone (boss, client, etc.) has indicated that their is additional information they need to see.  Instead of forcing all of the data into a small space and creating a multi-lined field, which [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re new to Gridviews this should be a helpful article.</p>
<p><strong>Situation:<br />
</strong>You have a limited amount of space horizontally to display your gridview, but someone (boss, client, etc.) has indicated that their is additional information they need to see.  Instead of forcing all of the data into a small space and creating a multi-lined field, which is unappealing&#8230;add a button that will display the additional info somewhere else on the page, within a model dialog window or message box.</p>
<p><strong>Solution:</strong><br />
The Button control has the following properties; CommandName and CommandArgument.  They can be used in the following way:<br />
<em> &lt;asp:Button id=&#8221;action&#8221; runat=&#8221;server&#8221; text=&#8217;text&#8217; CommandName=&#8221;ShowInfo&#8221; CommandArgument=&#8217;&lt;%#Eval(&#8221;ID&#8221;) %&gt;&#8217; /&gt;</em></p>
<p><span style="text-decoration: underline;">The code behind file will have the following subroutine:</span><br />
<em>Protected Sub GRIDVIEW_NAME_RowCommand(ByVal sender As Object, ByVal e As CommandEventArgs) Handles GRIDVIEW_NAME.RowCommand</em><br />
<em> Response.Write(&#8221;TEST = &#8221; &amp; e.CommandName)<br />
</em><em>Response.Write(&#8221;TEST = &#8221; &amp; e.CommandArgument)</em><br />
<em> End Sub</em></p>
<p><strong>Description:<br />
</strong>The system will fire the <em> </em>subroutine and will pass the CommandName and CommandArgument values as parameters.  You can have several buttons with several different CommandNames, which will allow you to expand the functionality.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 239px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Protected Sub gvProcessed_RowCommand(ByVal sender As Object, ByVal e As CommandEventArgs) Handles gvProcessed.RowCommand</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 239px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Response.Write(&#8221;TEST = &#8221; &amp; e.CommandName)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 239px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">End Sub</div>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/5ZT2ukQ1Ukw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/development-suggestions/vb-net-gridview-tips/gridview-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/development-suggestions/vb-net-gridview-tips/gridview-basics/</feedburner:origLink></item>
		<item>
		<title>SQL Select Statement: Random, Fixed Number of Distinct Records</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/dMtXdHD0lgY/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/uncategorized/sql-select-statement-random-fixed-number-of-distinct-records/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 02:59:14 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=298</guid>
		<description><![CDATA[I recently ran into a development process that required SQL generated records to solve the following problem.
- Select &#8216;N&#8217; number of records
- The records needed to random
- There could not be any duplicates
- There must be the set number of records returned
Here is the solution I came up with to solve this problem.
declare @numberOfRecords bigint
Select [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ran into a development process that required SQL generated records to solve the following problem.</p>
<p>- Select &#8216;N&#8217; number of records<br />
- The records needed to random<br />
- There could not be any duplicates<br />
- There must be the set number of records returned</p>
<p>Here is the solution I came up with to solve this problem.</p>
<p>declare @numberOfRecords bigint</p>
<p>Select TOP (@numberOfRecords) field1 from<br />
(Select * from table1 where id=&#8217;3&#8242;) a<br />
group by field1 order by NewID()</p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/dMtXdHD0lgY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/uncategorized/sql-select-statement-random-fixed-number-of-distinct-records/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/uncategorized/sql-select-statement-random-fixed-number-of-distinct-records/</feedburner:origLink></item>
		<item>
		<title>Using Onenote to Manage your Blog</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/EqoEHYsSFio/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/uncategorized/using-onenote-to-manage-your-blog/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 18:30:07 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/uncategorized/using-onenote-to-manage-your-blog/</guid>
		<description><![CDATA[This article was written and transmitted to this blog using Onenote.

We have recently received several requests from clients  regarding Onenote.  The single, most frequently asked question is,  &#8220;How do I use Onenote to communicate with my Wordpress blog?&#8221;.  Here&#8217;s the answer.

What do I need to know/do to Wordpress to make this [...]]]></description>
			<content:encoded><![CDATA[<p>This article was written and transmitted to this blog using Onenote.
</p>
<p>We have recently received several requests from clients  regarding Onenote.  The single, most frequently asked question is,  &#8220;How do I use Onenote to communicate with my Wordpress blog?&#8221;.  Here&#8217;s the answer.
</p>
<p><strong>What do I need to know/do to Wordpress to make this work?</strong>
	</p>
<ol>
<li>
<div>The version of Wordpress that you&#8217;re running
</div>
<ol>
<li>
<div>NOT RUNNING 2.6.0 or higher&#8230;
</div>
<ol>
<li>Upgrade
</li>
</ol>
</li>
<li>
<div>RUNNING THE RIGHT VERSION…
</div>
<ol>
<li>
<div>Login to your administrative panel to activate XML-RPC communication
</div>
<ol>
<li>Login &gt; Settings &gt; Writing
</li>
<li>Check the box to the left of, &#8220;Enable the Wordpress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols&#8221;
</li>
<li>Login to the site using an FTP client (like Filezilla  <a href="http://filezilla-project.org/download.php">http://filezilla-project.org/download.php</a> )
</li>
<li>Ensure that the &#8220;xmlrpc.php&#8221; file is in the website root directory.
</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
<p><strong>How do I use Onenote to do this?</strong>
	</p>
<ol>
<li>Create a new page in one of your Notebooks within Onenote
</li>
<li>
<div>When you&#8217;re ready to upload it to the blog…
</div>
<ol>
<li>
<div>From the main menu
</div>
<ol>
<li>File &gt; Send &gt; Send to Blog
</li>
</ol>
</li>
<li>Your post will appear in a new window.  This new window controls the publishing of your post to a blog.
</li>
<li>
<div>Select &#8216;Manage Accounts&#8217; from the &#8216;Blog Post&#8217; tab in the main menu
</div>
<ol>
<li>Select &#8216;New&#8217;
</li>
<li>Choose the &#8216;Blog&#8217; &#8211; this is the type of blog you have &#8211; this example is focused on Wordpress
</li>
<li>Click the &#8216;Next&#8217; button
</li>
<li>In the &#8216;Blog Post URL&#8217; &#8211; enter your blog address
</li>
<li>Username and Password are the same credentials that you use to login to your Wordpress administrative area.
</li>
</ol>
</li>
</ol>
</li>
</ol>
<p><strong>Still need help?</strong>
	</p>
<p>This website is helpful for solving issues not covered in this post: <a href="http://office.microsoft.com/en-us/word-help/help-with-blogging-in-word-HA010164021.aspx?ver=14&amp;app=winword.exe">http://office.microsoft.com/en-us/word-help/help-with-blogging-in-word-HA010164021.aspx?ver=14&amp;app=winword.exe</a>
	</p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/EqoEHYsSFio" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/uncategorized/using-onenote-to-manage-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/uncategorized/using-onenote-to-manage-your-blog/</feedburner:origLink></item>
		<item>
		<title>Mozilla On Mac – display: -moz-inline-box;</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/LtzVdr7Org8/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/development-suggestions/mozilla-on-mac-display-moz-inline-box/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 18:58:27 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[Development Suggestions]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=286</guid>
		<description><![CDATA[If you ever have the need to convert an unordered list to a single row, let&#8217;s say for navigation creation or something to that effect.  Within your CSS file, you&#8217;ll want to put the following code in:
display: inline-block;
display: -moz-inline-box;
display: inline-block;
display: -moz-inline-box;
If you keep the code above in this order, your IE, Chrome, Safari, Opera, etc. [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever have the need to convert an unordered list to a single row, let&#8217;s say for navigation creation or something to that effect.  Within your CSS file, you&#8217;ll want to put the following code in:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">display: inline-block;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">display: -moz-inline-box;</div>
<p>display: inline-block;<br />
display: -moz-inline-box;</p>
<p>If you keep the code above in this order, your IE, Chrome, Safari, Opera, etc. browsers will ignore the second line.  The result will be a horizontal list of &lt;li&gt; items within a &lt;ul&gt; tag.</p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/LtzVdr7Org8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/development-suggestions/mozilla-on-mac-display-moz-inline-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/development-suggestions/mozilla-on-mac-display-moz-inline-box/</feedburner:origLink></item>
		<item>
		<title>Brattle Launches New In-House CRM system for Total MRO Protection</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/H7m3Iv8ffgs/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/recent-work/brattle-launches-new-in-house-crm-system-for-total-mro-protection/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 19:27:12 +0000</pubDate>
		<dc:creator>gdirth</dc:creator>
				<category><![CDATA[Development Suggestions]]></category>
		<category><![CDATA[Recent Work]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Total MRO]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=284</guid>
		<description><![CDATA[After the recent launch of Total MRO&#8217;s new website featuring a design overhaul, catalog and sales process simplification, and a deeply integrated e-commerce solution we sat down with a managing partner to figure out how else we could help optimize operations and the sales process for them.
Discouraged by the pricing structures they were finding from [...]]]></description>
			<content:encoded><![CDATA[<p>After the recent launch of Total MRO&#8217;s new website featuring a design overhaul, catalog and sales process simplification, and a deeply integrated e-commerce solution we sat down with a managing partner to figure out how else we could help optimize operations and the sales process for them.</p>
<p>Discouraged by the pricing structures they were finding from the large online CRM providers, Total MRO decided it would make the most sense to develop a custom CRM to their current specifications and foreseeable future requirements. Doing away with the tiered pricing structure and recurring licensing fees, in favor of a system they could have actual ownership of with no tricks to lock them in.</p>
<p>Many added benefits may not be apparent now, but we see some interesting ways that they could further integrate this CRM system with their internal ERP system to further streamline their internal processes and communication.</p>
<p>For information about what Brattle can do for your business, contact us 24/7 from <a href="http://brattleconsultinggroup.com/contact-us/default.aspx">http://brattleconsultinggroup.com/contact-us/default.aspx</a></p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/H7m3Iv8ffgs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/recent-work/brattle-launches-new-in-house-crm-system-for-total-mro-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/recent-work/brattle-launches-new-in-house-crm-system-for-total-mro-protection/</feedburner:origLink></item>
		<item>
		<title>Chrome Document Viewer</title>
		<link>http://feedproxy.google.com/~r/brattleconsultinggroup/aQer/~3/y1_AmoKz_6M/</link>
		<comments>http://www.brattleconsultinggroup.com/blog/browser-tools/chrome-document-viewer/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 12:13:28 +0000</pubDate>
		<dc:creator>bcote</dc:creator>
				<category><![CDATA[Browser Tools]]></category>
		<category><![CDATA[Chrome Extension]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[PDF viewer for Chrome]]></category>

		<guid isPermaLink="false">http://www.brattleconsultinggroup.com/blog/?p=282</guid>
		<description><![CDATA[Docs PDF/Powerpoint Viewer will allow you to view PDFs and all of Microsoft Office files.  We&#8217;ve just installed it and it seems to work well.  Please give us your feedback on how effective it is.
https://chrome.google.com/extensions/detail/nnbmlagghjjcbdhgmkedmbmedengocbn
]]></description>
			<content:encoded><![CDATA[<p>Docs PDF/Powerpoint Viewer will allow you to view PDFs and all of Microsoft Office files.  We&#8217;ve just installed it and it seems to work well.  Please give us your feedback on how effective it is.</p>
<p><a href="https://chrome.google.com/extensions/detail/nnbmlagghjjcbdhgmkedmbmedengocbn">https://chrome.google.com/extensions/detail/nnbmlagghjjcbdhgmkedmbmedengocbn</a></p>
<img src="http://feeds.feedburner.com/~r/brattleconsultinggroup/aQer/~4/y1_AmoKz_6M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brattleconsultinggroup.com/blog/browser-tools/chrome-document-viewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brattleconsultinggroup.com/blog/browser-tools/chrome-document-viewer/</feedburner:origLink></item>
	</channel>
</rss>

