<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Dev 4 Web</title>
	<link>http://nordz.sauleil.com</link>
	<description>Just another Developer WordPress Discovery Channel</description>
	<lastBuildDate>Mon, 12 Apr 2010 08:17:48 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Change the default language in login screen (Windows)</title>
		<description><![CDATA[At my new job, I had the french keyboard set by default. When I type my password I always need to change the language. I finaly found a solution, and to be able to apply the solution you need to be able to go in the regedit.
Here&#8217;s the article: http://support.microsoft.com/kb/138354
It also works into windows Xp.
]]></description>
		<link>http://nordz.sauleil.com/2010/04/12/change-the-default-language-in-login-screen-windows/</link>
			</item>
	<item>
		<title>Image resizing in IE does weird thing</title>
		<description><![CDATA[The fix can be found on http://devthought.com/tumble/2009/03/tip-high-quality-css-thumbnails-in-ie7/
It gives an easy css solution to display thumbnails properly on a web page (ie7 bug).
]]></description>
		<link>http://nordz.sauleil.com/2009/04/21/image-resizing-in-ie-does-weird-thing/</link>
			</item>
	<item>
		<title>JQuery and ajax call to ASP.Net using object</title>
		<description><![CDATA[Great article on Encosia web site about posting data to your application using Ajax call.
It use the JQuery.ajax to post the data to the server using a stringnify method.
http://encosia.com/2009/04/07/using-complex-types-to-make-calling-services-less-complex/
]]></description>
		<link>http://nordz.sauleil.com/2009/04/07/jquery-and-ajax-call-to-aspnet-using-object/</link>
			</item>
	<item>
		<title>Login or Log-In</title>
		<description><![CDATA[Good thing to know  
http://stackoverflow.com/questions/307528/login-or-log-in
]]></description>
		<link>http://nordz.sauleil.com/2009/03/26/login-or-log-in/</link>
			</item>
	<item>
		<title>Design problems (solutions)</title>
		<description><![CDATA[This app enumerates all user interface design problems and possible solution (with one or more sample solution)!
I think this should be our “bible” when designing a page of refactoring one. 
And it should also be a guide when reviewing the usability of our apps&#8230;
 
http://quince.infragistics.com/#/ByMap/ViewPattern$pattern=Annotated+Scrollbar
 
For example: 
Question: “How to focus the attention of the end-user to [...]]]></description>
		<link>http://nordz.sauleil.com/2009/02/03/design-problems-solutions/</link>
			</item>
	<item>
		<title>When should we do tests?</title>
		<description><![CDATA[A co-worker asked me to go on the Steven Harman Blog to read the post &#8220;When Should I Write Tests&#8220;. I strongly suggest you to get there and open the two links he created.
]]></description>
		<link>http://nordz.sauleil.com/2008/12/18/when-should-we-do-tests/</link>
			</item>
	<item>
		<title>Make the Remote Desktop server works inside Vista Home Premium ( French edition )</title>
		<description><![CDATA[I actually had a lot of trouble getting this thing works because all the stuff is available for the English version only. First, you need to download the following:

termsrv
http://rapidshare.com/files/90325478/termsrv.sp1.patched.dll.html for home premium 32 bit.

You will need to unzip the termsrv somewhere on your computer and you will need to edit the bat file. You may [...]]]></description>
		<link>http://nordz.sauleil.com/2008/12/06/make-the-remote-desktop-server-works-inside-vista-home-premium-french-edition/</link>
			</item>
	<item>
		<title>Regroup your JavaScript function using JSON</title>
		<description><![CDATA[In JavaScript we have the opportunity to create object using JSON and we should use that opportunity for clarity of code. By example, if you want to have a call to a function that load something and return something else, you can do something like this:

var Math = &#123;
	Add: function&#40;Number1, Number2&#41; &#123;
		///
		///		Addition function.
		///
		/// Return the [...]]]></description>
		<link>http://nordz.sauleil.com/2008/11/19/regroup-your-javascript-function-using-json/</link>
			</item>
	<item>
		<title>Visual Studio &#8211; compress automatically your js file when building</title>
		<description><![CDATA[I found out that tiny-MCE (Moxie) was using one of their tool called JSTrim. That executable is used to compress your JavaScript files when you want and it also use an XML configuration file so you can select multiple JS files and put them together. By example, if you have 5 classes defined in 5 [...]]]></description>
		<link>http://nordz.sauleil.com/2008/11/16/visual-studio-compress-automatically-your-js-file-when-building/</link>
			</item>
	<item>
		<title>Goodies to know (.Net)</title>
		<description><![CDATA[There is some addon to Visual studio that are free that you may likes. Here&#8217;s some of them:
 
- DevExpress CodeRush Express: http://devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/
- Want to refactor your Aspx files ? http://devexpress.com/Products/Visual_Studio_Add-in/RefactorASP/
Want to know how it works? Look here http://tv.devexpress.com/


You want more goodies?
Check this out! http://www.visualstudiogallery.com/ This is an official site from MSFT!

Thanks to Yvan C.
]]></description>
		<link>http://nordz.sauleil.com/2008/11/05/goodies-to-know-net/</link>
			</item>
	<item>
		<title>SQL Server 2005 quick tips</title>
		<description><![CDATA[
Where I work, we are currently using SQL Server 2005 and maybe in few weeks 2008. I had an issue when I wanted to have a distinct select while using text field so I did my little research.
I found out that &#8220;Text&#8221; column are depreciated and we should use &#8220;nVarchar(max)&#8221; instead. The varchar using the [...]]]></description>
		<link>http://nordz.sauleil.com/2008/11/05/sql-server-2005-quick-tips/</link>
			</item>
	<item>
		<title>Best way to put control ClientId inside JavaScript</title>
		<description><![CDATA[
Hello,
While I was looking inside the MSDN forum I found out an interesting article. This article talks about the client Ids and how ugly it is to use it across JavaScript. There is a technique which is really easy to apply that is really good. If you want to learn more about that technique go [...]]]></description>
		<link>http://nordz.sauleil.com/2008/11/05/best-way-to-put-control-clientid-inside-javascript/</link>
			</item>
	<item>
		<title>Create a WebService in ASP.Net that return an XML Document.</title>
		<description><![CDATA[I know that you can find a lot of tutorial over the internet to create a simple Web Services that return data. Personally, I just wanted to create a quick tutorial to return an XML Document from a DataSet. 
First of all, you will need Visual Studio 2005 or 2008. Once you&#8217;ve created a web [...]]]></description>
		<link>http://nordz.sauleil.com/2008/09/14/create-a-webservice-in-aspnet-that-return-an-xml-document/</link>
			</item>
	<item>
		<title>How to resize IFrame to it&#8217;s content full height</title>
		<description><![CDATA[When working with IFrame, we may want the frame taking the 100% height of its content. In fact, we want to simulate the IFrame to look like a DIV. It is not simple as setting height 100% and overflow none. 
The content of the IFrame content load after the current page is loaded or after [...]]]></description>
		<link>http://nordz.sauleil.com/2008/09/14/iframe-resize-to-its-content-full-height/</link>
			</item>
	<item>
		<title>How to use JavaScript setInterval / setTimeout that works in all browsers</title>
		<description><![CDATA[Like usual, inside Internet Explorer you have one way of doing it and inside other browser you have different way of doing it. In fact, they looks almost the same, but when it comes to send parameters to the function pointer in your interval you may have some troubles to be browser compliant.
Here&#8217;s how internet [...]]]></description>
		<link>http://nordz.sauleil.com/2008/08/18/how-to-use-javascript-setinterval-settimeout-that-works-in-all-browsers/</link>
			</item>
	<item>
		<title>BUG IFrame transparency in Internet Explorer</title>
		<description><![CDATA[While doing some style on the site I&#8217;m working on, I wanted to have my IFrame with an invisible background, so I can see the main page background. What I did, is what you would do normally to make it works on &#8220;good&#8221; browsers like firefox.

1
2
3
4
body.ClassName /* Page nested in the IFrame */
&#123;
   [...]]]></description>
		<link>http://nordz.sauleil.com/2008/08/18/bug-iframe-transparency-in-internet-explorer/</link>
			</item>
	<item>
		<title>Use Enumerator power instead of doing infinite if/else</title>
		<description><![CDATA[While working with C# I found out that we can easily use the power of &#8220;Enum&#8221; instead of using hard-coded stuff. As many of you know, when we are posting a page using a query string the other page may want to manage it efficiently. Some people are doing multiple if/else to only validate the [...]]]></description>
		<link>http://nordz.sauleil.com/2008/08/17/use-enumerator-power-instead-of-doing-infinite-ifelse/</link>
			</item>
	<item>
		<title>New plugin added on the site [HeartBeat]</title>
		<description><![CDATA[I&#8217;ve created an another plugin that works on any html items. All you need to do is to do your selector and call my plugin &#8220;heartBeat&#8221;.
Example of doing a little animation with 3 divs (the 3 boxes under the code):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
	$&#40;document&#41;.ready&#40;function&#40;&#41;&#123;
		$&#40;&#34;#beat1&#34;&#41;.heartBeat&#40;
			&#123;
			delayBetweenAnimation:2000,  
			delay:1000 
			&#125;&#41;;
		setTimeout&#40;function&#40;&#41;&#123;
			$&#40;&#34;#beat2&#34;&#41;.heartBeat&#40;
				&#123;
				delayBetweenAnimation:2000,  
				delay:1000 
				&#125;&#41;;
		&#125;, 200&#41;;
		setTimeout&#40;function&#40;&#41;&#123;
			$&#40;&#34;#beat3&#34;&#41;.heartBeat&#40;
				&#123;
				delayBetweenAnimation:2000,  
				delay:1000 
				&#125;&#41;;
		&#125;, 500&#41;;
	&#125;&#41;;







My 3 divs are made [...]]]></description>
		<link>http://nordz.sauleil.com/2008/08/13/new-plugin-added-on-the-site-heartbeat/</link>
			</item>
	<item>
		<title>JQuery &#8211; checkboxMod plugins is now available</title>
		<description><![CDATA[My first JQuery plugin is now available to everyone. I also added the plugin into the JQuery plugins site. To access this plugin you only have to click here.
Description:
This plugin is used to enhence the actual checkbox in pages. Depending on OS and Theme, people actually have different check box look and feel. The one [...]]]></description>
		<link>http://nordz.sauleil.com/2008/08/11/jquery-checkboxmod-plugins-is-now-available/</link>
			</item>
	<item>
		<title>Day 1 &#8211; Site Up and Running</title>
		<description><![CDATA[I will now be able to publish some of my code (JavaScript and .Net) here and much more. My experienced brother will also be a contributor on this site and will post some tips and cool code.
I hope you will enjoy our articles.
]]></description>
		<link>http://nordz.sauleil.com/2008/08/08/day-1-site-up-and-running/</link>
			</item>
</channel>
</rss>
