<?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>PcTechBlog &#187; Software</title>
	<atom:link href="http://www.pctechblog.com/category/software/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pctechblog.com</link>
	<description>random talk about pc problems</description>
	<lastBuildDate>Fri, 03 Jul 2009 19:36:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iis localhost blank page</title>
		<link>http://www.pctechblog.com/software/iis/iis-localhost-blank-page</link>
		<comments>http://www.pctechblog.com/software/iis/iis-localhost-blank-page#comments</comments>
		<pubDate>Tue, 10 Feb 2009 08:46:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Skype]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=75</guid>
		<description><![CDATA[When browsing my local iis sites i found myself in from of blank pages. I checked the IIS Manager and the Default Web Site was stopped. When i tried to start it up, it complained that another program was using the service.
I found out that it was Skype that caused this trouble. You have to [...]]]></description>
			<content:encoded><![CDATA[<p>When browsing my local iis sites i found myself in from of blank pages. I checked the IIS Manager and the Default Web Site was stopped. When i tried to start it up, it complained that another program was using the service.</p>
<p><span id="more-75"></span>I found out that it was Skype that caused this trouble. You have to go to Tools -&gt; Options -&gt; Advanced -&gt;Connections and disable the option:  &#8221; Use port 80 and 443 as alternatives for incoming connections&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/software/iis/iis-localhost-blank-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to media&#8230; ready error media player vista</title>
		<link>http://www.pctechblog.com/vista/connecting-to-media-ready-error-media-player-vista</link>
		<comments>http://www.pctechblog.com/vista/connecting-to-media-ready-error-media-player-vista#comments</comments>
		<pubDate>Sat, 10 Jan 2009 22:17:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Media player]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[connecting to media]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=59</guid>
		<description><![CDATA[After using Windows Vista for some time, i had suddenly the following error when i tried to connect to an online radio station through internet explorer: &#8220;connecting to media&#8230;&#8221; then &#8220;locating media&#8230;&#8221; and then &#8220;Ready&#8221;.
I do not know what the problem is coming from. But i solve it by running Internet Explorer &#8220;as Administrator&#8221;
]]></description>
			<content:encoded><![CDATA[<p>After using Windows Vista for some time, i had suddenly the following error when i tried to connect to an online radio station through internet explorer: &#8220;connecting to media&#8230;&#8221; then &#8220;locating media&#8230;&#8221; and then &#8220;Ready&#8221;.</p>
<p><span id="more-59"></span>I do not know what the problem is coming from. But i solve it by running Internet Explorer &#8220;as Administrator&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/vista/connecting-to-media-ready-error-media-player-vista/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel export to csv double quotes</title>
		<link>http://www.pctechblog.com/software/excel/exel-export-to-csv-double-quotes</link>
		<comments>http://www.pctechblog.com/software/excel/exel-export-to-csv-double-quotes#comments</comments>
		<pubDate>Sat, 03 Jan 2009 12:15:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[export]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=57</guid>
		<description><![CDATA[Microsoft Excel has limited  or no  options regarding the export to csv  feature.   For example, you can not select that exported values will be included inside double quotes.
Here is a script that will do the job:
Sub subExportCSV()
On Error GoTo subexport_exit
Dim strDelimiter As String
strDelimiter = Chr(9)
Dim strQualifier As String
strQualifier = &#8220;&#8221;"&#8221;
Dim [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Excel has limited  or no  options regarding the export to csv  feature.   For example, you can not select that exported values will be included inside double quotes.</p>
<p><span id="more-57"></span>Here is a script that will do the job:</p>
<p>Sub subExportCSV()<br />
On Error GoTo subexport_exit<br />
Dim strDelimiter As String<br />
strDelimiter = Chr(9)<br />
Dim strQualifier As String<br />
strQualifier = &#8220;&#8221;"&#8221;</p>
<p>Dim arrRng<br />
arrRng = ActiveSheet.UsedRange.Value<br />
Dim f As String<br />
Dim i As Long<br />
Dim j As Long<br />
Dim strTemp As String</p>
<p>f = InputBox(&#8221;Enter a filename for saving&#8221;, , &#8220;c:\test.csv&#8221;)<br />
If Trim(f) = &#8220;&#8221; Then Exit Sub<br />
Open f For Output As #1</p>
<p>strTemp = &#8220;&#8221;</p>
<p>For i = 1 To UBound(arrRng, 1)<br />
strTemp = &#8220;&#8221;<br />
For j = 1 To UBound(arrRng, 2)<br />
strTemp = strTemp &amp; strQualifier &amp; arrRng(i, j) &amp; strQualifier &amp; strDelimiter<br />
Next j<br />
Print #1, Left(strTemp, Len(strTemp) &#8211; Len(strDelimiter))<br />
Next i</p>
<p>subexport_exit:<br />
Close #1<br />
End Sub</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/software/excel/exel-export-to-csv-double-quotes/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Paste text or HTML code inside SQL Server table</title>
		<link>http://www.pctechblog.com/software/sql-server/paste-text-or-html-code-inside-sql-server-table</link>
		<comments>http://www.pctechblog.com/software/sql-server/paste-text-or-html-code-inside-sql-server-table#comments</comments>
		<pubDate>Wed, 31 Dec 2008 09:52:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[paste html code]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=47</guid>
		<description><![CDATA[Sometimes you want to paste a block of text or HTML code inside a table of SQL Server using the SQL Server Managment Studio. Problem is that usually the text or code has line breaks in it, resulting in truncation of the pasted text.
A solution that i found to the problem above was to use [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you want to paste a block of text or HTML code inside a table of SQL Server using the SQL Server Managment Studio. Problem is that usually the text or code has line breaks in it, resulting in truncation of the pasted text.</p>
<p><span id="more-47"></span>A solution that i found to the problem above was to use a text editor like <a title="Notepad++" href="http://www.notepad-plus.sourceforge.net/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.notepad-plus.sourceforge.net/');" target="_blank">Notepad++</a>. You first paste the text or Html code inside notepad++, mark the text and use the command &#8220;join lines&#8221; from the edit menu.  In that case, notepad++ removes the line breaks and you have one line of text. That is the text that you want to paste into the cell of the SQL Server Table in order not to have problems with truncation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/software/sql-server/paste-text-or-html-code-inside-sql-server-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Fireworks flickering problem &#8211; tools flicker</title>
		<link>http://www.pctechblog.com/software/adobe-fireworks-flickering-problem-tools-flicker</link>
		<comments>http://www.pctechblog.com/software/adobe-fireworks-flickering-problem-tools-flicker#comments</comments>
		<pubDate>Fri, 19 Dec 2008 19:30:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[FireWorks]]></category>
		<category><![CDATA[flicker]]></category>
		<category><![CDATA[flickering]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=41</guid>
		<description><![CDATA[I had a problem with Adobe Fireworks CS3 edition in Windows Vista. Every time i selected a tool like the brush tool or the eraser tool, i could barely use them due to a strong flickering that could not let me control  them.

So i followed the next steps:
- Right-click on  Fireworks shortcut on the [...]]]></description>
			<content:encoded><![CDATA[<p>I had a problem with Adobe Fireworks CS3 edition in Windows Vista. Every time i selected a tool like the brush tool or the eraser tool, i could barely use them due to a strong flickering that could not let me control  them.</p>
<p><span id="more-41"></span></p>
<p>So i followed the next steps:</p>
<p>- Right-click on  Fireworks shortcut on the desktop and select Properties<br />
- Select the the Compatibility tab<br />
- Under Compatability mode label, select the checkbox for Run this program in  compatability mode for: and select Windows XP (Service Pack 2) from the drop  down box.<br />
- Under the Settings label, check Disable desktop  composition</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/software/adobe-fireworks-flickering-problem-tools-flicker/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Teamviewer remove delete session id</title>
		<link>http://www.pctechblog.com/software/teamviewer-remove-delete-session-id</link>
		<comments>http://www.pctechblog.com/software/teamviewer-remove-delete-session-id#comments</comments>
		<pubDate>Fri, 19 Dec 2008 19:15:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[TeamViewer]]></category>
		<category><![CDATA[session id]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=37</guid>
		<description><![CDATA[In TeamViewer, you may want to remove a session id that you do not need any more, or you accidentally mistyped.

You can just click on the &#8220;ID&#8221; Label next to the session list and a popup window open with the id and the alias. There you have the option to &#8220;remove id&#8221;
]]></description>
			<content:encoded><![CDATA[<p>In TeamViewer, you may want to remove a session id that you do not need any more, or you accidentally mistyped.</p>
<p><span id="more-37"></span></p>
<p>You can just click on the &#8220;ID&#8221; Label next to the session list and a popup window open with the id and the alias. There you have the option to &#8220;remove id&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/software/teamviewer-remove-delete-session-id/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sql Server Windows Authentication fails in Windows Vista</title>
		<link>http://www.pctechblog.com/software/sql-server-windows-authentication-fails-in-windows-vista</link>
		<comments>http://www.pctechblog.com/software/sql-server-windows-authentication-fails-in-windows-vista#comments</comments>
		<pubDate>Thu, 11 Dec 2008 18:41:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SSMS]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows Authentication]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=30</guid>
		<description><![CDATA[When you open SQL Server Management Studio and try to connect to an SQL Server 2005 instance in Windows Vista, you get the following error: &#8220;Login failed for user &#8220;admin&#8221; (where admin is your administrator username).

The solution is to run SQL Server Management Studio (SSMS) as Administrator.
]]></description>
			<content:encoded><![CDATA[<p>When you open SQL Server Management Studio and try to connect to an SQL Server 2005 instance in Windows Vista, you get the following error: &#8220;Login failed for user &#8220;admin&#8221; (where admin is your administrator username).</p>
<p><span id="more-30"></span></p>
<p>The solution is to run SQL Server Management Studio (SSMS) as Administrator.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/software/sql-server-windows-authentication-fails-in-windows-vista/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fireworks CS3 Crash &#8211; The application Fireworks has unexpectedly quit</title>
		<link>http://www.pctechblog.com/software/fireworks-cs3-crash-the-application-fireworks-has-unexpectedly-quit</link>
		<comments>http://www.pctechblog.com/software/fireworks-cs3-crash-the-application-fireworks-has-unexpectedly-quit#comments</comments>
		<pubDate>Tue, 09 Dec 2008 08:52:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[FireWorks]]></category>

		<guid isPermaLink="false">http://www.pctechblog.com/?p=15</guid>
		<description><![CDATA[After using FireWorks CS3 for a few weeks on my pc (Vista Business) it suddenly stopped working, giving the folloing message: &#8220;The application Fireworks has unexpectedly quit&#8221;  and asked me if i wanted it to generate a crash report that is sent to Adobe.

After searching for a while, i found a solution in a post [...]]]></description>
			<content:encoded><![CDATA[<p>After using FireWorks CS3 for a few weeks on my pc (Vista Business) it suddenly stopped working, giving the folloing message: &#8220;The application Fireworks has unexpectedly quit&#8221;  and asked me if i wanted it to generate a crash report that is sent to Adobe.</p>
<p><span id="more-15"></span></p>
<p>After searching for a while, i found a solution in a post by user &#8220;nedsbeds&#8221; on Adobe Forums</p>
<p>You must delete the following registry key:</p>
<p>&#8220;HKEY_CURRENT_USER\Software\Adobe\Common\9\Sites&#8221;</p>
<p>Of course, after doing that, you will lose your site setting in Adobe Dreamweaver.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pctechblog.com/software/fireworks-cs3-crash-the-application-fireworks-has-unexpectedly-quit/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
