<?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>Samuel Haddad &#187; Software</title> <atom:link href="http://samuelhaddad.com/category/software/feed/" rel="self" type="application/rss+xml" /><link>http://samuelhaddad.com</link> <description></description> <lastBuildDate>Thu, 03 Nov 2011 16:32:38 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>Bypass Symantec Endpoint Protection</title><link>http://samuelhaddad.com/2010/07/05/bypass-symantec-endpoint-protection/</link> <comments>http://samuelhaddad.com/2010/07/05/bypass-symantec-endpoint-protection/#comments</comments> <pubDate>Mon, 05 Jul 2010 16:39:59 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Tech Support]]></category> <guid
isPermaLink="false">http://samuelhaddad.com/?p=502</guid> <description><![CDATA[So recently I had bypass Symantec endpoint protection.  Instead of having to stop services and delete registry keys like my other Trend Micro Post it is worth trying the default password of Symantec which worked for me.]]></description> <content:encoded><![CDATA[<p>So recently I had bypass Symantec endpoint protection.  Instead of having to stop services and delete registry keys like my other <a
href="http://samuelhaddad.com/2010/06/05/uninstall-trendmicro-officescan/">Trend Micro Post </a>it is worth trying the default password of Symantec which worked for me.</p> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2010/07/05/bypass-symantec-endpoint-protection/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Uninstall TrendMicro OfficeScan</title><link>http://samuelhaddad.com/2010/06/05/uninstall-trendmicro-officescan/</link> <comments>http://samuelhaddad.com/2010/06/05/uninstall-trendmicro-officescan/#comments</comments> <pubDate>Sat, 05 Jun 2010 22:06:59 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Tech Support]]></category> <category><![CDATA[TrendMicro Office Scan]]></category> <guid
isPermaLink="false">http://samuelhaddad.com/?p=497</guid> <description><![CDATA[This procedure work as of June 5th 2010 The problem: When trying to uninstall TrendMico Office Scan you are prompted for a password. Solution: Start -&#62; run and type MSCONFIG Under services and uncheck TrendMicro Unauthorized Change Prevention Service Restart the computer Start -&#62; run type Regedit Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\PC-cillinNTCorp\CurrentVersion\Misc Changing the AllowUninstall value to 1]]></description> <content:encoded><![CDATA[<p>This procedure work as of June 5th 2010</p><h3>The problem:</h3><p>When trying to uninstall TrendMico Office Scan you are prompted for a password.</p><h3>Solution:</h3><ul><li>Start -&gt; run and type MSCONFIG</li><li>Under <strong>services</strong> and uncheck TrendMicro Unauthorized Change Prevention Service</li><li>Restart the computer</li><li>Start -&gt; run type Regedit</li><li>Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\PC-cillinNTCorp\CurrentVersion\Misc</li><li>Changing the AllowUninstall value to 1</li></ul> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2010/06/05/uninstall-trendmicro-officescan/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Creating a Single Instance C# Application</title><link>http://samuelhaddad.com/2009/05/19/creating-a-single-instance-c-application/</link> <comments>http://samuelhaddad.com/2009/05/19/creating-a-single-instance-c-application/#comments</comments> <pubDate>Wed, 20 May 2009 00:51:13 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Mutex]]></category> <category><![CDATA[Single Instance]]></category> <category><![CDATA[Visual Studio]]></category> <guid
isPermaLink="false">http://samuelhaddad.com/?p=385</guid> <description><![CDATA[This is something I find myself looking up alot so I decided to put it into a post for easy access, and for anyone else who might be looking for a solution. Download Single Instance Application Source Code I still don&#8217;t get why in Visual Studio in VB.NET one could click make single instance application, [...]]]></description> <content:encoded><![CDATA[<p>This is something I find myself looking up alot so I decided to put it into a post for easy access, and for anyone else who might be looking for a solution.</p><pre class="brush: csharp; title: ; notranslate">using System.Threading;</pre><pre class="brush: csharp; title: ; notranslate">
    static class Program
    {
        /// &lt;summary&gt;
        /// The main entry point for the application.
        /// &lt;/summary&gt;
        [STAThread]
        static void Main()
        { 
            bool createdNew = true;
            using (Mutex mutex = new Mutex(true, &quot;SignleInstance&quot;, out createdNew))
            {
                if (createdNew)
                {
                    Application.EnableVisualStyles();
                    Application.SetCompatibleTextRenderingDefault(false);
                    Application.Run(new Form1());
                }
            }
        }
    }
</pre><p><a
href='http://samuelhaddad.com/wp-content/uploads/2009/05/singleinstance.zip'>Download Single Instance Application Source Code</a></p><p>I still don&#8217;t get why in Visual Studio in VB.NET one could click make single instance application, but that same feature doesn&#8217;t exist in C#? Don&#8217;t all .NET languages just get compiled to the CIL in the end?</p> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2009/05/19/creating-a-single-instance-c-application/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Visual Studio Tips and Tricks</title><link>http://samuelhaddad.com/2009/05/06/visual-studio-tips-and-tricks/</link> <comments>http://samuelhaddad.com/2009/05/06/visual-studio-tips-and-tricks/#comments</comments> <pubDate>Thu, 07 May 2009 02:30:55 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Visual Studio]]></category> <guid
isPermaLink="false">http://samuelhaddad.com/?p=311</guid> <description><![CDATA[Alternate Case/Format selection: Have you ever been asked to update some code from a long time ago only to find that almost every tag is in capital letters?  AGHH! Highlight all that code and press CTRL + K then CTRL + F and you will format all the code. It would then look something like this [...]]]></description> <content:encoded><![CDATA[<h3>Alternate Case/Format selection:</h3><p>Have you ever been asked to update some code from a long time ago only to find that almost every tag is in capital letters?  AGHH!</p><pre class="brush: xml; title: ; notranslate">
&lt;HTML&gt;
&lt;HEAD&gt;
&lt;TITLE&gt;My Really Old Site&lt;/TITLE&gt;
&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;P&gt; Lots of body test &lt;/P&gt;
&lt;P&gt; Lots of body test &lt;/P&gt;
&lt;P&gt; Lots of body test &lt;/P&gt;
&lt;IMG SRC=&quot;mypic.jpg&quot; width=351 height=113&gt;
&lt;/BODY&gt;
&lt;/HTML&gt;
</pre><p>Highlight all that code and press CTRL + K then CTRL + F and you will format all the code. It would then look something like this</p><pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;My Really Old Site&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt;
Lots of body test
&lt;/p&gt;
&lt;p&gt;
Lots of body test
&lt;/p&gt;
&lt;p&gt;
Lots of body test
&lt;/p&gt;
&lt;img src=&quot;mypic.jpg&quot; width=&quot;351&quot; height=&quot;113&quot;&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre><p>Granted your code may still be far from perfect, but it is definitely a huge help.</p><h2>Key Launcher (Like Alt + Tab on Windows)</h2><p>Are you someone that lives by keyboard shortcuts? I know I am.  Are you familar with Windows Alt + Tab keyboard shortcut and toggling through all active programs? Well a similar feature exists within Visual Studio press <strong>Ctrl + Tab </strong>and toggle through your active Windows and Files.</p><p><img
class="alignnone size-full wp-image-331" title="Visual Studio Ctrl + Tab" src="http://samuelhaddad.com/wp-content/uploads/2009/05/controltab.png" alt="Visual Studio Ctrl + Tab" width="600" height="326" /></p><h2>Intellisense</h2><p><strong>Control + Spacebar </strong>will bring up intellisense if you are in code view. Great if you click out by accident or you just want to see what is available in the scope of the code.</p><p><img
class="alignnone size-full wp-image-332" title="Visual Studio Intellisense" src="http://samuelhaddad.com/wp-content/uploads/2009/05/intellisense.png" alt="Visual Studio Intellisense" width="334" height="191" /></p><h2>Break Points</h2><p>Have a bunch of break points scattered over a couple of files in a solution. Just want to delete them all and start fresh. <strong>Ctrl + Shift + F9 </strong>will delete all current break points in a solution. Don&#8217;t worry Visual Studio will prompt you with a confirmation first.</p><h2>Get Visual Studio Professional for free!</h2><p>Well maybe. If you are a student like myself you can head over to <a
href="https://www.dreamspark.com/" target="_blank">https://www.dreamspark.com/</a>which is run by Microsoft. They offer full versions of some of the newest Microsoft products, like Visual Studio. Why? Because they know we are the future and they think we are an investment. Take them up on the opportunity and get ahead of the competition.</p><h2>Shortcut key posters:</h2><p>Microsoft Visual Studio has a bunch of keyboard combinations that can be very helpful, to get a more complete list check out some of the resources Microsoft offers:</p><h2><img
class="alignnone size-full wp-image-336" title="Visual Studio Key Reference Posters" src="http://samuelhaddad.com/wp-content/uploads/2009/05/posters.png" alt="Visual Studio Key Reference Posters" width="524" height="282" /></h2><p><a
href="http://www.microsoft.com/downloads/details.aspx?familyid=E5F902A8-5BB5-4CC6-907E-472809749973&amp;displaylang=en" target="_blank">Visual C# 2008 Keybinding Reference Poster</a></p><p><a
href="http://www.microsoft.com/downloads/details.aspx?familyid=255b8cf1-f6bd-4b55-bb42-dd1a69315833&amp;displaylang=en" target="_blank">Visual Basic 2008 Keybinding Reference Poster</a></p><p><a
href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4411bbfc-0e3c-42b3-bd05-af1d292c986f&amp;displaylang=en" target="_blank">Visual C++ 2008 Keybinding Reference Poster</a></p><p><a
href="http://www.microsoft.com/downloads/details.aspx?familyid=C15D210D-A926-46A8-A586-31F8A2E576FE&amp;displaylang=en" target="_blank">Visual C# 2005 Keyboard Shortcut Reference Poster</a></p><p><a
href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6bb41456-9378-4746-b502-b4c5f7182203&amp;DisplayLang=en" target="_blank">Visual Basic 2005 Keyboard Shortcut Reference Poster</a></p><p><a
href="http://www.microsoft.com/downloads/details.aspx?FamilyID=bccf84f4-4136-48b2-b4ec-83eaa484da20&amp;DisplayLang=en" target="_blank">Visual C++ 2005 Keyboard Shortcut Reference Poster</a></p> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2009/05/06/visual-studio-tips-and-tricks/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Silly Error Message</title><link>http://samuelhaddad.com/2009/04/19/silly-error-message/</link> <comments>http://samuelhaddad.com/2009/04/19/silly-error-message/#comments</comments> <pubDate>Mon, 20 Apr 2009 01:44:32 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Computer Jokes]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Error Message]]></category> <guid
isPermaLink="false">http://samuelhaddad.com/?p=281</guid> <description><![CDATA[  So I am just trying to finish up my new program Twitter Talk when I am running a test and I get the following error message. Should we start hiring error message checkers? Any ways if you get this  Win32Exception  was Unhandled &#8220;The Operation Completed Successfully&#8221; error message my workaround was to uncheck the check box [...]]]></description> <content:encoded><![CDATA[<p> </p><div
id="attachment_282" class="wp-caption alignnone" style="width: 469px"><img
class="size-full wp-image-282" title="Silly Error Message" src="http://samuelhaddad.com/wp-content/uploads/2009/04/sillyerror.jpg" alt="The Operation Completed Successfully Error Message" width="459" height="247" /><p
class="wp-caption-text">The Operation Completed Successfully Error Message</p></div><p>So I am just trying to finish up my new program Twitter Talk when I am running a test and I get the following error message.</p><p>Should we start hiring error message checkers?</p><p>Any ways if you get this  Win32Exception  was Unhandled &#8220;The Operation Completed Successfully&#8221; error message my workaround was to uncheck the check box in the project properties that says: &#8220;Enable Visual Studio hosting process&#8221;. In the menu: Project -&gt; Project Properties&#8230; -&gt; Debug -&gt; Enable the Visual Studio hosting process. </p><p>Hope this helps someone this solution came from: <a
href="http://www.codeproject.com/KB/cs/globalhook.aspx?msg=2427545#xx2427545xx">http://www.codeproject.com/KB/cs/globalhook.aspx?msg=2427545#xx2427545xx</a></p> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2009/04/19/silly-error-message/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Overwriting an Excel file destination using SSIS</title><link>http://samuelhaddad.com/2009/03/31/overwriting-an-excel-file-destination-using-ssis/</link> <comments>http://samuelhaddad.com/2009/03/31/overwriting-an-excel-file-destination-using-ssis/#comments</comments> <pubDate>Tue, 31 Mar 2009 23:57:57 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Desktop Enginnering]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[SSIS]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Excel Destination]]></category> <category><![CDATA[Overwrite Excel File]]></category> <category><![CDATA[SQL]]></category> <category><![CDATA[SQL Server Integration Service]]></category> <guid
isPermaLink="false">http://samuelhaddad.com/?p=256</guid> <description><![CDATA[This was a problem I racked my brains over for a while when I first started using SSIS. I found a few possible including using a File System task to copy a &#8220;Template&#8221; Excel file over the existing on, or generating unique files by appending the date.  I simply wanted to overwrite the existing data [...]]]></description> <content:encoded><![CDATA[<p>This was a problem I racked my brains over for a while when I first started using SSIS. I found a few possible including using a File System task to copy a &#8220;Template&#8221; Excel file over the existing on, or generating unique files by appending the date.  I simply wanted to overwrite the existing data just like the <strong>Flat File Destination </strong>gives you that option.</p><p>My work around was as flows:</p><p>Create the Data flow the way you normally would, then go to the <strong>Control View </strong> Then add two <strong>Execute SQL Tasks </strong> before your data flow is called so it looks like this</p><div
id="attachment_257" class="wp-caption alignnone" style="width: 170px"><img
class="size-medium wp-image-257" title="Step 1: Add Execute SQL Task 1 to Control Flow" src="http://samuelhaddad.com/wp-content/uploads/2009/03/step1controlflow.png" alt="Step 1: Add Execute SQL Task 1 to Control Flow" width="160" height="257" /><p
class="wp-caption-text">Step 1: Add Execute SQL Task 1 to Control Flow</p></div><p>Set both <strong>Execute SQL Tasks </strong>to use the Excel file</p><div
id="attachment_258" class="wp-caption alignnone" style="width: 397px"><img
class="size-full wp-image-258" title="Step 2: Set Connection Manager" src="http://samuelhaddad.com/wp-content/uploads/2009/03/step2connectionmanager.png" alt="Step 2: Set Connection Manager" width="387" height="120" /><p
class="wp-caption-text">Step 2: Set Connection Manager</p></div><p>Set your first <strong>Execute SQL Task&#8217;s </strong>SQL Command drop your table which is also known as the sheet name of your Excel file.</p><div
id="attachment_259" class="wp-caption alignnone" style="width: 345px"><img
class="size-full wp-image-259" title="Step 3: Drop Table" src="http://samuelhaddad.com/wp-content/uploads/2009/03/step3droptable.png" alt="Step 3: Drop Table" width="335" height="335" /><p
class="wp-caption-text">Step 3: Drop Table</p></div><p>Repeat step 3 on the second <strong>Execute SQL Command </strong>this time create your tables.</p><p>That&#8217;s it. Good luck.</p> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2009/03/31/overwriting-an-excel-file-destination-using-ssis/feed/</wfw:commentRss> <slash:comments>33</slash:comments> </item> <item><title>C# .NET and LyricWiki to lookup lyrics</title><link>http://samuelhaddad.com/2009/03/22/c-net-and-lyricwiki-to-lookup-lyrics/</link> <comments>http://samuelhaddad.com/2009/03/22/c-net-and-lyricwiki-to-lookup-lyrics/#comments</comments> <pubDate>Mon, 23 Mar 2009 03:03:32 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Desktop Enginnering]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[.NET]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[LyricsWiki]]></category> <category><![CDATA[Music]]></category> <guid
isPermaLink="false">http://samuelhaddad.com/?p=204</guid> <description><![CDATA[Music is everywhere with today&#8217;s high speed internet is most home it is no wonder that music is even moving to the World Wide Web. Many radio stations allow you to stream their stations over the internet. Many websites have been developed around music, like www.jango.com, www.pandora.com, and www.last.fm. I recently released my second version [...]]]></description> <content:encoded><![CDATA[<p>Music is everywhere with today&#8217;s high speed internet is most home it is no wonder that music is even moving to the World Wide Web. Many radio stations allow you to stream their stations over the internet. Many websites have been developed around music, like <a
href="http://www.jango.com/">www.jango.com</a>, <a
href="http://www.pandora.com/">www.pandora.com</a>, and <a
href="http://www.last.fm/">www.last.fm</a>. I recently released my second version of <a
href="../../../../../software-projects/jango-desktop/">Jango Desktop</a> and one of the features I implemented was the ability to look up lyrics. Before I started I was thinking about all the ways I could parse the lyrics out of an existing lyric&#8217;s websites database. During my searching I stumbled upon <a
href="http://lyricwiki.org/">http://lyricwiki.org/</a>. Here is a small description of LyricWiki from the website:</p><p>LyricWiki is a free site which is a source where anyone can go to get reliable lyrics for any song, from any artist, without being hammered by invasive ads.</p><p>At this point you are probably thinking to yourself the same thing I did &#8220;Great, but where do I start?&#8221; So today I am writing a step by step tutorial on how to use Lyric wiki in your .NET program.</p><h2>Creating a simple lyric demo program:</h2><div
id="attachment_249" class="wp-caption alignnone" style="width: 666px"><img
class="size-full wp-image-249" title="Step 1 Create the Form" src="http://samuelhaddad.com/wp-content/uploads/2009/03/step11.jpg" alt="Step 1 Create the Form" width="656" height="370" /><p
class="wp-caption-text">Step 1: Create the Form</p></div><p>Open visual studio and setup your form to look similar to mine.</p><h3>Adding the web service:</h3><p>Because LyricWiki offers a web service, you will want to add it to your program as a web reference.   Right click on your solution and select add a web reference, or in .net 3.5 add a service reference -&gt; then go to advance and add a web reference. The service&#8217;s URL is <a
href="http://lyricwiki.org/server.php?wsdl">http://lyricwiki.org/server.php?wsdl</a> you will want to add it like below if you press go you should see the available methods.</p><div
id="attachment_251" class="wp-caption alignnone" style="width: 835px"><img
class="size-full wp-image-251" title="Adding a Web Reference" src="http://samuelhaddad.com/wp-content/uploads/2009/03/step21.jpg" alt="Adding a Web Reference" width="825" height="572" /><p
class="wp-caption-text">Adding a Web Reference</p></div><h3>Writing the code:</h3><p>Double click on your button on the form and let&#8217;s right some code to handle the lookup.</p><p>Add this to the top of your code:</p><pre class="brush: csharp; title: ; notranslate">
using LyricsLookup.org.lyricwiki;
</pre><p>Then add this to the button clicked method:</p><pre class="brush: csharp; title: ; notranslate">
private void LyricsButton_Click(object sender, EventArgs e)
{
LyricWiki wiki = new LyricWiki();
LyricsResult result;
string artist = artistTextBox.Text;
string song =   SongTextBox.Text;
if(wiki.checkSongExists(artist,song))
{
result = wiki.getSong(artist, song);
Encoding iso8859 = Encoding.GetEncoding(&quot;ISO-8859-1&quot;);
LyricsRichTextBox.Text = Encoding.UTF8.GetString(iso8859.GetBytes(result.lyrics));
}else{
StatusLabel.Text = &quot;Lyrics not found in database&quot;;
}
}
</pre><p>Then run and test.</p><p><a
href="http://samuelhaddad.com/wp-content/uploads/2009/03/LyricsLookup.zip">Download the full solution of LyricsLookup</a></p> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2009/03/22/c-net-and-lyricwiki-to-lookup-lyrics/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Making Netgear SC101 Work with Vista SP1</title><link>http://samuelhaddad.com/2008/09/30/making-netgear-sc101-work-with-vista-sp1/</link> <comments>http://samuelhaddad.com/2008/09/30/making-netgear-sc101-work-with-vista-sp1/#comments</comments> <pubDate>Tue, 30 Sep 2008 00:04:01 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Tech Support]]></category> <category><![CDATA[Netgear]]></category> <category><![CDATA[sc101]]></category> <category><![CDATA[zetatera]]></category> <guid
isPermaLink="false">http://blog.samplusplus.com/2008/09/30/making-netgear-sc101-work-with-vista-sp1/</guid> <description><![CDATA[So you my have noticed that if you upgraded to Vista or have Vista that it took Netgear over 6 months to release drivers for there Zetera SC101 NAS.  The Problem: When installing the latest SCM utility and drivers you receive an error &#8220;Failed to install the Z-SAN SCSI miniport driver&#8221;  or similar.  The Resolution: [...]]]></description> <content:encoded><![CDATA[<p>So you my have noticed that if you upgraded to Vista or have Vista that it took Netgear over 6 months to release drivers for there Zetera SC101 NAS.</p><p><strong> The Problem:<br
/> </strong><br
/> When installing the latest SCM utility and drivers you receive an error &#8220;Failed to install the Z-SAN SCSI miniport driver&#8221;  or similar.</p><p><strong> The Resolution:<br
/> </strong>If your installation already failed and the setup software tells you to restart, you must do so.</p><p>Next restart the installation. Select <strong>Custom</strong>change the default installation directory to anything but the default and then continue. The software should install perfectly now.</p><p>You can get the latest software from Netgear&#8217;s <a
target="_blank" href="http://kbserver.netgear.com/products/storagecentral.asp" title="Support">support</a> page.</p><p>This fix came from scouring the comments from<br
/>  <a
href="http://www.kowitz.net/archive/2007/09/11/netgear-sc101-finally-does-vista.aspx">http://www.kowitz.net/archive/2007/09/11/netgear-sc101-finally-does-vista.aspx</a></p> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2008/09/30/making-netgear-sc101-work-with-vista-sp1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Skinning Pidgin &#8211; Sick of Pidgin&#8217;s Look and Feel</title><link>http://samuelhaddad.com/2008/02/16/sick-of-pidgins-look-and-feel/</link> <comments>http://samuelhaddad.com/2008/02/16/sick-of-pidgins-look-and-feel/#comments</comments> <pubDate>Sat, 16 Feb 2008 02:36:36 +0000</pubDate> <dc:creator>Samuel Haddad</dc:creator> <category><![CDATA[Instant Messaging]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[GTK]]></category> <category><![CDATA[Look and Feel]]></category> <category><![CDATA[Pidgin]]></category> <category><![CDATA[Skins]]></category> <category><![CDATA[Themes]]></category> <guid
isPermaLink="false">http://blog.samplusplus.com/2008/02/16/sick-of-pidgins-look-and-feel/</guid> <description><![CDATA[Pidgin is a multi-protocol Instant Messaging client that allows you to use all of your IM accounts at once. It can be found at http://pidgin.im/ I have been using it for a while now when AIM started putting advertisements into there software. Pidgin was formally GAIM which changed its name due to legal reasons and [...]]]></description> <content:encoded><![CDATA[<p
align="left"><img
src="http://pidgin.im/shared/img/logo.pidgin.png" alt="Pidgin Logo" hspace="5" width="107" height="185" align="left" />Pidgin is a multi-protocol Instant Messaging client that allows you to use all of your IM accounts at once. It can be found at <a
href="http://pidgin.im/">http://pidgin.im/</a> I have been using it for a while now when AIM started putting advertisements into there software. Pidgin was formally GAIM which changed its name due to legal reasons and started to rewrite their software. My friends and I have been using it for a while now and really enjoy it. However there is one complaint I hear a lot and that has to do with appearance and themes. It is for this reason that I am putting together a little guide of steps I have taken to make pidgin more my style.</p><p
align="center"><p
align="center"><p
align="center"><p
align="center">The Original Buddy list is depicted below.</p><p
style="text-align: center"><img
src="http://samuelhaddad.com/wp-content/uploads/2008/02/pidgin1.png" alt="Orginial Buddy List" /></p><p>One thing that I do not like is that the icons each name takes up so much space. This is because the idle time and buddy information is being displayed under each buddy name. I started by disabling this feature.</p><ol><li>Go to buddies</li><li>Show and un check buddy details, idle times and enable protocol icons to a style of your liking.</li></ol><p
style="text-align: center"><img
src="http://samuelhaddad.com/wp-content/uploads/2008/02/pidgin2.png" alt="pidgin2" /></p><p
align="left">By doing this I can easily see more buddies online at any given moment, my buddy list looks something like and all those details I disabled are still available just by hovering over a buddy with my mouse.</p><p
align="left"><p
style="text-align: center"><img
src="http://samuelhaddad.com/wp-content/uploads/2008/02/pidgin3.png" alt="Pidgin 3" /></p><p
align="left">Another complaint I often here is the lack of themes. Well actually there is support for themes. I will admit its a little hidden, but I am going to walk you though it now and show you where you can find hundreds of free themes.</p><ol><li>Pidgin uses the GTK+ orThe GIMP Toolkit for creating its graphical user interfaces. This is because it is cross platform and so is Pidgin. While my tutorial is geared towards windows users I am sure its very similar to other operating systems.</li><li>We need to start by enabling GTK+ control in pidgin. To do that go to Tools &gt; Plugins&gt; and check Pidgin GTK+ Theme Control.<p
style="text-align: center"><img
src="http://samuelhaddad.com/wp-content/uploads/2008/02/pidgin4.png" alt="ThemeControl" /></p></li><li>Press Configure Plugin.<p
style="text-align: center"><img
src="http://samuelhaddad.com/wp-content/uploads/2008/02/pidgin6.png" alt="Pidgin6" /></p></li><li>Everytime you change your theme press Re-read gtkrc files to apply the theme.</li><li>To select a new theme go to Start &gt; All Programs &gt; GTK+ &gt; Theme Selector. Select a theme and press ok, then Re-Read gtkrc files to see the theme applied to Pidgin.</li><li>Download new themes at <a
href="http://art.gnome.org/themes/gtk2/">http://art.gnome.org/themes/gtk2/</a></li><li>Unzip themes and store them in the C:\Program Files\Common Files\GTK\2.0\share\themes folder.</li><li>I used the <a
href="http://art.gnome.org/themes/gtk2/702">Litoral </a>theme, without spending hours searching.</li><li>Make sure you adjust the GTK+ Interface Font so it looks good with your theme. I ended up using Arial normal styles size 10.</li><li>Now chagning the Pidgin default icons, by default they are located in C:\Program Files\Pidgin\pixmaps\pidgin</li><li>I started picking an Icon set I liked. I found a few pre-made sets with some Google searches here some links</li></ol><blockquote><ul><li><a
href="http://www.gnome-look.org/content/show.php/Human+Pidgin%2BGaim+Theme?content=59616">Ubuntu Style</a></li><li><a
href="http://www.gnome-look.org/content/show.php/Pidgin_neu+Theme?content=59669">Pidgin_neu Theme</a></li><li><a
href="http://www.gnome-look.org/content/show.php/Pidgin_osX?content=58752">Pidgin_osX<br
/> </a></li><li><a
href="http://www.gnome-look.org/content/show.php/Alternative_Pidgin_OsX2?content=58878">Pidgi_osX2</a></li><li>A search for pidgin on this site will bring up even more.</li></ul></blockquote><blockquote><p>Make sure Pidgin is not running when you make this change and make sure you backup your original icons. If you can not find any you like, you can Google search for more or make your own.</p></blockquote><blockquote><p>* Originally found on this <a
href="http://ubuntuforums.org/showthread.php?p=2865150">forum </a></p></blockquote><blockquote><p>I settled on the <a
href="http://www.gnome-look.org/content/show.php/pidgin+glossy+theme?content=64754">Glossy Theme </a></p><p
style="text-align: center"><img
src="http://samuelhaddad.com/wp-content/uploads/2008/02/pidginfinal.png" alt="Pidgin Final" /></p><p
style="TEXT-ALIGN: left">In the end my pidgin looks a little something like this, I plan on tweaking it out some more though, I will keep you posted. If this post helped you in anyway please leave a comment and let me know.</p><p
style="text-align: left;"></blockquote> ]]></content:encoded> <wfw:commentRss>http://samuelhaddad.com/2008/02/16/sick-of-pidgins-look-and-feel/feed/</wfw:commentRss> <slash:comments>32</slash:comments> </item> </channel> </rss>
