<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Chua Wen Ching's Blog</title><subtitle type="html">Technologies, Communities, Career, Life</subtitle><id>http://weblogs.asp.net/wenching/atom.aspx</id><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/default.aspx" /><link rel="self" type="application/atom+xml" href="http://weblogs.asp.net/wenching/atom.aspx" /><generator uri="http://communityserver.org" version="3.0.20510.895">Community Server</generator><updated>2008-06-29T16:20:00Z</updated><entry><title>VS 2008 SP1 - Error connecting to undo manager of source file </title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/10/24/vs-2008-sp1-error-connecting-to-undo-manager-of-source-file.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/10/24/vs-2008-sp1-error-connecting-to-undo-manager-of-source-file.aspx</id><published>2008-10-24T03:19:00Z</published><updated>2008-10-24T03:19:00Z</updated><content type="html">&lt;p&gt;I got this error: &lt;/p&gt;&lt;p&gt;---------------------------&lt;br&gt;Microsoft Visual Studio&lt;br&gt;---------------------------&lt;br&gt;Error connecting to undo manager of source file 'C:\Users\chuawenching\Documents\Visual Studio 2008\Projects\TaskListExt\TaskListExt\Views\Home\Index.aspx.designer.cs'.&lt;br&gt;---------------------------&lt;br&gt;OK&amp;nbsp;&amp;nbsp; &lt;br&gt;---------------------------&lt;br&gt;&lt;/p&gt;&lt;p&gt;I had never faced such a problem before this. Not sure why? Even though I had developed numerous ASP.NET 2.0 web applications for customers. &lt;/p&gt;&lt;p&gt;Till earlier today, I got this error when I was trying to insert Helper methods for ASP.NET MVC Beta.&lt;/p&gt;&lt;p&gt;&amp;lt;%= Html.TextBox("firstName") %&amp;gt;&lt;/p&gt;&lt;p&gt;When I ran it, I got the error above. Then, I tried to remove that Helper method and the error still existed. Wonder why? I had done some research on the internet and realize this. &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&lt;/p&gt;&lt;p&gt;I noticed people faced this issue back in VS 2005 too. There was a solution posted in here (&lt;b&gt;credited to CoolBond&lt;/b&gt;) http://forums.asp.net/t/1100585.aspx &lt;/p&gt;&lt;p&gt;In case, you have to scroll down for the solution in that link above, do this:&lt;/p&gt;&lt;p&gt;a. Remove Index.aspx.designer.cs&lt;/p&gt;&lt;p&gt;b. Right click on Index.aspx and Convert to Web Application&lt;/p&gt;&lt;p&gt;c. Build your project or solution&lt;/p&gt;&lt;p&gt;d. Run it and it works. &lt;br&gt;&lt;/p&gt;&lt;p&gt;It is really that easy :) &lt;/p&gt;&lt;p&gt;Thanks to CoolBond for this. Save my day. &lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6701000" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="ASP.NET" scheme="http://weblogs.asp.net/wenching/archive/tags/ASP.NET/default.aspx" /><category term="Visual Studio" scheme="http://weblogs.asp.net/wenching/archive/tags/Visual+Studio/default.aspx" /></entry><entry><title>ASP.NET MVC Beta - IE 7 browser not refreshed to CSS/Javascript changes in VS 2008 SP1</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/10/22/asp-net-mvc-beta-ie-7-browser-not-refreshed-to-css-javascript-changes-in-vs-2008-sp1.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/10/22/asp-net-mvc-beta-ie-7-browser-not-refreshed-to-css-javascript-changes-in-vs-2008-sp1.aspx</id><published>2008-10-22T07:26:00Z</published><updated>2008-10-22T07:26:00Z</updated><content type="html">&lt;p&gt;I think this might be useful to developers. I suspect this as a bug, hopefully it can be resolve soon. I can't find anyone talking about this on the internet. Maybe someone already posted this in the Microsoft Forum.If not, you can refer it here.&lt;br&gt;&lt;/p&gt;&lt;p&gt;I was testing on ASP.NET MVC Beta on top of my Visual Studio 2008 SP1 earlier today until I spoted this issue. When I created a new ASP.NET MVC Application template, everything worked simply just fine. I could modify the existing Site.css and changed the body background-color to something else. It simply worked.&lt;/p&gt;&lt;p&gt;Now comes to the issue. When I started creating/modifying existing files within the generated template, my CSS/JavaScript would not work properly when I tried to do these as below:&lt;/p&gt;&lt;p&gt;a. Debug in IE 7 when pressing F5 in Visual Studio 2008 SP1&lt;/p&gt;&lt;p&gt;b. View in Browser on default.aspx&lt;/p&gt;&lt;p&gt;c. Browse with IE 7 (default)&lt;/p&gt;&lt;p&gt;&lt;i&gt;** As for point c, it worked with FireFox 3. &lt;/i&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;I tried to change the background-color from&amp;nbsp;&lt;/p&gt;&lt;p&gt;background-color: #5c87b2; &lt;br&gt;&lt;/p&gt;&lt;p&gt;to&lt;/p&gt;&lt;p&gt;background-color: #FFFFFF; OR&amp;nbsp; background-color: Orange; &lt;/p&gt;&lt;p&gt;It would only show the same original blue color. I had also added in JQuery for better UI navigations and it couldn't work. At first, I thought it could be the path issue for both JavaScript and CSS references in Site.master file. But it was not the cause.&lt;/p&gt;&lt;p&gt;When I tried to debug, it gave me this URL http://localhost:4944/. Then I made a wild guess, probably there could be a bug in Visual Studio 2008 for ASP.NET MVC Beta. So I copied that url and tested on a separate instance of IE. Now it works. It works in FireFox3 and other browsers too. &lt;/p&gt;&lt;p&gt;I am not sure whether this is a bug or anyone realizing it. I will ping Microsoft regarding this issue. Thanks.&lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6697532" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="ASP.NET MVC" scheme="http://weblogs.asp.net/wenching/archive/tags/ASP.NET+MVC/default.aspx" /><category term="ASP.NET" scheme="http://weblogs.asp.net/wenching/archive/tags/ASP.NET/default.aspx" /></entry><entry><title>JavaScript - With or Without Enclosing Script tag</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/10/20/javascript-with-or-without-enclosing-script-tag.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/10/20/javascript-with-or-without-enclosing-script-tag.aspx</id><published>2008-10-20T03:38:00Z</published><updated>2008-10-20T03:38:00Z</updated><content type="html">&lt;p&gt;This is really simple. But to be honest, I am still wondering why the later one will not work?&lt;/p&gt;&lt;p&gt;// Functional &lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;script type="text/javascript" src="lib/jquery/jquery.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;p&gt;// Non Functional&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;script type="text/javascript" src="lib/jquery/jquery.js" /&amp;gt;&lt;/p&gt;&lt;p&gt;I believe it is nothing to do with JQuery. More to JavaScript thing.&lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6690971" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="Javascript" scheme="http://weblogs.asp.net/wenching/archive/tags/Javascript/default.aspx" /></entry><entry><title>Microsoft XSS Detect Code Analysis - Missing License or Expired</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/10/15/microsoft-xss-detect-code-analysis-missing-license-or-expired.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/10/15/microsoft-xss-detect-code-analysis-missing-license-or-expired.aspx</id><published>2008-10-15T09:01:00Z</published><updated>2008-10-15T09:01:00Z</updated><content type="html">&lt;p&gt;Why would you get to see this error when you install Microsoft XSS Detect Code Analysis on top of Visual Studio 2008 in Windows Vista Service Pack 1 environment?&lt;/p&gt;&lt;p&gt;In order to solve this problem ... easy &lt;/p&gt;&lt;p&gt;Run Visual Studio 2008 Service Pack 1 as Administrator, then it works :) That's simple.&lt;/p&gt;&lt;p&gt;I believe XSS Detect requires certain authoritative rights before able to run it properly. Remember to build the whole project first before analyzing it.&lt;br&gt;&lt;/p&gt;&lt;p&gt;One more thing to raise here ... in order to install this software in Windows Vista Service Pack 1 properly ... make sure you download both files and execute the exe file. I tried the msi file and it wouldn't install. Good luck.&lt;/p&gt;&lt;p&gt;Update: After reboot, the control is disappeared even it is under Tools menu. Wonder why? &lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6681944" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="XSS" scheme="http://weblogs.asp.net/wenching/archive/tags/XSS/default.aspx" /><category term="XSSDetect" scheme="http://weblogs.asp.net/wenching/archive/tags/XSSDetect/default.aspx" /></entry><entry><title>TortoiseSVN - check-in/changed icons not rendered properly in Windows Vista SP 1</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/10/13/tortoisesvn-check-in-changed-icons-not-rendered-properly-in-windows-vista-sp-1.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/10/13/tortoisesvn-check-in-changed-icons-not-rendered-properly-in-windows-vista-sp-1.aspx</id><published>2008-10-13T08:36:00Z</published><updated>2008-10-13T08:36:00Z</updated><content type="html">&lt;p&gt;I realized this issue in Windows Vista only. It worked fine in Windows Server 2003 R2 machine. Check the image below :) As for me, I have to trust the right pane more than the left pane for accuracy. &lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/wenching/tortoise_vista.jpg"&gt;&lt;img src="http://weblogs.asp.net/blogs/wenching/tortoise_vista.jpg" border="0"&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6677119" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="Subversion" scheme="http://weblogs.asp.net/wenching/archive/tags/Subversion/default.aspx" /><category term="TortoiseSVN" scheme="http://weblogs.asp.net/wenching/archive/tags/TortoiseSVN/default.aspx" /></entry><entry><title>Aptana 1.1 IntelliSense Weirdness for JQuery</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/09/24/aptana-1-1-intellisense-weirdness-for-jquery.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/09/24/aptana-1-1-intellisense-weirdness-for-jquery.aspx</id><published>2008-09-24T06:41:00Z</published><updated>2008-09-24T06:41:00Z</updated><content type="html">&lt;p&gt;I had installed Aptana 1.1 to learn JQuery and hopefully I could get full IntelliSense support for JQuery. Aptana has lots of interesting features though which impressed me. In terms of Intellisense experience, Visual Studio 2008 is indeed better. Maybe I am too used to Visual Studio 2008. &lt;/p&gt;&lt;p&gt;But I realized that the IntelliSense in Aptana was unstable. I couldn't determine when IntelliSense worked and sometimes not. Check the screenshot below and you will know what I mean. I couldn't find $ inside the IntelliSense.&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;a href="http://weblogs.asp.net/blogs/wenching/aptana_intellisense1.jpg"&gt;&lt;img src="http://weblogs.asp.net/blogs/wenching/aptana_intellisense1.jpg" border="0"&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I tried to find solutions online especially the Aptana support forum and yet I was not able to figure out the answer. I made a few assumptions:&lt;/p&gt;&lt;p&gt;a. Maybe I was using the older JQuery package. So I updated to the latest 1.2.6. Still failed.&lt;/p&gt;&lt;p&gt;b. Maybe I installed in the wrong OS (1st time I installed on Windows Server 2003 R2). Then I installed on my other partition Windows Vista Service Pack 1. Not working too.&lt;/p&gt;&lt;p&gt;c. At first I used an empty project which I had manually inserted the JavaScript. Later I tried to create a new JQuery Web Projects. Still failed. &lt;br&gt;&lt;/p&gt;&lt;p&gt;d. I tried to update the software. But nothing new except extra plugins.&lt;/p&gt;&lt;p&gt;Then what's wrong?&lt;/p&gt;&lt;p&gt;Later I found out the solution. When you try to code JQuery in your external JavaScript file, make sure you open up the caller file like in my case flatland.html. Check the screenshot below:&lt;/p&gt;&lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/wenching/aptana_intellisense2.jpg"&gt;&lt;img src="http://weblogs.asp.net/blogs/wenching/aptana_intellisense2.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;It simply worked just fine. I would expect Aptana 1.1 smart enough to enable JQuery Intellisense for me since I had created JQuery Web Projects. Hope others find it handy here.&lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6639904" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="Aptana" scheme="http://weblogs.asp.net/wenching/archive/tags/Aptana/default.aspx" /><category term="JQuery" scheme="http://weblogs.asp.net/wenching/archive/tags/JQuery/default.aspx" /></entry><entry><title>Running ASP.NET 2.0 on FileSystem instead of IIS without Visual Studio 2005/2008 installed</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/07/24/running-asp-net-2-0-on-filesystem-instead-of-iis-without-visual-studio-2005-2008-installed.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/07/24/running-asp-net-2-0-on-filesystem-instead-of-iis-without-visual-studio-2005-2008-installed.aspx</id><published>2008-07-24T08:29:00Z</published><updated>2008-07-24T08:29:00Z</updated><content type="html">&lt;p mce_keep="true"&gt;How are you able to run your ASP.NET 2.0 web application on File System (Standalone web server without IIS) without Visual Studio 2005/2008&amp;nbsp;installed in your local machine. I will say this is particular useful for POC ASP.NET 2.0 web&amp;nbsp;application to customers or having web graphics designer testing out the ASP.NET 2.0 web application without knowing anything about IIS or trying to run F5 on Visual Studio 2005/2008.&lt;/p&gt;
&lt;p mce_keep="true"&gt;How can you do that? I heard from lots of people that it wasn't possible to do this. There was no way you can extract out this FileSystem from Visual Studio 2005/2008. You can download the existing Cassini 1.0&amp;nbsp;and enhance it.&amp;nbsp;You can also&amp;nbsp;find some implementation online like this &lt;a href="http://blogs.msdn.com/dmitryr/archive/2006/03/09/548131.aspx" mce_href="http://blogs.msdn.com/dmitryr/archive/2006/03/09/548131.aspx"&gt;http://blogs.msdn.com/dmitryr/archive/2006/03/09/548131.aspx&lt;/a&gt;&amp;nbsp;or download UltiDev Cassini (which I wasn't able to install it properly).&lt;/p&gt;
&lt;p mce_keep="true"&gt;This might not be common but I believe it can be useful to lots of people out there.&lt;/p&gt;
&lt;p mce_keep="true"&gt;&lt;b&gt;Tip #1&lt;/b&gt;&lt;/p&gt;
&lt;p mce_keep="true"&gt;You can run this filesystem without having Visual Studio 2005/2008&amp;nbsp;installed as long you have .NET Framework 2.0 and above installed.&lt;/p&gt;
&lt;p mce_keep="true"&gt;You can&amp;nbsp;locate&amp;nbsp;this file "WebDev.WebServer.EXE"&amp;nbsp;at C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727&lt;/p&gt;
&lt;p mce_keep="true"&gt;Try it yourself&lt;/p&gt;
&lt;p mce_keep="true"&gt;&lt;b&gt;Tip #2&lt;/b&gt;&lt;/p&gt;
&lt;p mce_keep="true"&gt;Run this application in the Visual Studio 2005/2008 command prompt as below or you can try open a command prompt and change directory to C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727&lt;/p&gt;
&lt;p mce_keep="true"&gt;webdev.webserver.exe /path:"C:\MyPOC\TestWeb" /port:1337 /vpath:"/TestWeb"&lt;/p&gt;
&lt;p mce_keep="true"&gt;First you define a path of your ASP.NET 2.0 Web Application. I include quotes around the path. &lt;/p&gt;
&lt;p mce_keep="true"&gt;Set any ports you like, but do be careful of complication to existing ports used by other applications. I noticed when you debugged ASP.NET 2.0 FileSystem project in Visual Studio 2005/2008, it would use this port 1337 so I reused it.&lt;/p&gt;
&lt;p mce_keep="true"&gt;I will recommend to set a virtual path like above. It can be anything you like.&lt;/p&gt;
&lt;p mce_keep="true"&gt;&lt;b&gt;Tip #3&lt;/b&gt;&lt;/p&gt;
&lt;p mce_keep="true"&gt;webdev.webserver is not dependent to IIS. If you don't believe it, try to stop all your IIS web process.&lt;/p&gt;
&lt;p mce_keep="true"&gt;&lt;b&gt;Tip #4&lt;/b&gt;&lt;/p&gt;
&lt;p mce_keep="true"&gt;The ASP.NET Development Server will run at your taskbar like below. But don't even try to click on the Root URL.&lt;/p&gt;
&lt;p mce_keep="true"&gt;You will never able to get it to run. I almost gave up because of this as I thought&amp;nbsp;there was some JIT error.&lt;/p&gt;
&lt;p mce_keep="true"&gt;&lt;a href="http://weblogs.asp.net/blogs/wenching/webdev.webserver%20error.JPG" mce_href="http://weblogs.asp.net/blogs/wenching/webdev.webserver%20error.JPG"&gt;&lt;img src="http://weblogs.asp.net/blogs/wenching/webdev.webserver%20error.JPG" mce_src="http://weblogs.asp.net/blogs/wenching/webdev.webserver%20error.JPG" border="0"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p mce_keep="true"&gt;Instead, run the URL &lt;a href="http://localhost:1337/SPAN" mce_href="http://localhost:1337/SPAN"&gt;http://localhost:1337/SPAN&lt;/a&gt; directly on your web browser (IE or FireFox). It works :)&lt;/p&gt;
&lt;p mce_keep="true"&gt;Hope you find this useful. If you know there is a better way, let me know. Thanks.&lt;/p&gt;&lt;p mce_keep="true"&gt;Updates:&lt;/p&gt;&lt;p mce_keep="true"&gt;I realized some machines did not have the webdev file in the right place, instead it was stored in this location C:\Program Files\Common Files\Microsoft Shared\DevServer\9.0&lt;/p&gt;&lt;p mce_keep="true"&gt;Nevertheless, it works :) Good luck &lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6438291" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="ASP.NET 2.0" scheme="http://weblogs.asp.net/wenching/archive/tags/ASP.NET+2.0/default.aspx" /></entry><entry><title>My coming initiatives for Green Computing/Orphans July 20, Senior Citizens July 26</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/07/09/my-coming-initiatives-for-green-computing-orphans-july-20-senior-citizens-july-26.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/07/09/my-coming-initiatives-for-green-computing-orphans-july-20-senior-citizens-july-26.aspx</id><published>2008-07-09T07:31:00Z</published><updated>2008-07-09T07:31:00Z</updated><content type="html">&lt;P mce_keep="true"&gt;I will be having 2 events that is worth to highlight in my blog:&lt;/P&gt;
&lt;P mce_keep="true"&gt;&lt;STRONG&gt;&lt;U&gt;Date: Sunday, July 20, 2008&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Organizers: MIND and Mesiniaga (co-organizer)&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Venue: FRIM (within the forest)&lt;/P&gt;
&lt;P mce_keep="true"&gt;Target audience: 60 orphans (age between 8 - 17), 60 working adults (registration will open soon), 10 (organizers, press)&lt;/P&gt;
&lt;P mce_keep="true"&gt;Press: Newspaper, Magazines and TV Channel (tentative). PC.COM is confirmed coming and covering.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Entrance: It's free. MIND (my community) will be covering everything including lunch.&lt;/P&gt;
&lt;P mce_keep="true"&gt;The session&amp;nbsp;is a platform to&amp;nbsp;educate the kids/adults about Green Computing&amp;nbsp;as well as building synergies between the orphans and IT working professionals. There will be indoor and outdoor activities. Thanks to Microsoft for sponsoring my community and making things happen.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Current sponsors: Dell Malaysia, Microsoft Malaysia, Microsoft Singapore, Microsoft MVP SEA Team, Microsoft Corp - VSTS Team, ISA Technologies, eQuva, Jetbrains, O'Reilly, PeachPit, PC.COM, SSW Australia, Red-Gate.&lt;/P&gt;
&lt;TABLE style="BORDER-COLLAPSE: collapse; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: black; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: white 2.25pt solid" class="" vAlign=top width=145&gt;
&lt;P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Time&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: black; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: white 2.25pt solid" class="" vAlign=top width=408&gt;&lt;B&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Topics&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;9.00 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Registration and Breakfast&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 2"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;9.30 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Welcome address and Keynote 1 – Mr. Fathil Sulaiman Ismail (Mesiniaga Managing Director) &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 3"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;9.45 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Green Computing Keynote 2 - Dell Country Manager Pang Yee Beng (TBC)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 4"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;9.55 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Prize Giving Ceremony to Home by Dell + Photo Shooting with all sponsors involved&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 5"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;10.05 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Green Computing Overview (Ms. Hazreen, Mesiniaga)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 6"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;10.20 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Approaches to Green Computing (Lim Fun Jin, ISA Technologies)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 7"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;10.40 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Green Technology Speaker 2 (Microsoft)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 8"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;11.00 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Canopy Walk (4 groups)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 9"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;11.00 a.m. – 11:30 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Press Briefing by Main Sponsor (Dell) and Organizer (MIND) and Mesiniaga&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 10"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;1.30 p.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Buffet Lunch (mingle with the kids)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 11; mso-yfti-lastrow: yes"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;2.30 p.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;The End&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P mce_keep="true"&gt;If any of you like to be our sponsors, drop me an email. I am not looking at cash funding, instead anything that you can sponsors to rock these kids or donate to the Orphanage Home. Thanks. &lt;/P&gt;
&lt;P mce_keep="true"&gt;The event&amp;nbsp;promotion will be advertised soon. Stay tuned.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&lt;STRONG&gt;&lt;U&gt;Date: Saturday, July 26, 2008&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Organizers: MIND&lt;/P&gt;
&lt;P mce_keep="true"&gt;Speaker Highlight: Yew Ban and Poh Sze&lt;/P&gt;
&lt;P mce_keep="true"&gt;Venue: Microsoft Malaysia (Auditorium)&lt;/P&gt;
&lt;P mce_keep="true"&gt;Target audience: minimum 30, maximum 100 senior citizens (age 40 - 70)&lt;/P&gt;
&lt;P mce_keep="true"&gt;Press: Unknown yet. Probably Mandarin Newspaper.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Entrance: It's free. MIND's session is always free and making impact for the community in Malaysia&lt;/P&gt;
&lt;P mce_keep="true"&gt;This is the 1st session that MIND will be conducting in Mandarin (traditional chinese) as well as to senior citizen. The prerequisite is that these senior citizens know&amp;nbsp;the fundamentals of computer.&amp;nbsp;Yew Ban, Poh Sze and myself will be speaking in Mandarin. MIND members can drop by for this session but this session is really simple and easy for the senior citizens to understand, so not sure suitable for the elite folks.&lt;/P&gt;
&lt;P mce_keep="true"&gt;The agenda will be as below:&lt;/P&gt;
&lt;TABLE style="BORDER-COLLAPSE: collapse; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: black; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: white 2.25pt solid" class="" vAlign=top width=145&gt;
&lt;P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Time&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: black; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: white 2.25pt solid" class="" vAlign=top width=408&gt;&lt;B&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Topics&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;9.30 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Registration&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 2"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;10.00 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Introducing Windows Vista in Chinese – Yew Ban and Wen Ching &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 3"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;10.40 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Break&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 4"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;10.45 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Introduction Microsoft Word 2007 in Chinese&amp;nbsp;– Yew Ban and Wen Ching&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 5"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;11.30 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Break&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 6"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;11.35 a.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #4f81bd; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Using Windows Mobile 6 in Chinese&amp;nbsp;(phones can be used other than just SMS and Phone Calls) – Poh Sze &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 7; mso-yfti-lastrow: yes"&gt;
&lt;TD style="BORDER-RIGHT: white 2.25pt solid; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 108.9pt; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=145&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;12.15 p.m.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: #d4d0c8; PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; BORDER-TOP: #d4d0c8; BACKGROUND: #365f91; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 4.25in; PADDING-TOP: 0in; BORDER-BOTTOM: #d4d0c8" class="" vAlign=top width=408&gt;&lt;SPAN style="COLOR: white"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;The END&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&amp;nbsp; 
&lt;P mce_keep="true"&gt;Well I hope both events will run smoothly and it can be teaser to my blog readers of MIND coming initiatives. Thank you.&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6379463" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="MIND" scheme="http://weblogs.asp.net/wenching/archive/tags/MIND/default.aspx" /></entry><entry><title>C# 3.0 - Using Anonymous Types</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/07/09/c-3-0-using-anonymous-types.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/07/09/c-3-0-using-anonymous-types.aspx</id><published>2008-07-09T07:06:00Z</published><updated>2008-07-09T07:06:00Z</updated><content type="html">&lt;P mce_keep="true"&gt;I had a friend who recently asked me on the ways using Anonymous Type in C# 3.0. Take note, this is just an example and to me it is like syntactic sugar. You can do the conventional way and it still works.&lt;/P&gt;
&lt;P mce_keep="true"&gt;If&amp;nbsp;you have a ComboBox&amp;nbsp;within .NET&amp;nbsp;Windows Forms and you like to&amp;nbsp;programmatically configure the&amp;nbsp;ComboBox with a list of values (Value &amp;amp; Member), normally people will do this:&lt;/P&gt;
&lt;DIV style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; BACKGROUND: black; COLOR: white; FONT-FAMILY: Consolas"&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;27&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #6897bb"&gt;IList&lt;/SPAN&gt; listOfAnimals = &lt;SPAN style="COLOR: #cc7832"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR: #ffc66d"&gt;ArrayList&lt;/SPAN&gt; {&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;28&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR: #ffc66d"&gt;Animal&lt;/SPAN&gt; { Id = &lt;SPAN style="COLOR: #6897bb"&gt;10&lt;/SPAN&gt;, Name = &lt;SPAN style="COLOR: #a5c25c"&gt;"Itik"&lt;/SPAN&gt; },&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;29&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR: #ffc66d"&gt;Animal&lt;/SPAN&gt; { Id = &lt;SPAN style="COLOR: #6897bb"&gt;1&lt;/SPAN&gt;, Name = &lt;SPAN style="COLOR: #a5c25c"&gt;"Ayam"&lt;/SPAN&gt; }&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;30&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;31&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;32&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;33&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; comboBox1.DataSource = listOfAnimals;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;34&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; comboBox1.ValueMember = &lt;SPAN style="COLOR: #a5c25c"&gt;"Id"&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;35&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; comboBox1.DisplayMember = &lt;SPAN style="COLOR: #a5c25c"&gt;"Name"&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;!--EndFragment--&gt;&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; BACKGROUND: black; COLOR: white; FONT-FAMILY: Consolas"&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;39&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;public&lt;/SPAN&gt; &lt;SPAN style="COLOR: #cc7832"&gt;class&lt;/SPAN&gt; &lt;SPAN style="COLOR: #ffc66d"&gt;Animal&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;40&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;41&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;public&lt;/SPAN&gt; &lt;SPAN style="COLOR: #cc7832"&gt;int&lt;/SPAN&gt; Id { &lt;SPAN style="COLOR: #cc7832"&gt;get&lt;/SPAN&gt;; &lt;SPAN style="COLOR: #cc7832"&gt;set&lt;/SPAN&gt;; }&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;42&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;public&lt;/SPAN&gt; &lt;SPAN style="COLOR: #cc7832"&gt;string&lt;/SPAN&gt; Name { &lt;SPAN style="COLOR: #cc7832"&gt;get&lt;/SPAN&gt;; &lt;SPAN style="COLOR: #cc7832"&gt;set&lt;/SPAN&gt;; }&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;43&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;/DIV&gt;&lt;!--EndFragment--&gt;
&lt;P mce_keep="true"&gt;To me, it is a bit redundant to create an Animal class just for the purpose of programmatically setting the values to IList. Take note, tt will not read from the database and I am using ArrayList for this example. You can use other types of course.&amp;nbsp;What if you have ComboBoxes that cater for Country, State, Cities, Phone Numbers, etc? &lt;/P&gt;
&lt;P mce_keep="true"&gt;The other way that is most appealing will be:&lt;/P&gt;
&lt;DIV style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; BACKGROUND: black; COLOR: white; FONT-FAMILY: Consolas"&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;33&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;public&lt;/SPAN&gt; &lt;SPAN style="COLOR: #cc7832"&gt;class&lt;/SPAN&gt; &lt;SPAN style="COLOR: #ffc66d"&gt;UltimateGenericComboBoxClass&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;34&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;35&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;public&lt;/SPAN&gt; &lt;SPAN style="COLOR: #cc7832"&gt;int&lt;/SPAN&gt; Value { &lt;SPAN style="COLOR: #cc7832"&gt;get&lt;/SPAN&gt;; &lt;SPAN style="COLOR: #cc7832"&gt;set&lt;/SPAN&gt;; }&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;36&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;public&lt;/SPAN&gt; &lt;SPAN style="COLOR: #cc7832"&gt;string&lt;/SPAN&gt; Member { &lt;SPAN style="COLOR: #cc7832"&gt;get&lt;/SPAN&gt;; &lt;SPAN style="COLOR: #cc7832"&gt;set&lt;/SPAN&gt;; }&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;37&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;
&lt;P mce_keep="true"&gt;And you use it across all your programmatically ComboBoxes.&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;As for me, I will recommend to consider using Anonymous types as below:&lt;/P&gt;
&lt;DIV style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; BACKGROUND: black; COLOR: white; FONT-FAMILY: Consolas"&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;22&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #6897bb"&gt;IList&lt;/SPAN&gt; listOfAnimals = &lt;SPAN style="COLOR: #cc7832"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR: #ffc66d"&gt;ArrayList&lt;/SPAN&gt; {&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;23&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;new&lt;/SPAN&gt; { Id = &lt;SPAN style="COLOR: #6897bb"&gt;10&lt;/SPAN&gt;, Name = &lt;SPAN style="COLOR: #a5c25c"&gt;"Itik"&lt;/SPAN&gt; },&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;24&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR: #cc7832"&gt;new&lt;/SPAN&gt; { Id = &lt;SPAN style="COLOR: #6897bb"&gt;1&lt;/SPAN&gt;, Name = &lt;SPAN style="COLOR: #a5c25c"&gt;"Ayam"&lt;/SPAN&gt; }&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;25&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;26&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;27&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; comboBox1.DataSource = listOfAnimals;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;28&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; comboBox1.ValueMember = &lt;SPAN style="COLOR: #a5c25c"&gt;"Id"&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN style="FONT-WEIGHT: normal; COLOR: #2b91af"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;29&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; comboBox1.DisplayMember = &lt;SPAN style="COLOR: #a5c25c"&gt;"Name"&lt;/SPAN&gt;;&lt;/P&gt;&lt;/DIV&gt;
&lt;P mce_keep="true"&gt;&lt;!--EndFragment--&gt;As the code above, within the ArrayList I will call &lt;STRONG&gt;new { Id = 10, Name = "Itik" }&lt;/STRONG&gt;. I did not create any&amp;nbsp;really redundant class for this. Let me know if you have a shorter way for this.&amp;nbsp;Have fun.&amp;nbsp;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6379402" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author><category term="C# 3.0" scheme="http://weblogs.asp.net/wenching/archive/tags/C_2300_+3.0/default.aspx" /></entry><entry><title>Japanese C# MVP session "Gaku Pro"</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/wenching/archive/2008/06/29/japanese-c-mvp-session-quot-gaku-pro-quot.aspx" /><id>http://weblogs.asp.net/wenching/archive/2008/06/29/japanese-c-mvp-session-quot-gaku-pro-quot.aspx</id><published>2008-06-29T07:20:00Z</published><updated>2008-06-29T07:20:00Z</updated><content type="html">&lt;P mce_keep="true"&gt;Great work Yuto. Even though I don't understand Japanese, but I like to see synergies among other countries C# MVP to promote C# in non English version.&lt;/P&gt;
&lt;P mce_keep="true"&gt;You can download his "Gaku Pro"&amp;nbsp;slides here &lt;A href="http://www.questudents.com/Event/20070810gakupro/Materials/gakupro1.pdf"&gt;http://www.questudents.com/Event/20070810gakupro/Materials/gakupro1.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Gaku Pro means Programming for Students.&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6334028" width="1" height="1"&gt;</content><author><name>wenching</name><uri>http://weblogs.asp.net/members/wenching.aspx</uri></author></entry></feed>