<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for The mLogix Blog</title>
	<atom:link href="http://www.munit.co.uk/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mlogix-inc.com/blog</link>
	<description></description>
	<pubDate>Fri, 25 Jul 2008 06:59:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>Comment on Annoying Visual Studio 2005 quirks by jx</title>
		<link>http://www.mlogix-inc.com/blog/2007/03/28/annoying-visual-studio-2005-quirks/#comment-165329</link>
		<dc:creator>jx</dc:creator>
		<pubDate>Mon, 09 Jun 2008 15:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2007/03/28/annoying-visual-studio-2005-quirks/#comment-165329</guid>
		<description>same issue here.
if i put the scriptmanger onto the page, then it stop to auto-generate the designer.cs file. if i remove it, it then revert to working. and the strange thing is, I dont think it's due to something missing or not properly configured here, cus if i mannually add the controls declarations, it compiles and run without any problem.</description>
		<content:encoded><![CDATA[<p>same issue here.<br />
if i put the scriptmanger onto the page, then it stop to auto-generate the designer.cs file. if i remove it, it then revert to working. and the strange thing is, I dont think it&#8217;s due to something missing or not properly configured here, cus if i mannually add the controls declarations, it compiles and run without any problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dell Support is great! by Mike Surtees</title>
		<link>http://www.mlogix-inc.com/blog/2005/09/09/dell-support-is-great/#comment-159597</link>
		<dc:creator>Mike Surtees</dc:creator>
		<pubDate>Mon, 31 Mar 2008 19:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2005/09/09/dell-support-is-great/#comment-159597</guid>
		<description>I too had heard about many bad experiences, But when i noticed that part of the casing on my m1530 was peeling, i emailed dell and 2 emails later they offered to fully replace the laptop!

So for the moment i have only had great experiences with dell support!

As an additional note, 5 years back when my dell desktop's cd drive went wrong they were very quick to replace that as well!</description>
		<content:encoded><![CDATA[<p>I too had heard about many bad experiences, But when i noticed that part of the casing on my m1530 was peeling, i emailed dell and 2 emails later they offered to fully replace the laptop!</p>
<p>So for the moment i have only had great experiences with dell support!</p>
<p>As an additional note, 5 years back when my dell desktop&#8217;s cd drive went wrong they were very quick to replace that as well!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Uppercase Database by Ahmed Sagarwala</title>
		<link>http://www.mlogix-inc.com/blog/2007/11/13/uppercase-database/#comment-107908</link>
		<dc:creator>Ahmed Sagarwala</dc:creator>
		<pubDate>Sun, 06 Jan 2008 23:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2007/11/13/uppercase-database/#comment-107908</guid>
		<description>I totally agree. I've had to write scripts in the past to quickly convert everything to lowercase and update the database.

Yeesh... some people.</description>
		<content:encoded><![CDATA[<p>I totally agree. I&#8217;ve had to write scripts in the past to quickly convert everything to lowercase and update the database.</p>
<p>Yeesh&#8230; some people.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web Accessibility and the DDA by Clive Chinery</title>
		<link>http://www.mlogix-inc.com/blog/2004/10/19/web-accessibility-and-the-dda/#comment-99520</link>
		<dc:creator>Clive Chinery</dc:creator>
		<pubDate>Thu, 06 Dec 2007 16:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2004/10/19/web-accessibility-and-the-dda/#comment-99520</guid>
		<description>The link to the DDA website is now invalid.</description>
		<content:encoded><![CDATA[<p>The link to the DDA website is now invalid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Changing the log file location at runtime with log4net by adam p</title>
		<link>http://www.mlogix-inc.com/blog/2007/02/10/changing-the-log-file-location-at-runtime-with-log4net/#comment-98390</link>
		<dc:creator>adam p</dc:creator>
		<pubDate>Mon, 03 Dec 2007 18:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2007/02/10/changing-the-log-file-location-at-runtime-with-log4net/#comment-98390</guid>
		<description>This worked for me:
&lt;code&gt;
        public static void UpdateFileAppenderPaths(string theNewPath) {
            log4net.Repository.Hierarchy.Hierarchy h =
                (log4net.Repository.Hierarchy.Hierarchy) log4net.LogManager.GetRepository();
            foreach (IAppender a in h.Root.Appenders) {
                
                if (a is FileAppender) {                  
                    FileAppender fa = (FileAppender) a;
                    fa.File = theNewPath;
                    fa.ActivateOptions();
                    
                }
            }
        }
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>This worked for me:<br />
<code><br />
        public static void UpdateFileAppenderPaths(string theNewPath) {<br />
            log4net.Repository.Hierarchy.Hierarchy h =<br />
                (log4net.Repository.Hierarchy.Hierarchy) log4net.LogManager.GetRepository();<br />
            foreach (IAppender a in h.Root.Appenders) {</p>
<p>                if (a is FileAppender) {<br />
                    FileAppender fa = (FileAppender) a;<br />
                    fa.File = theNewPath;<br />
                    fa.ActivateOptions();</p>
<p>                }<br />
            }<br />
        }<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio 2005 macros stopped working by Sameer</title>
		<link>http://www.mlogix-inc.com/blog/2007/07/13/visual-studio-2005-macros-stopped-working/#comment-91997</link>
		<dc:creator>Sameer</dc:creator>
		<pubDate>Tue, 20 Nov 2007 09:11:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2007/07/13/visual-studio-2005-macros-stopped-working/#comment-91997</guid>
		<description>Friend ,

i have been facing same problem 

i found the Solution:

1. Open Start &#62; Run

RegEdit

HKLM\Software\Microsoft\Net Framwork Setup\NDP\V.20565\1033

Now Find SP 

Put Value to 1

 

2. Goto Following Link Download respective Patch for KB928365

  

http://ca.com/us/udm/upm/patch.aspx?uuid=52E3B5D2-76ED-4639-B59B-EEFB84956631

 

3. Install VS 2005 SP1

 

{Problem willl be solved</description>
		<content:encoded><![CDATA[<p>Friend ,</p>
<p>i have been facing same problem </p>
<p>i found the Solution:</p>
<p>1. Open Start &gt; Run</p>
<p>RegEdit</p>
<p>HKLM\Software\Microsoft\Net Framwork Setup\NDP\V.20565\1033</p>
<p>Now Find SP </p>
<p>Put Value to 1</p>
<p>2. Goto Following Link Download respective Patch for KB928365</p>
<p><a href="http://ca.com/us/udm/upm/patch.aspx?uuid=52E3B5D2-76ED-4639-B59B-EEFB84956631" rel="nofollow">http://ca.com/us/udm/upm/patch.aspx?uuid=52E3B5D2-76ED-4639-B59B-EEFB84956631</a></p>
<p>3. Install VS 2005 SP1</p>
<p>{Problem willl be solved</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hotmail, Firefox and Adblock+ by mUnit : Mun talks technology &#187; Remove annoying banner advert from Hotmail in IE7</title>
		<link>http://www.mlogix-inc.com/blog/2007/10/13/hotmail-firefox-and-adblock/#comment-76571</link>
		<dc:creator>mUnit : Mun talks technology &#187; Remove annoying banner advert from Hotmail in IE7</dc:creator>
		<pubDate>Mon, 29 Oct 2007 22:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2007/10/13/hotmail-firefox-and-adblock/#comment-76571</guid>
		<description>[...] I&#8217;ve posted before about removing the annoying banner advert from Hotmail/Windows Live Mail with Firefox and AdBlock+, but now you can do this with IE7 as well. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] I&#8217;ve posted before about removing the annoying banner advert from Hotmail/Windows Live Mail with Firefox and AdBlock+, but now you can do this with IE7 as well. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remove annoying banner advert from Hotmail in IE7 by piniyini</title>
		<link>http://www.mlogix-inc.com/blog/2007/10/25/remove-annoying-banner-advert-from-hotmail-in-ie7/#comment-73379</link>
		<dc:creator>piniyini</dc:creator>
		<pubDate>Thu, 25 Oct 2007 16:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2007/10/25/remove-annoying-banner-advert-from-hotmail-in-ie7/#comment-73379</guid>
		<description>I discovered ie7pro the other day and it rocks!</description>
		<content:encoded><![CDATA[<p>I discovered ie7pro the other day and it rocks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio 2005 &#038; ASP.NET Control woes by David</title>
		<link>http://www.mlogix-inc.com/blog/2007/06/07/visual-studio-2005-aspnet-control-woes/#comment-56954</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 27 Sep 2007 03:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2007/06/07/visual-studio-2005-aspnet-control-woes/#comment-56954</guid>
		<description>I ran into the same problem but adding the Register directive did nothing for me.  What I ended up doing was commenting out the offending control and then converted just that page into a web application project.  That seemed to get rid of the error and I just uncommented the offending control.</description>
		<content:encoded><![CDATA[<p>I ran into the same problem but adding the Register directive did nothing for me.  What I ended up doing was commenting out the offending control and then converted just that page into a web application project.  That seemed to get rid of the error and I just uncommented the offending control.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resetting the identity field in SQL Server by Vanessa Frost</title>
		<link>http://www.mlogix-inc.com/blog/2004/10/15/resetting-the-identity-field-in-sql-server/#comment-49907</link>
		<dc:creator>Vanessa Frost</dc:creator>
		<pubDate>Wed, 05 Sep 2007 21:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.munit.co.uk/blog/2004/10/15/resetting-the-identity-field-in-sql-server/#comment-49907</guid>
		<description>Please could you explain what the followign error message means.  It occurred when I was trying to access a discussion board:-

Critical Error! 
message_die() was called multiple times. 


-------------------------------------------------------------------------------- 

Error #1 
Unable to reseed PRNG 

Line : 255 
File : /home/tuldzdp/public_html/av/includes/functions.php 
SQL : UPDATE phpbb_config SET config_value = 'f533a7c6cfff0d97fad0de27df58aaa2' WHERE config_name = 'rand_seed' 


-------------------------------------------------------------------------------- 

Error #2 
Error doing DB query userdata row fetch 

Line : 94 
File : /home/tuldzdp/public_html/av/includes/sessions.php 
SQL : SELECT u.* FROM phpbb_users u, phpbb_sessions_keys k WHERE u.user_id = 427 AND u.user_active = 1 AND k.user_id = u.user_id AND k.key_id = '11c7408a31ccaec39c3da85533ad6c5d'</description>
		<content:encoded><![CDATA[<p>Please could you explain what the followign error message means.  It occurred when I was trying to access a discussion board:-</p>
<p>Critical Error!<br />
message_die() was called multiple times. </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; </p>
<p>Error #1<br />
Unable to reseed PRNG </p>
<p>Line : 255<br />
File : /home/tuldzdp/public_html/av/includes/functions.php<br />
SQL : UPDATE phpbb_config SET config_value = &#8216;f533a7c6cfff0d97fad0de27df58aaa2&#8242; WHERE config_name = &#8216;rand_seed&#8217; </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; </p>
<p>Error #2<br />
Error doing DB query userdata row fetch </p>
<p>Line : 94<br />
File : /home/tuldzdp/public_html/av/includes/sessions.php<br />
SQL : SELECT u.* FROM phpbb_users u, phpbb_sessions_keys k WHERE u.user_id = 427 AND u.user_active = 1 AND k.user_id = u.user_id AND k.key_id = &#8216;11c7408a31ccaec39c3da85533ad6c5d&#8217;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
