<?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>TechBubbles &#187; Tips &amp; Solutions</title>
	<atom:link href="http://www.techbubbles.com/category/tips-solutions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techbubbles.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 22:18:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>T-SQL TIP in SQL Server 2008</title>
		<link>http://www.techbubbles.com/tips-solutions/t-sql-tip-in-sql-server-2008/</link>
		<comments>http://www.techbubbles.com/tips-solutions/t-sql-tip-in-sql-server-2008/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 13:20:31 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[SQL server]]></category>
		<category><![CDATA[Tips & Solutions]]></category>
		<category><![CDATA[SQL server 2008]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/tips-solutions/t-sql-tip-in-sql-server-2008/</guid>
		<description><![CDATA[You love this if you write a lot of T-SQL code. This tip I can say as&#160; T-SQL language syntax enhancement. The following are the enhancements in T-SQL

Now We can declare and initialize the variables with single statement.


 
&#160;
&#160; 2. Compound assignment operators are supported.
&#160; 3. You can build multiple lines data inline with Row [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/tips-solutions/t-sql-tip-in-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Desktop Sessions from Commandline</title>
		<link>http://www.techbubbles.com/tips-solutions/remote-desktop-sessions-from-commandline/</link>
		<comments>http://www.techbubbles.com/tips-solutions/remote-desktop-sessions-from-commandline/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 20:26:01 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[Tips & Solutions]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[Remote Desktop sessions]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/tips-solutions/remote-desktop-sessions-from-commandline/</guid>
		<description><![CDATA[You will commonly see the following error message when you try to connect windows 2003 server using RemoteDesktopConnection.
“The terminal server has exceeded the maximum of allowed connections ”

 
&#160;
You can disconnect the other remotely logged in users if you are a domain Admin user. Most of the users some time not even be using the [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/tips-solutions/remote-desktop-sessions-from-commandline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution for Office 2007 application project system could not be enabled</title>
		<link>http://www.techbubbles.com/tips-solutions/solution-for-office-2007-application-project-system-could-not-be-enabled/</link>
		<comments>http://www.techbubbles.com/tips-solutions/solution-for-office-2007-application-project-system-could-not-be-enabled/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 18:11:00 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[Tips & Solutions]]></category>
		<category><![CDATA[Office 2007 application]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/tips-solutions/solution-for-office-2007-application-project-system-could-not-be-enabled/</guid>
		<description><![CDATA[When you first time creating a Office 2007 application using VS 2008 you may get the following error.
“Programmatic access to the Microsoft Office Visual Basic for Applications project system could not be enabled”
The Error looks like the following window

The solution for the above error is
1. Open the MS Word or MS Excel
2. Go to Tools [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/tips-solutions/solution-for-office-2007-application-project-system-could-not-be-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculating the size of the File in C#</title>
		<link>http://www.techbubbles.com/tips-solutions/calculating-the-size-of-the-file-in-c/</link>
		<comments>http://www.techbubbles.com/tips-solutions/calculating-the-size-of-the-file-in-c/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 04:25:00 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[Tips & Solutions]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/tips-solutions/calculating-the-size-of-the-file-in-c/</guid>
		<description><![CDATA[Introduction
This code snippet explains how to calculate the size of the file and display in a label control. For example I am taking PDF file to find the size. It Displays the size of the file in Bytes, Kilobytes and Megabytes.
&#160;
//Calculate size of the PDF file      &#160;&#160;&#160;&#160;&#160;&#160; if (PdfFilePath.EndsWith(&#34;pdf&#34;))  [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/tips-solutions/calculating-the-size-of-the-file-in-c/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Working with Configuration files</title>
		<link>http://www.techbubbles.com/tips-solutions/working-with-configuration-files/</link>
		<comments>http://www.techbubbles.com/tips-solutions/working-with-configuration-files/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 16:13:07 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[Tips & Solutions]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/uncategorized/working-with-configuration-files/</guid>
		<description><![CDATA[Introduction
Configuration files are central place to configure your web or windows applications. The web.config file is used for configuring the web applications and app.config for windows applications.
The ASP.NET Application comes with web.config file with default configuration sections and you can easily manage them at the intialstage of the project development. As soon as your project [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/tips-solutions/working-with-configuration-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Configuring .NET Framework 1.1  on  windows vista</title>
		<link>http://www.techbubbles.com/tips-solutions/configuring-net-framework-11-on-windows-vista/</link>
		<comments>http://www.techbubbles.com/tips-solutions/configuring-net-framework-11-on-windows-vista/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 22:43:48 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[Tips & Solutions]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/2008/06/23/configuring-net-framework-11-on-windows-vista/</guid>
		<description><![CDATA[Configuring .NET FW v1.1 on Windows vista is bit tricky. 
Here are the steps you need to follow

Download .NET Fx from .NET FW v1.1 because by default vista come up with .NET FW v2.0 and v3.0.

If you install FW v1.1 alone at the end of installation you will get the following error 
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; RegSvcs.exe &#8211; [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/tips-solutions/configuring-net-framework-11-on-windows-vista/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

