<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Practical Answers</title>
        <link>http://geekswithblogs.net/AskPaula/category/7494.aspx</link>
        <description>Answers to problems/questions across all topics.</description>
        <language>en-US</language>
        <copyright>Paula DiTallo  2007-2009 All Rights Reserved</copyright>
        <managingEditor>plditallo@ieee.org</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <item>
            <title>How do I cycle through a Collection?</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/06/16/132861.aspx</link>
            <description>&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font size="4"&gt;Here are the 2 common patterns in .NET:&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;font color="#993300" size="3"&gt;GIVEN:&lt;/font&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;font color="#993300" size="3"&gt;PATTERN #1:&lt;/font&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;font color="#993300"&gt;Note:&lt;/font&gt; &lt;font color="#993300"&gt;this method will work with collections that are typed, but not necessarily defined in a class which manages  enumeration&lt;/font&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;font size="2"&gt;
&lt;p&gt;&lt;font color="#0000ff"&gt;string&lt;/font&gt; itemName;&lt;/p&gt;
&lt;p&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;for&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; (&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;int&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; index = 0; index &amp;lt; OrderList.Count;index++)&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;    itemName = OrderList[index].ItemName;&lt;/p&gt;
&lt;p&gt;  &lt;font color="#339966"&gt; // do stuff here&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;&lt;font color="#993300" size="3"&gt;&lt;strong&gt;&lt;em&gt;PATTERN  #2&lt;/em&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;font size="2"&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.Text;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;namespace AskPaulaExamples&lt;br /&gt;
{&lt;br /&gt;
    public class Whine&lt;br /&gt;
    {&lt;br /&gt;
     &lt;font color="#339966"&gt;  // define AND dub the collection with something&lt;/font&gt;&lt;br /&gt;
       &lt;font color="#3366ff"&gt;List&amp;lt;string&amp;gt;&lt;/font&gt; OrderList = &lt;font color="#0000ff"&gt;new List&amp;lt;string&amp;gt;&lt;/font&gt;() &lt;font color="#993300"&gt;{"Gloves","Purse","Hat","Skirt","Gown"};&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;       &lt;font color="#0000ff"&gt;static void&lt;/font&gt; Main()&lt;br /&gt;
       {&lt;br /&gt;
           &lt;font color="#0000ff"&gt;Whine&lt;/font&gt; wailAbout = &lt;font color="#0000ff"&gt;new Whine&lt;/font&gt;();&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;           wailAbout.StuffForMe();&lt;br /&gt;
           &lt;br /&gt;
       }&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;       public void StuffForMe()&lt;br /&gt;
       {&lt;br /&gt;
           &lt;font color="#3366ff"&gt;IList&amp;lt;string&amp;gt;&lt;/font&gt; MyDemands = OrderList.AsReadOnly();&lt;br /&gt;
           &lt;font color="#3366ff"&gt;foreach (string&lt;/font&gt; Item i&lt;font color="#3366ff"&gt;n&lt;/font&gt; MyDemands)&lt;br /&gt;
           {&lt;br /&gt;
               &lt;font color="#3366ff"&gt;Console&lt;/font&gt;.WriteLine&lt;font color="#993300"&gt;("What I want for my BIRTHDAY: "&lt;/font&gt; + Item.ToString());&lt;br /&gt;
           }&lt;br /&gt;
       }&lt;br /&gt;
        &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;     }&lt;br /&gt;
}&lt;/font&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132861"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132861" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/132861.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2009 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/06/16/132861.aspx</guid>
            <pubDate>Tue, 16 Jun 2009 21:57:46 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/132861.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/06/16/132861.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/132861.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/132861.aspx</trackback:ping>
        </item>
        <item>
            <title>Why Can't I compile my LINQ code?</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/06/09/132720.aspx</link>
            <description>&lt;p&gt;If you're getting this message:&lt;/p&gt;
&lt;p&gt;&lt;font size="3" face="Arial"&gt;&lt;em&gt;&lt;font color="#993300"&gt;The type &lt;strong&gt;'System.Data.Linq&lt;/strong&gt;&lt;span style="font-weight: bold;"&gt;.DataContext' is defined in an assembly &lt;/span&gt;&lt;strong style="font-weight: bold;"&gt;that is not referenced. You must add a reference to assembly 'System.Data.Linq, Version=3.5.0.0, Culture=neutral&lt;/strong&gt;, PublicKeyToken=b77a5c561934e089'. C:\Documents and Settings\pldital\My Documents\Visual Studio 2008\Projects\PatentableServices\Transform\PetabyteCompression.svc.cs&lt;/font&gt;&lt;/em&gt; &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;...&lt;font size="4"&gt; add...  &lt;span style="font-weight: bold;"&gt;System.Data.Linq&lt;/span&gt; as a reference to your project.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;I still get bit every once in awhile (read: pasting together a poc) when I include a LINQ project in a solution were I've got a dependency ! &lt;img src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/cry_smile.gif" alt="" /&gt; &lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;br /&gt;
&lt;/font&gt; &lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132720"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132720" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/132720.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2009 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/06/09/132720.aspx</guid>
            <pubDate>Wed, 10 Jun 2009 05:52:42 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/132720.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/06/09/132720.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/132720.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/132720.aspx</trackback:ping>
        </item>
        <item>
            <title>Where is my Host file on Windows?</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/05/29/132494.aspx</link>
            <description>usually your host file (DNS/ip addresses) can be found under:&lt;br /&gt;
&lt;br /&gt;
c:\windows\system32\drivers\etc&lt;br /&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132494"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132494" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/132494.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2009 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/05/29/132494.aspx</guid>
            <pubDate>Fri, 29 May 2009 19:53:37 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/132494.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/05/29/132494.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/132494.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/132494.aspx</trackback:ping>
        </item>
        <item>
            <title>The Wrong Program is Active when I double Click on a File. How Do I Change it Back? (AKA: How do I change  My File Type Association?)</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/05/28/132471.aspx</link>
            <description>This can be a really irritating problem when suddenly the EXCEL file on your desktop you used to double-click on no longer gets viewed via Microsoft EXCEL, but instead gets viewed through the Microsoft Excel READER program instead! &lt;img src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/angry_smile.gif" alt="" /&gt;  In essence, either a new program you've installed has reset the file association, or you are working on a new computer that may have different software--overall, this area has to do with File Management/File Extension types.&lt;br /&gt;
&lt;br /&gt;
Here's what to do:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: rgb(153, 51, 0); font-weight: bold;"&gt;In Windows XP:&lt;/span&gt;&lt;br /&gt;
1. Look for the '&lt;span style="font-weight: bold;"&gt;My Computer&lt;/span&gt;'  icon on your desktop (usually to the far left, near the top of your monitor)&lt;br /&gt;
2. Double-click on the icon. A window will appear. Go to &lt;span style="font-weight: bold;"&gt;'Tools&lt;/span&gt;'. Click on &lt;span style="font-weight: bold;"&gt;Folder Options&lt;/span&gt;...&lt;br /&gt;
3. Look to make sure the  '&lt;span style="font-style: italic; font-weight: bold;"&gt;Hide Extensions for known file types'&lt;/span&gt; box is unchecked. Click '&lt;span style="font-weight: bold;"&gt;Ok&lt;/span&gt;', &lt;br /&gt;
4. Go to the &lt;span style="font-weight: bold;"&gt;File Types&lt;/span&gt; tab.&lt;br /&gt;
5. Look for the File extension (e.g. XLS) you want to change.&lt;br /&gt;
6. Once found, highlight it and click on the&lt;span style="font-weight: bold;"&gt; Change&lt;/span&gt; button.&lt;br /&gt;
7. Under recommended programs, the one you want is probably there. Be sure the '&lt;span style="font-weight: bold; font-style: italic;"&gt;Always use the selected program to open this kind of file'&lt;/span&gt; is checked. Click OK.  (Note: If you can't find your program under recommended programs, continue to scroll until you find the one you want.) &lt;br /&gt;
&lt;br /&gt;
&lt;font size="4"&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;span style="font-weight: bold; color: rgb(153, 51, 0);"&gt;In Vista&lt;/span&gt;:&lt;br /&gt;
1. open &lt;span style="font-weight: bold;"&gt;Control Pane&lt;/span&gt;l. Go to &lt;span style="font-weight: bold;"&gt;Programs&lt;/span&gt;. Click on &lt;span style="font-style: italic; font-weight: bold;"&gt;Make a file type always open in a specific program&lt;/span&gt;. ( if you are in classic view, open &lt;span style="font-weight: bold;"&gt;Default Programs&lt;/span&gt;. Click &lt;span style="font-style: italic; font-weight: bold;"&gt;Associate a file type with a program&lt;/span&gt;.&lt;br /&gt;
2. Locate/highlight a file type in the &lt;span style="font-weight: bold;"&gt;Set Associations&lt;/span&gt; folder.&lt;br /&gt;
3. Click on the &lt;span style="font-weight: bold;"&gt;Change&lt;/span&gt; Program button.&lt;br /&gt;
4. The &lt;span style="font-weight: bold;"&gt;Set Associations &lt;/span&gt;window will show--pick your program--using the same advice in Step #7 above.&lt;br /&gt;
5. When you've selected the program, Click &lt;span style="font-weight: bold;"&gt;OK.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That should patch you right up! &lt;img src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" alt="" /&gt;   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With that all that said:&lt;br /&gt;
&lt;br /&gt;
&lt;font size="3"&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;If you do not find the program you are looking for, do not try to change the existing association for these files. First determine why the program you think is there no longer appears to be there.&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132471"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132471" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/132471.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2009 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/05/28/132471.aspx</guid>
            <pubDate>Thu, 28 May 2009 14:51:05 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/132471.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/05/28/132471.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/132471.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/132471.aspx</trackback:ping>
        </item>
        <item>
            <title>Why do I get the error: "General failure. The URL was: [http text]. The system cannot find file specified"  When I click a link from an Outlook Message?</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/03/13/130066.aspx</link>
            <description>&lt;p&gt;In a nutshell, this is a FireFox last release issue.  If Internet Explorer is not your default browser, go into the internet options page (under the gear icon in IE 7) , then go to the programs tab. Click on the 'Make Default' button, then 'Apply'.  Try clicking on the link from your email message again. The message should now be gone.&lt;/p&gt;
&lt;p&gt;Raymond @ &lt;a href="http://www.raymond.cc"&gt;www.raymond.cc&lt;/a&gt; has a GREAT detailed blog entry on this issue explaining all of the reasons and conditions. &lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.raymond.cc/blog/archives/2008/03/25/fix-general-failure-when-open-link-or-url-from-outlook-and-windows-mail/"&gt;http://www.raymond.cc/blog/archives/2008/03/25/fix-general-failure-when-open-link-or-url-from-outlook-and-windows-mail/&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;He offers a different, more high tech solution--however, for those of you not interested in techie-stuff per se -- try the 'Easy Button(s)" approach first! &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=130066"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=130066" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/130066.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2009 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/03/13/130066.aspx</guid>
            <pubDate>Fri, 13 Mar 2009 16:55:24 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/130066.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/03/13/130066.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/130066.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/130066.aspx</trackback:ping>
        </item>
        <item>
            <title>Why am I getting a binding error on an *.msi file for a re-deployment of a BizTalk application that doesn't contain any bindings?</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/01/25/128964.aspx</link>
            <description>&lt;p&gt;When this &lt;em&gt;dreaded&lt;/em&gt; error crops up, its usually right in the midst of a fast and furious development effort. That's always been the case for me! To solve it in a hurry, I just dub the app with a higher version number, recompile and move on--at least that is what I did when I was a bts developer. Now that I'm a bts admin, I've delved into the topic more. Although the re-versioning scenario works, it is possible to re-deploy an *.msi package with the same version number using these few steps:&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;&lt;em&gt;Go to &lt;strong&gt;\Documents and Settings\[deployment acct username]\Application Data\Microsoft\BizTalk Server\Deployment\BindingFiles&lt;/strong&gt;. (READ: you should see 2 on a reploy, one with a tilda [&lt;font color="#993300"&gt;&lt;strong&gt;~&lt;/strong&gt;&lt;/font&gt;]; 1 without)&lt;/em&gt; &lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Since a new app with a new version # creates a &lt;strong&gt;&lt;font color="#993300"&gt;BindingInfo xml&lt;/font&gt;&lt;/strong&gt; file on an initial deployment, rename the one you find there to something else. Get rid of the new one (file without the ~) that failed.&lt;/em&gt; &lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Import/re-deploy the *.msi file again.&lt;/em&gt; &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;em&gt;Why &lt;/em&gt;do these steps  work?&lt;/strong&gt; It appears that new app deployments create the Binding.Info.xml file based on the initial assembly reflection which has the orchestrations, etc.  -- however -- when you redeploy an existing app, the binding file gets generated based on the details stored in the bts management database (BizTalkMgmt)  for that  existing assembly. The  binding file that gets generated from that process is the one  without the&lt;strong&gt;&lt;font color="#993300"&gt; ~.&lt;/font&gt;&lt;/strong&gt; &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;When you get rid of the base/initial bindings file, bts does not try to apply the bindings it expects to find  (even if there aren't any)  like it does the first time it recognizes the file.&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;These steps should solve the "ghost" bindings issue, but if not for some reason, there's always the tried and true re-versioning of the app!!  &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128964"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128964" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/128964.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2008 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/01/25/128964.aspx</guid>
            <pubDate>Mon, 26 Jan 2009 00:57:55 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/128964.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/01/25/128964.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/128964.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/128964.aspx</trackback:ping>
        </item>
        <item>
            <title>Why am I getting the error: CLSID_BizTalkPropertyBagFactory error in the BTS Admin console</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/01/20/128825.aspx</link>
            <description>&lt;p&gt;Perhaps you've experienced the scenario where you hit the F5 key on the Group Overview in the BizTalk Admin console and instead of seeing your message queues, you see instead the very ugly (&lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/devil_smile.gif" /&gt;) message:  &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font color="#333399"&gt;Failed to create a CLSID_BizTalkPropertyBagFa&lt;wbr&gt;&lt;/wbr&gt;ctory COM component installed &lt;br /&gt;
with a BizTalk server. A dynamic link library (DLL) initialization routine &lt;br /&gt;
failed. (WinMgmt)&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;Go to the event viewer and look for any COM/COM+ errors under applications. Chances are you will see a conflict with WMI services--perhaps a threading error. Since the SSO, BizTalk Admin Console, SCOM...(even event viewer) use WMI for the MMC console, one of the DLLs for WMI may have become unavailable. If WMI is not available, or the WMI service has crashed,  the console for the BizTalk Admin  can fail with this error message as its swan song (&lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/thumbs_down.gif" /&gt;).&lt;/p&gt;
&lt;p&gt;Aaron Tiensivu's blog offers a way to isolate WMI issues on svchost:&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;a href="http://blog.tiensivu.com/aaron/archives/294-Suspect-that-WMI-is-crashing-your-SVCHOST-Run-it-standalone..html"&gt;http://blog.tiensivu.com/aaron/archives/294-Suspect-that-WMI-is-crashing-your-SVCHOST-Run-it-standalone..html&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;There are 2 solutions that I know of, 1 radical and 1 less so...&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;restart the server [waaay radical, but effective]&lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt; &lt;/li&gt;
    &lt;li&gt;restart the WMI windows service &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128825"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128825" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/128825.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2008 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/01/20/128825.aspx</guid>
            <pubDate>Tue, 20 Jan 2009 22:16:50 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/128825.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/01/20/128825.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/128825.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/128825.aspx</trackback:ping>
        </item>
        <item>
            <title>Why am I getting the error: SQL Network Interfaces: The Local Security Authority cannot be contacted.[SQL Native Client]Cannot generate SSPI context</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2009/01/20/128823.aspx</link>
            <description>&lt;p&gt;The full error message looks like this:&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;[&lt;em&gt;&lt;font color="#993300"&gt;SNAC] “[SQL Native Client]SQL Network Interfaces: &lt;strong&gt;The Local Security Authority cannot be contacted.[&lt;/strong&gt;SQL Native Client]Cannot generate SSPI context”&lt;br /&gt;
[MDAC] “Cannot generate SSPI context”;&lt;br /&gt;
[.Net1.0/2.0]” Failed System.Data.SqlClient.SqlException: Cannot generate SSPI context”&lt;/font&gt;&lt;/em&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;When this message occurs--especially when the same access 20 minutes ago worked, chances are you've logged off of your primary network. An example would be that at work you were using an ODBC connection to reverse engineer a database into a Visio diagram on a local MSSQL Express instance, then when you went to work on it after hours at home offline the connection fails with this error message. &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;In essence, your desktop/laptop with the local db  instance is disconnected from its domain.  The immediate solution in this case would be to VPN back into the network and keep moving forward!&lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;There are other causes, and there are workarounds to the disconnected network roadblock that are explained exceptionally well in this MSDN blog:&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&lt;font face="Arial"&gt;&lt;a href="http://blogs.msdn.com/sql_protocols/archive/2005/10/19/482782.aspx"&gt;http://blogs.msdn.com/sql_protocols/archive/2005/10/19/482782.aspx&lt;/a&gt;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128823"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128823" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/128823.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2008 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2009/01/20/128823.aspx</guid>
            <pubDate>Tue, 20 Jan 2009 21:54:11 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/128823.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2009/01/20/128823.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/128823.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/128823.aspx</trackback:ping>
        </item>
        <item>
            <title>How do I view/see the PATH in a windows environment?</title>
            <link>http://geekswithblogs.net/AskPaula/archive/2008/12/18/128035.aspx</link>
            <description>&lt;p&gt;For those of you working with LINUX/UNIX and you've typed: &lt;/p&gt;
&lt;p&gt;c:&amp;gt; &lt;strong&gt;&lt;font color="#800080"&gt;echo $PATH&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;..in a command line expecting to see everything in your path on startup and saw only 'PATH', don't fret! &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/confused_smile.gif" /&gt;&lt;/p&gt;
&lt;p&gt;type this instead:&lt;/p&gt;
&lt;p&gt;c:&amp;gt; &lt;strong&gt;&lt;font color="#ff6600"&gt;echo %path%&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128035"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128035" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/128035.aspx" width="1" height="1" /&gt;</description>
            <dc:creator> Paula DiTallo , 2008. All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2008/12/18/128035.aspx</guid>
            <pubDate>Thu, 18 Dec 2008 17:47:27 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/128035.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2008/12/18/128035.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/128035.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/128035.aspx</trackback:ping>
        </item>
        <item>
            <title>Why am I getting the "operation has been canceled"  message in Outllook? </title>
            <link>http://geekswithblogs.net/AskPaula/archive/2008/12/07/127722.aspx</link>
            <description>&lt;span class="value"&gt;
&lt;h1 class="titleHeader"&gt;&lt;font size="4"&gt;If you are getting the message...&lt;/font&gt;&lt;/h1&gt;
&lt;h1 class="titleHeader"&gt;&lt;font color="#993300" size="5"&gt;This operation has been &lt;span class="searchTerm"&gt;canceled&lt;/span&gt; &lt;span class="searchTerm"&gt;due&lt;/span&gt; to &lt;span class="searchTerm"&gt;restrictions&lt;/span&gt; in effect on this computer&lt;/font&gt;&lt;/h1&gt;
&lt;p class="titleHeader"&gt;&lt;font size="3"&gt;...whenever you try to click on a hyperlink in a mail message when you are in Outlook or in a Word document,  it is primarily because your default web browser has a 3rd-party setting that doesn't work and play well with Office products. For example if you are using the FireFox web browser, try changing the default web application to be Internet Explorer.&lt;/font&gt;&lt;/p&gt;
&lt;p class="titleHeader"&gt;&lt;strong&gt;To do this, follow these steps:&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;
    &lt;div&gt;Start&amp;gt;Control Panel&amp;gt;Add Remove Programs&amp;gt;Set Program Access and Defaults&lt;/div&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;div&gt;Once you're in Program Access and Defaults, go to Custom&lt;/div&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;div&gt;Click on Internet Explorer; click on the Enable access to this program checkbox.&lt;/div&gt;
    &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Try the hyperlink again. If the problem still occurs after this, that means that there is a setting still active under Internet Explorer which is now your default. To bring back Internet Explorer to where it was before any 3rd-party tools (e.g. Google Toolbar, etc.) may have been installed, do the following:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt; In Internet Explorer, click on Options (if IE 7, go to Tools, Options) &lt;/li&gt;
    &lt;li&gt;Go to Advanced. &lt;/li&gt;
    &lt;li&gt;Click on Reset button. &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;&lt;font color="#993300"&gt;&lt;strong&gt;Note:&lt;/strong&gt; Once you click on the reset button all your browser add ons will be disabled.&lt;/font&gt;&lt;/em&gt; &lt;/p&gt;
&lt;p&gt;Once you complete this, follow steps 1-3. This should eliminate this message from reappearing. &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;/span&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=127722"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=127722" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/AskPaula/aggbug/127722.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Paula DiTallo  2007-2009 All Rights Reserved</dc:creator>
            <guid>http://geekswithblogs.net/AskPaula/archive/2008/12/07/127722.aspx</guid>
            <pubDate>Mon, 08 Dec 2008 01:44:52 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/AskPaula/comments/127722.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/AskPaula/archive/2008/12/07/127722.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/AskPaula/comments/commentRss/127722.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/AskPaula/services/trackbacks/127722.aspx</trackback:ping>
        </item>
    </channel>
</rss>