<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" 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:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for Winston Pang</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/winston pang/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for Winston Pang</title><link>http://channel9.msdn.com/Niners/winston%20pang/</link></image><description>Entries, comments and threads posted by Winston Pang</description><link>http://channel9.msdn.com/Niners/winston%20pang/</link><language>en-us</language><pubDate>Sat, 12 May 2007 04:28:01 GMT</pubDate><lastBuildDate>Sat, 12 May 2007 04:28:01 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>How can you handle ALL ASP.NET web controls inside AddParsedSubObject? [How can you handle ALL ASP.NET web controls inside AddParsedSubObject?]</title><description>Hey guys,&lt;BR&gt;&lt;BR&gt;i wrote a little custom web control so i can reuse it in my project, basically it has a bunch of div's and labels etc, and then normally within the main div, it should be capable of storing any normal HTML makrup of control, so i was researching and discovered i need to set the ParseChildren attribute to false and override AddParsedSubObject and CreateChildControls, however, for the AddParseSubObject method, i have to go check specifically the type of controls, otherwise they wont render correctly, my question is, how do u handle all the web controls, ill show u some code:&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;
&lt;P&gt;protected override void AddParsedSubObject(object obj)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;if (obj is LiteralControl)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;this.ViewState["InnerContents"] = ((LiteralControl)obj).Text;&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;else if (obj is Repeater)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;mRepeaters.Add((Repeater)obj);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;else if (obj is DataList)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;mDataLists.Add((DataList)obj);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;else if (obj is WebControl)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;mWebControls.Add((WebControl)obj);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;else&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;base.AddParsedSubObject(obj);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;protected override void CreateChildControls()&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;if (mRepeaters.Count &amp;gt; 0)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;foreach (Repeater repeater in mRepeaters)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;PaneContents.Controls.Add(repeater);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;if (mDataLists.Count &amp;gt; 0)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;foreach (DataList dataList in mDataLists)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;PaneContents.Controls.Add(dataList);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;if (mWebControls.Count &amp;gt; 0)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;foreach (WebControl webControl in mWebControls)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;PaneContents.Controls.Add(webControl);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;As you can see it seems a little cumbersome, adding a type everytime i want to support a control, PaneContents is the div which i want to add the control to.&lt;BR&gt;&lt;BR&gt;I would of thought just checking WebControl and LiteralControl should suffice, but it doesn't.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;My main objective is to achieve:&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&amp;lt;cc:MyControl runat="server" ID="test"&amp;gt;&lt;BR&gt;&lt;BR&gt;//markup or Webcontrol here...&lt;BR&gt;&lt;BR&gt;&amp;lt;/cc:MyControl&amp;gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Thanks guys&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/254671-How-can-you-handle-ALL-ASPNET-web-controls-inside-AddParsedSubObject/'&gt;How can you handle ALL ASP.NET web controls inside AddParsedSubObject?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/254671/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/254671-How-can-you-handle-ALL-ASPNET-web-controls-inside-AddParsedSubObject/</comments><link>http://channel9.msdn.com/forums/TechOff/254671-How-can-you-handle-ALL-ASPNET-web-controls-inside-AddParsedSubObject/</link><pubDate>Sat, 12 May 2007 04:28:01 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/254671-How-can-you-handle-ALL-ASPNET-web-controls-inside-AddParsedSubObject/</guid><evnet:views>2129</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/254671/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey guys,&lt;BR&gt;&lt;BR&gt;i wrote a little custom web control so i can reuse it in my project, basically it has a bunch of div's and labels etc, and then normally within the main div, it should be capable of storing any normal HTML makrup of control, so i was researching and discovered i need to set the ParseChildren attribute to false and override AddParsedSubObject and CreateChildControls, however, for the AddParseSubObject method, i have to go check specifically the type of controls, otherwise they wont render correctly, my question is, how do u handle all the web controls, ill show u some code:&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/254671-How-can-you-handle-ALL-ASPNET-web-controls-inside-AddParsedSubObject/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/254671/Trackback.aspx</trackback:ping></item><item><title>How do i get a channel 9  guy? [How do i get a channel 9  guy?]</title><description>&lt;P&gt;Hey everyone,&lt;BR&gt;&lt;BR&gt;How do i go about getting a channel 9 guy?&lt;BR&gt;&lt;BR&gt;I really want one!&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Thanks!&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Winston&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/254471-How-do-i-get-a-channel-9-guy/'&gt;How do i get a channel 9  guy?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/254471/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/254471-How-do-i-get-a-channel-9-guy/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/254471-How-do-i-get-a-channel-9-guy/</link><pubDate>Thu, 03 May 2007 04:31:30 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/254471-How-do-i-get-a-channel-9-guy/</guid><evnet:views>10766</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/254471/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Hey everyone,&lt;BR&gt;&lt;BR&gt;How do i go about getting a channel 9 guy?&lt;BR&gt;&lt;BR&gt;I really want one!&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Thanks!&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Winston&lt;/P&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>26</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/254471-How-do-i-get-a-channel-9-guy/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/254471/Trackback.aspx</trackback:ping></item><item><title>How would you validate fields when u want a tailored message for each? [How would you validate fields when u want a tailored message for each?]</title><description>&lt;P&gt;I want to see how people would approach this in another way.&lt;BR&gt;&lt;BR&gt;Say on a WebForm/WinForm, you have about 10 fields, and you want a different error message for each of them even though all you're testing is that it's filled in, for example "Please fill in your name", "Please fill in your address", etc...&lt;BR&gt;&lt;BR&gt;Normally you'd do a bunch of if's, but it gets kind of messy and your brain tells you that there must be another way of doing this.&lt;BR&gt;&lt;BR&gt;How would some go about handling this?&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/254304-How-would-you-validate-fields-when-u-want-a-tailored-message-for-each/'&gt;How would you validate fields when u want a tailored message for each?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/254304/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/254304-How-would-you-validate-fields-when-u-want-a-tailored-message-for-each/</comments><link>http://channel9.msdn.com/forums/TechOff/254304-How-would-you-validate-fields-when-u-want-a-tailored-message-for-each/</link><pubDate>Thu, 26 Apr 2007 04:35:20 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/254304-How-would-you-validate-fields-when-u-want-a-tailored-message-for-each/</guid><evnet:views>1935</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/254304/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;I want to see how people would approach this in another way.&lt;BR&gt;&lt;BR&gt;Say on a WebForm/WinForm, you have about 10 fields, and you want a different error message for each of them even though all you're testing is that it's filled in, for example "Please fill in your name", "Please fill in your address", etc...&lt;BR&gt;&lt;BR&gt;Normally you'd do a bunch of if's, but it gets kind of messy and your brain tells you that there must be another way of doing this.&lt;BR&gt;&lt;BR&gt;How would some go about handling this?&lt;/P&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/254304-How-would-you-validate-fields-when-u-want-a-tailored-message-for-each/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/254304/Trackback.aspx</trackback:ping></item><item><title>ASP.NET 2.0 Databinding help with an implementation [ASP.NET 2.0 Databinding help with an implementation]</title><description>&lt;P&gt;So i'm making my own Blog, and it's going to be simple the general layout is:&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;DATE - POST TITLE&lt;BR&gt;- - - - - - - - - - - - - - - - - &lt;BR&gt;POST CONTENTS&lt;BR&gt;- - - - - - - - - - - - - - - - - &lt;BR&gt;TAGS | COMMENT LINK(NUMBER OF COMMENTS)&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;So i've used a GridView, and supplied an SqlDataSource all works well, but now i'm trying to incorporate the TAGS feature, but it's kind of hard to do it all in the one single query, i don't think it's even possible.&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;My current schema goes something like this&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;Post - PostID_PK, Post title, etc&lt;BR&gt;Comment - CommentID_PK, CommentContents, PostID_FK&lt;BR&gt;Tag - TagID_PK, TagName&lt;BR&gt;Tag_Post - Tag_Post_ID_PK, TagID_FK, PostID_FK&lt;/P&gt;
&lt;P&gt;So that's the general layout, for my SqlDataSource i've got a query that will fetch all Posts, and also fetch the number of comments for each post, just a count. Works all well. But now i need to fetch all the Post_Tag records for EACH post, the results will be strange and i'm not sure how it'll work out in DataBinding.&lt;/P&gt;
&lt;P&gt;My next step is to make my own custom data source objects, but i'm not exactly sure how i should model my custom data source objects for me to make my &amp;lt;%# Eval("FieldName") %&amp;gt; calls work still inside my aspx page.&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;Winston&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/254074-ASPNET-20-Databinding-help-with-an-implementation/'&gt;ASP.NET 2.0 Databinding help with an implementation&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/254074/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/254074-ASPNET-20-Databinding-help-with-an-implementation/</comments><link>http://channel9.msdn.com/forums/TechOff/254074-ASPNET-20-Databinding-help-with-an-implementation/</link><pubDate>Mon, 16 Apr 2007 22:47:35 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/254074-ASPNET-20-Databinding-help-with-an-implementation/</guid><evnet:views>3447</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/254074/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;So i'm making my own Blog, and it's going to be simple the general layout is:&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;DATE - POST TITLE&lt;BR&gt;- - - - - - - - - - - - - - - - - &lt;BR&gt;POST CONTENTS&lt;BR&gt;- - - - - - - - - - - - - - - - - &lt;BR&gt;TAGS | COMMENT LINK(NUMBER OF COMMENTS)&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;So i've used a GridView, and supplied an SqlDataSource all works well, but now i'm trying to incorporate the TAGS feature, but it's kind of hard to do it all in the one single query, i don't think it's even possible.&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;My current schema goes something like this&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;Post - PostID_PK, Post title, etc&lt;BR&gt;Comment - CommentID_PK, CommentContents, PostID_FK&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/254074-ASPNET-20-Databinding-help-with-an-implementation/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/254074/Trackback.aspx</trackback:ping></item><item><title>Bug inside Web App project templates for Visual Studio 2005? [Bug inside Web App project templates for Visual Studio 2005?]</title><description>Well it looks like i've bumped into a bug.&lt;BR&gt;&lt;BR&gt;I know they brought back the create a Web Solution inside the New Project dialog throuhg SP1, but i'm getting the vibe, they just re-enabled it and didn't update the template files accordingly, because if you create it through the New Project dialog, the template generates the Page directives using CodeBehind attribute, which is depericated, while if you make it inside the Web Solution dialog, it generates the correct Attributes using CodeFile attribute.&lt;BR&gt;&lt;BR&gt;Has anyone else experienced the same issue?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/253837-Bug-inside-Web-App-project-templates-for-Visual-Studio-2005/'&gt;Bug inside Web App project templates for Visual Studio 2005?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/253837/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/253837-Bug-inside-Web-App-project-templates-for-Visual-Studio-2005/</comments><link>http://channel9.msdn.com/forums/TechOff/253837-Bug-inside-Web-App-project-templates-for-Visual-Studio-2005/</link><pubDate>Sat, 07 Apr 2007 05:04:59 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/253837-Bug-inside-Web-App-project-templates-for-Visual-Studio-2005/</guid><evnet:views>2416</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/253837/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Well it looks like i've bumped into a bug.&lt;BR&gt;&lt;BR&gt;I know they brought back the create a Web Solution inside the New Project dialog throuhg SP1, but i'm getting the vibe, they just re-enabled it and didn't update the template files accordingly, because if you create it through the New Project dialog, the template generates the Page directives using CodeBehind attribute, which is depericated, while if you make it inside the Web Solution dialog, it generates the correct Attributes using CodeFile attribute.&lt;BR&gt;&lt;BR&gt;Has anyone else experienced the same issue?</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/253837-Bug-inside-Web-App-project-templates-for-Visual-Studio-2005/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/253837/Trackback.aspx</trackback:ping></item><item><title>Making a simple connection with SQL 2005 wont work!! [Making a simple connection with SQL 2005 wont work!!]</title><description>Hey guys i've got this block of code i'm trying to just connect to the DB, pull out a table and traverse the columns.&lt;BR&gt;&lt;BR&gt;
&lt;P&gt;String dbpath = Path.Combine(Application.StartupPath, "Database1.mdf");&lt;/P&gt;
&lt;P&gt;String conn = @"Server=.\SQLExpress;AttachDbFilename=" + dbpath + ";Database=database1;Trusted_Connection=Yes;";&lt;/P&gt;
&lt;P&gt;SqlConnection con = new SqlConnection(conn);&lt;/P&gt;
&lt;P&gt;con.Open();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SqlCommand comm = new SqlCommand("SELECT * FROM Student", con);&lt;/P&gt;
&lt;P&gt;SqlDataReader reader = comm.ExecuteReader();&lt;/P&gt;
&lt;P&gt;while (reader.Read())&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;MessageBox.Show("Retrieved ID:" + reader["ID"] + ", Name: " + reader["Name"]);&lt;/P&gt;
&lt;P&gt;}&lt;BR&gt;&lt;BR&gt;I have no idea what's wrong.&lt;BR&gt;&lt;BR&gt;I keep getting thrown exceptiosn about cannot attach a DB.&lt;BR&gt;&lt;BR&gt;What i'm trying to do is connect to a SQL 2005 .mdb file locally.&lt;BR&gt;&lt;BR&gt;I've setup my SQL configuration to allow remote connections, it's all set.&lt;BR&gt;&lt;BR&gt;I have created the DB already called Database1.mdf, with one Student table with ID, Name, LastName.&lt;BR&gt;&lt;BR&gt;Also one more question, how do i find out about the Database name that i specify int he connection string normally, or is that an arbitrary name i make up that's unique?&lt;BR&gt;&lt;BR&gt;And, how does one set the User and Password of a .mdf file?&lt;BR&gt;&lt;BR&gt;Thanks for your help guys.&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/215851-Making-a-simple-connection-with-SQL-2005-wont-work/'&gt;Making a simple connection with SQL 2005 wont work!!&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/215851/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/215851-Making-a-simple-connection-with-SQL-2005-wont-work/</comments><link>http://channel9.msdn.com/forums/TechOff/215851-Making-a-simple-connection-with-SQL-2005-wont-work/</link><pubDate>Sat, 29 Jul 2006 04:04:49 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/215851-Making-a-simple-connection-with-SQL-2005-wont-work/</guid><evnet:views>14061</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/215851/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey guys i've got this block of code i'm trying to just connect to the DB, pull out a table and traverse the columns.
String dbpath = Path.Combine(Application.StartupPath, "Database1.mdf");
String conn = @"Server=.\SQLExpress;AttachDbFilename=" + dbpath + ";Database=database1;Trusted_Connection=Yes;";
SqlConnection con = new SqlConnection(conn);
con.Open();
&amp;nbsp;
SqlCommand comm = new SqlCommand("SELECT * FROM Student", con);
SqlDataReader reader = comm.ExecuteReader();
while (reader.Read())
{
MessageBox.Show("Retrieved ID:" + reader["ID"] + ", Name: " + reader["Name"]);
}I have no&amp;#8230;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>12</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/215851-Making-a-simple-connection-with-SQL-2005-wont-work/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/215851/Trackback.aspx</trackback:ping></item><item><title>I empathise with the ones who are annoyed with Vista [I empathise with the ones who are annoyed with Vista]</title><description>I've recently, for the first time, tried out Vista, on the Beta 2 released, and i've finally realised why people are annoyed with so it so much.&lt;BR&gt;&lt;BR&gt;They've broken the entire UI, and 2 step tasks into 5 step tasks.&lt;BR&gt;&lt;BR&gt;I don't understand why they've broken up the Display properties into 5 different dialogs, with just one tab-page, that surely annoys me.&lt;BR&gt;&lt;BR&gt;Why on earth is the Windows Mail toolbar blue, that is so hideous, what on earth were they thinking, the blue is too eye blinding.&lt;BR&gt;&lt;BR&gt;There's many more little annoyances, for example the Start Search in the task panel, when you delete all the text, it loses focus! WTH?&lt;BR&gt;&lt;BR&gt;Windows Basic, without glass looks horrible, only glass makes it&amp;nbsp;look appealing.&lt;BR&gt;&lt;BR&gt;I find that the aqua/turquoise is over used in explorer and often destroys the UI.&lt;BR&gt;&lt;BR&gt;Management console windows still look horrible. I still see a heap load of XP + 9x icons. &lt;BR&gt;&lt;BR&gt;Sidebar gadgets arent even as hyped as it seems either, some seem redundant, some seem to be just there for the sake of it, like a calculator? What's the point of windows calc now?&lt;BR&gt;&lt;BR&gt;Don't get me wrong, i'm not a basher, i initially decided to hold back till RC1 to try it, i haven't used one build since the longhorn reset either, but it's definitely rather dissapointing.&lt;BR&gt;&lt;BR&gt;I just don't understand what they did to the usability of the OS, i feel that Control Panel is a maze to me now, they've over complicated it.&lt;BR&gt;&lt;BR&gt;Windows XP's usability was spot on, but now it's broken in Vista, =\&lt;BR&gt;&lt;BR&gt;I just hope they change this before it goes RTM.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/203989-I-empathise-with-the-ones-who-are-annoyed-with-Vista/'&gt;I empathise with the ones who are annoyed with Vista&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/203989/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/203989-I-empathise-with-the-ones-who-are-annoyed-with-Vista/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/203989-I-empathise-with-the-ones-who-are-annoyed-with-Vista/</link><pubDate>Tue, 27 Jun 2006 03:33:52 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/203989-I-empathise-with-the-ones-who-are-annoyed-with-Vista/</guid><evnet:views>8563</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/203989/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've recently, for the first time, tried out Vista, on the Beta 2 released, and i've finally realised why people are annoyed with so it so much.&lt;BR&gt;&lt;BR&gt;They've broken the entire UI, and 2 step tasks into 5 step tasks.&lt;BR&gt;&lt;BR&gt;I don't understand why they've broken up the Display properties into 5 different dialogs, with just one tab-page, that surely annoys me.&lt;BR&gt;&lt;BR&gt;Why on earth is the Windows Mail toolbar blue, that is so hideous, what on earth were they thinking, the blue is too eye blinding.&lt;BR&gt;&lt;BR&gt;There's many more little annoyances, for example the Start Search in the task panel, when you delete all the text, it loses focus! WTH?&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>15</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/203989-I-empathise-with-the-ones-who-are-annoyed-with-Vista/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/203989/Trackback.aspx</trackback:ping></item><item><title>Are there aussie sydney people here at channel 9 who wants a free app made? [Are there aussie sydney people here at channel 9 who wants a free app made?]</title><description>Hey fellow channel9'ers&lt;BR&gt;&lt;BR&gt;If you're in sydney, australia, and you work in a company or own a business where you've been wanting to have a custom information system based application designed for you, here's your chance.&lt;BR&gt;&lt;BR&gt;There's no catch, basically it's a subject i'm doing at uni, where a team of 6 of us are required to create a free solution for an external client.&lt;BR&gt;&lt;BR&gt;If you're interested just pop me an e-mail.&lt;BR&gt;&lt;BR&gt;Thanks.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/199549-Are-there-aussie-sydney-people-here-at-channel-9-who-wants-a-free-app-made/'&gt;Are there aussie sydney people here at channel 9 who wants a free app made?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/199549/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/199549-Are-there-aussie-sydney-people-here-at-channel-9-who-wants-a-free-app-made/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/199549-Are-there-aussie-sydney-people-here-at-channel-9-who-wants-a-free-app-made/</link><pubDate>Wed, 14 Jun 2006 06:40:31 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/199549-Are-there-aussie-sydney-people-here-at-channel-9-who-wants-a-free-app-made/</guid><evnet:views>1946</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/199549/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey fellow channel9'ers&lt;BR&gt;&lt;BR&gt;If you're in sydney, australia, and you work in a company or own a business where you've been wanting to have a custom information system based application designed for you, here's your chance.&lt;BR&gt;&lt;BR&gt;There's no catch, basically it's a subject i'm doing at uni, where a team of 6 of us are required to create a free solution for an external client.&lt;BR&gt;&lt;BR&gt;If you're interested just pop me an e-mail.&lt;BR&gt;&lt;BR&gt;Thanks.</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/199549-Are-there-aussie-sydney-people-here-at-channel-9-who-wants-a-free-app-made/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/199549/Trackback.aspx</trackback:ping></item><item><title>AJAX being over used in Live products? [AJAX being over used in Live products?]</title><description>What do you guys think towards the live products, i find that AJAX is overused, and sometimes slows things down, in comparison to google, for example gmail vs live mail.&lt;BR&gt;&lt;BR&gt;Also, why exactly is there a need to have a Windows Live Mail Client, when they can just enable pop access for us in our live mail accounts?&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/195563-AJAX-being-over-used-in-Live-products/'&gt;AJAX being over used in Live products?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/195563/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/195563-AJAX-being-over-used-in-Live-products/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/195563-AJAX-being-over-used-in-Live-products/</link><pubDate>Sun, 04 Jun 2006 14:58:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/195563-AJAX-being-over-used-in-Live-products/</guid><evnet:views>8375</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/195563/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>What do you guys think towards the live products, i find that AJAX is overused, and sometimes slows things down, in comparison to google, for example gmail vs live mail.&lt;BR&gt;&lt;BR&gt;Also, why exactly is there a need to have a Windows Live Mail Client, when they can just enable pop access for us in our live mail accounts?&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/195563-AJAX-being-over-used-in-Live-products/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/195563/Trackback.aspx</trackback:ping></item><item><title>When will we lose the Win 3.1 Font dialog =( [When will we lose the Win 3.1 Font dialog =(]</title><description>It's like beta 2, and they still haven't gotten rid of it yet:&lt;BR&gt;&lt;BR&gt;&lt;a href="http://media.arstechnica.com/reviews/os/vistab2.media/fonts.jpg"&gt;http://media.arstechnica.com/reviews/os/vistab2.media/fonts.jpg&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;I know it's not that much of an issue, but hey, it doesn't blend well with the rest of the shiny OS, furthermore, can they also get rid of the 3.1 icons in some of the management consoles or policy editors.&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/194612-When-will-we-lose-the-Win-31-Font-dialog-/'&gt;When will we lose the Win 3.1 Font dialog =(&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/194612/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/194612-When-will-we-lose-the-Win-31-Font-dialog-/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/194612-When-will-we-lose-the-Win-31-Font-dialog-/</link><pubDate>Thu, 01 Jun 2006 15:34:46 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/194612-When-will-we-lose-the-Win-31-Font-dialog-/</guid><evnet:views>6107</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/194612/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>It's like beta 2, and they still haven't gotten rid of it yet:&lt;BR&gt;&lt;BR&gt;&lt;a href="http://media.arstechnica.com/reviews/os/vistab2.media/fonts.jpg"&gt;http://media.arstechnica.com/reviews/os/vistab2.media/fonts.jpg&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;I know it's not that much of an issue, but hey, it doesn't blend well with the rest of the shiny OS, furthermore, can they also get rid of the 3.1 icons in some of the management consoles or policy editors.&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/194612-When-will-we-lose-the-Win-31-Font-dialog-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/194612/Trackback.aspx</trackback:ping></item><item><title>What do you guys think the trend for IT in business will be for the next 5 yrs [What do you guys think the trend for IT in business will be for the next 5 yrs]</title><description>I've been looking at SOA recently, i wonder what's going to be next biggest trend.&lt;BR&gt;&lt;BR&gt;What's your thoughts towards it?&lt;BR&gt;&lt;BR&gt;Do you think an emphasis on richer UIs for business applications be a trend? With the inception of WPF&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/193226-What-do-you-guys-think-the-trend-for-IT-in-business-will-be-for-the-next-5-yrs/'&gt;What do you guys think the trend for IT in business will be for the next 5 yrs&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/193226/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/193226-What-do-you-guys-think-the-trend-for-IT-in-business-will-be-for-the-next-5-yrs/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/193226-What-do-you-guys-think-the-trend-for-IT-in-business-will-be-for-the-next-5-yrs/</link><pubDate>Sun, 28 May 2006 04:45:01 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/193226-What-do-you-guys-think-the-trend-for-IT-in-business-will-be-for-the-next-5-yrs/</guid><evnet:views>1432</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/193226/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've been looking at SOA recently, i wonder what's going to be next biggest trend.&lt;BR&gt;&lt;BR&gt;What's your thoughts towards it?&lt;BR&gt;&lt;BR&gt;Do you think an emphasis on richer UIs for business applications be a trend? With the inception of WPF</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/193226-What-do-you-guys-think-the-trend-for-IT-in-business-will-be-for-the-next-5-yrs/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/193226/Trackback.aspx</trackback:ping></item><item><title>ostream_iterators [ostream_iterators]</title><description>&lt;SPAN id=intelliTxt&gt;Hey guys, i'm using an ostream_iterator in conjunction with the copy algorithm, to iterate through a a list and append it to an ostream:'&lt;BR&gt;&lt;BR&gt;std::ostream_iterator&amp;lt;std::string&amp;gt; osi(rOstream, ", ");&lt;BR&gt;std::copy(rAddress.components.begin(),rAddress.components.end(),osi);&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;however, as you can see i've used a comma as a delimiter, but, i don't want the last item having it dangle at the end.&lt;BR&gt;&lt;BR&gt;i.e.&lt;BR&gt;&lt;BR&gt;Hello, how, are, you,&lt;BR&gt;&lt;BR&gt;I don't want the comma after the last item, what can i do?&lt;BR&gt;&lt;BR&gt;I've tried doing rAddress.componenets.end() - 1 to try to skip the last element, but that gives me an error.&lt;BR&gt;&lt;BR&gt;Thanks!&lt;/SPAN&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/187713-ostreamiterators/'&gt;ostream_iterators&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/187713/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/187713-ostreamiterators/</comments><link>http://channel9.msdn.com/forums/TechOff/187713-ostreamiterators/</link><pubDate>Fri, 12 May 2006 10:42:56 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/187713-ostreamiterators/</guid><evnet:views>2455</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/187713/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;SPAN id=intelliTxt&gt;Hey guys, i'm using an ostream_iterator in conjunction with the copy algorithm, to iterate through a a list and append it to an ostream:'&lt;BR&gt;&lt;BR&gt;std::ostream_iterator&amp;lt;std::string&amp;gt; osi(rOstream, ", ");&lt;BR&gt;std::copy(rAddress.components.begin(),rAddress.components.end(),osi);&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;however, as you can see i've used a comma as a delimiter, but, i don't want the last item having it dangle at the end.&lt;BR&gt;&lt;BR&gt;i.e.&lt;BR&gt;&lt;BR&gt;Hello, how, are, you,&lt;BR&gt;&lt;BR&gt;I don't want the comma after the last item, what can i do?&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/187713-ostreamiterators/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/187713/Trackback.aspx</trackback:ping></item><item><title>Adding additional property for design time for a extended control. [Adding additional property for design time for a extended control.]</title><description>Hey guys, i'm owner drawing and extending the existing listbox, and i'm providing a new listitem type that has additionals fields.&lt;BR&gt;&lt;BR&gt;I'm trying to add an Items property for the extended listbox control which will add new listitems that i've defined, and allow the IDE to generate code for it.&lt;BR&gt;&lt;BR&gt;How would i go about doing this?&lt;BR&gt;&lt;BR&gt;Thanks guys.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/183600-Adding-additional-property-for-design-time-for-a-extended-control/'&gt;Adding additional property for design time for a extended control.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/183600/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/183600-Adding-additional-property-for-design-time-for-a-extended-control/</comments><link>http://channel9.msdn.com/forums/TechOff/183600-Adding-additional-property-for-design-time-for-a-extended-control/</link><pubDate>Tue, 02 May 2006 08:34:09 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/183600-Adding-additional-property-for-design-time-for-a-extended-control/</guid><evnet:views>6896</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/183600/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey guys, i'm owner drawing and extending the existing listbox, and i'm providing a new listitem type that has additionals fields.&lt;BR&gt;&lt;BR&gt;I'm trying to add an Items property for the extended listbox control which will add new listitems that i've defined, and allow the IDE to generate code for it.&lt;BR&gt;&lt;BR&gt;How would i go about doing this?&lt;BR&gt;&lt;BR&gt;Thanks guys.</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>16</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/183600-Adding-additional-property-for-design-time-for-a-extended-control/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/183600/Trackback.aspx</trackback:ping></item><item><title>Should i start learning WPF now or wait? [Should i start learning WPF now or wait?]</title><description>Basically i'm juggling if i should invest time on it, because i know with every CTP release there seem to be namespace changes, or elements being pulled out of the entire model.&lt;BR&gt;&lt;BR&gt;So when are they locking in all that and stopping the changes?&lt;BR&gt;&lt;BR&gt;When does WPF RTM? Parallel to Vista's RTM?&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Thanks guys.&lt;BR&gt;&lt;BR&gt;Also, what should one person do to start off learning about WPF, is it really necessary to code raw in XAML or should one just really rely on graphics apps to general XAML for you?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/183189-Should-i-start-learning-WPF-now-or-wait/'&gt;Should i start learning WPF now or wait?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/183189/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/183189-Should-i-start-learning-WPF-now-or-wait/</comments><link>http://channel9.msdn.com/forums/TechOff/183189-Should-i-start-learning-WPF-now-or-wait/</link><pubDate>Mon, 01 May 2006 09:26:25 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/183189-Should-i-start-learning-WPF-now-or-wait/</guid><evnet:views>4520</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/183189/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Basically i'm juggling if i should invest time on it, because i know with every CTP release there seem to be namespace changes, or elements being pulled out of the entire model.&lt;BR&gt;&lt;BR&gt;So when are they locking in all that and stopping the changes?&lt;BR&gt;&lt;BR&gt;When does WPF RTM? Parallel to Vista's RTM?&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Thanks guys.&lt;BR&gt;&lt;BR&gt;Also, what should one person do to start off learning about WPF, is it really necessary to code raw in XAML or should one just really rely on graphics apps to general XAML for you?</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/183189-Should-i-start-learning-WPF-now-or-wait/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/183189/Trackback.aspx</trackback:ping></item><item><title>How hard is it to write a .NET app that uses SQL Server 2k5? [How hard is it to write a .NET app that uses SQL Server 2k5?]</title><description>Hey guys ive been wondering firstly.&lt;BR&gt;&lt;BR&gt;For SQL 2K5 based apps what does the target use require to have installed to have it run first?&lt;BR&gt;&lt;BR&gt;Then next, how hard is it to open a connection and save and delete records etc using .NET?&lt;BR&gt;&lt;BR&gt;Are there any succinct guides to this?&lt;BR&gt;&lt;BR&gt;I can't find many.&lt;BR&gt;&lt;BR&gt;Thanks.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/180194-How-hard-is-it-to-write-a-NET-app-that-uses-SQL-Server-2k5/'&gt;How hard is it to write a .NET app that uses SQL Server 2k5?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/180194/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/180194-How-hard-is-it-to-write-a-NET-app-that-uses-SQL-Server-2k5/</comments><link>http://channel9.msdn.com/forums/TechOff/180194-How-hard-is-it-to-write-a-NET-app-that-uses-SQL-Server-2k5/</link><pubDate>Mon, 24 Apr 2006 07:47:50 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/180194-How-hard-is-it-to-write-a-NET-app-that-uses-SQL-Server-2k5/</guid><evnet:views>5387</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/180194/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey guys ive been wondering firstly.&lt;BR&gt;&lt;BR&gt;For SQL 2K5 based apps what does the target use require to have installed to have it run first?&lt;BR&gt;&lt;BR&gt;Then next, how hard is it to open a connection and save and delete records etc using .NET?&lt;BR&gt;&lt;BR&gt;Are there any succinct guides to this?&lt;BR&gt;&lt;BR&gt;I can't find many.&lt;BR&gt;&lt;BR&gt;Thanks.</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>13</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/180194-How-hard-is-it-to-write-a-NET-app-that-uses-SQL-Server-2k5/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/180194/Trackback.aspx</trackback:ping></item><item><title>Getting turned down from jobs :( [Getting turned down from jobs :(]</title><description>It's just so ever depressing, i mean i'm graduating at the end of this year, so it's natural for everyone to apply for graduate positions in large corporations. But more and more i'm getting rejected for many of my applications it's so ever depressing. &lt;BR&gt;&lt;BR&gt;But i guess on the bright side i managed scoop out one interview and 2 online tests, but i can never progress further past that.&lt;BR&gt;&lt;BR&gt;So how was it like for everyones first job? Did you guys take it easy?&lt;BR&gt;&lt;BR&gt;I've been mainly wondering what i should do if *touchwood* i don't get offered a position for next yr at all, i wonder what i should result in doing, i just don't want to be like everyone who's got X degree and because of stupid recruitment depts in corporations for not letting a good candidate in, and result in temporarily doing Y job in a totally unrelated field.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/178532-Getting-turned-down-from-jobs-/'&gt;Getting turned down from jobs :(&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/178532/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/178532-Getting-turned-down-from-jobs-/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/178532-Getting-turned-down-from-jobs-/</link><pubDate>Tue, 18 Apr 2006 09:32:18 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/178532-Getting-turned-down-from-jobs-/</guid><evnet:views>8121</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/178532/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>It's just so ever depressing, i mean i'm graduating at the end of this year, so it's natural for everyone to apply for graduate positions in large corporations. But more and more i'm getting rejected for many of my applications it's so ever depressing. But i guess on the bright side i managed scoop out one interview and 2 online tests, but i can never progress further past that.So how was it like for everyones first job? Did you guys take it easy?I've been mainly wondering what i should do if *touchwood* i don't get offered a position for next yr at all, i wonder what i should result in doing,&amp;#8230;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>19</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/178532-Getting-turned-down-from-jobs-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/178532/Trackback.aspx</trackback:ping></item><item><title>What notation do you guys use for control naming? [What notation do you guys use for control naming?]</title><description>Hey guys i know most people still use hungarian notation for naming controls, but some people disapprove of it. I'm wondering for the ones who don't use that notation, what notation do you use normally for naming controls and components?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/177942-What-notation-do-you-guys-use-for-control-naming/'&gt;What notation do you guys use for control naming?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/177942/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/177942-What-notation-do-you-guys-use-for-control-naming/</comments><link>http://channel9.msdn.com/forums/TechOff/177942-What-notation-do-you-guys-use-for-control-naming/</link><pubDate>Sun, 16 Apr 2006 05:38:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/177942-What-notation-do-you-guys-use-for-control-naming/</guid><evnet:views>5574</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/177942/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey guys i know most people still use hungarian notation for naming controls, but some people disapprove of it. I'm wondering for the ones who don't use that notation, what notation do you use normally for naming controls and components?</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>15</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/177942-What-notation-do-you-guys-use-for-control-naming/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/177942/Trackback.aspx</trackback:ping></item><item><title>Do people get extremely overwhelmed with so much technology? [Do people get extremely overwhelmed with so much technology?]</title><description>I've always wondered, i mean i don't have so much time to sit down and code everyday, so i'm still not that savvy at .net but i love coding in it.&lt;BR&gt;&lt;BR&gt;But with Vista and WinFX, don't you find it overwhelming with so much to learn etc?&lt;BR&gt;&lt;BR&gt;How do you guys find the time to do it?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/170131-Do-people-get-extremely-overwhelmed-with-so-much-technology/'&gt;Do people get extremely overwhelmed with so much technology?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/170131/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/170131-Do-people-get-extremely-overwhelmed-with-so-much-technology/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/170131-Do-people-get-extremely-overwhelmed-with-so-much-technology/</link><pubDate>Thu, 23 Mar 2006 00:19:06 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/170131-Do-people-get-extremely-overwhelmed-with-so-much-technology/</guid><evnet:views>2915</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/170131/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've always wondered, i mean i don't have so much time to sit down and code everyday, so i'm still not that savvy at .net but i love coding in it.&lt;BR&gt;&lt;BR&gt;But with Vista and WinFX, don't you find it overwhelming with so much to learn etc?&lt;BR&gt;&lt;BR&gt;How do you guys find the time to do it?</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/170131-Do-people-get-extremely-overwhelmed-with-so-much-technology/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/170131/Trackback.aspx</trackback:ping></item><item><title>.NET 2.0 Controls, what on earth happened? [.NET 2.0 Controls, what on earth happened?]</title><description>I was just wondering has people realised they've made some big mistakes with the new control sets.&lt;BR&gt;&lt;BR&gt;Just to highlight a few obvious ones:&lt;BR&gt;&lt;BR&gt;Textbox and Combobox, why did they remove the ability to resize the height? I mean come on, stick the combo box side by side with a textbox, and they look so inconsistent.&lt;BR&gt;&lt;BR&gt;Menus, the new menus seem to be lacking in some fading abilities, and i think some third party controls who had it implemented dont work either, it's as if the framework broke the fading mechanism.&lt;BR&gt;&lt;BR&gt;What happened?&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/164096-NET-20-Controls-what-on-earth-happened/'&gt;.NET 2.0 Controls, what on earth happened?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/164096/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/164096-NET-20-Controls-what-on-earth-happened/</comments><link>http://channel9.msdn.com/forums/TechOff/164096-NET-20-Controls-what-on-earth-happened/</link><pubDate>Sun, 05 Mar 2006 05:20:50 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/164096-NET-20-Controls-what-on-earth-happened/</guid><evnet:views>1848</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/164096/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I was just wondering has people realised they've made some big mistakes with the new control sets.&lt;BR&gt;&lt;BR&gt;Just to highlight a few obvious ones:&lt;BR&gt;&lt;BR&gt;Textbox and Combobox, why did they remove the ability to resize the height? I mean come on, stick the combo box side by side with a textbox, and they look so inconsistent.&lt;BR&gt;&lt;BR&gt;Menus, the new menus seem to be lacking in some fading abilities, and i think some third party controls who had it implemented dont work either, it's as if the framework broke the fading mechanism.&lt;BR&gt;&lt;BR&gt;What happened?&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/164096-NET-20-Controls-what-on-earth-happened/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/164096/Trackback.aspx</trackback:ping></item><item><title>A question about MS and IE [A question about MS and IE]</title><description>I've always wondered why initially MS never contemplated with full CSS support?&lt;BR&gt;&lt;BR&gt;Why was it ever half implemented with so many bugs?&lt;BR&gt;&lt;BR&gt;I'd like to know the truth, was it because it was too hard?&lt;BR&gt;&lt;BR&gt;If it was apparent that there's so many CSS problems, why didn't they issue an IE update that will fix the common CSS issues, but instead have it all planned for IE 7.&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/158413-A-question-about-MS-and-IE/'&gt;A question about MS and IE&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/158413/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/158413-A-question-about-MS-and-IE/</comments><link>http://channel9.msdn.com/forums/TechOff/158413-A-question-about-MS-and-IE/</link><pubDate>Sun, 12 Feb 2006 01:26:28 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/158413-A-question-about-MS-and-IE/</guid><evnet:views>5257</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/158413/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've always wondered why initially MS never contemplated with full CSS support?&lt;BR&gt;&lt;BR&gt;Why was it ever half implemented with so many bugs?&lt;BR&gt;&lt;BR&gt;I'd like to know the truth, was it because it was too hard?&lt;BR&gt;&lt;BR&gt;If it was apparent that there's so many CSS problems, why didn't they issue an IE update that will fix the common CSS issues, but instead have it all planned for IE 7.&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/158413-A-question-about-MS-and-IE/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/158413/Trackback.aspx</trackback:ping></item><item><title>A question to the experienced and formerly-n00b developers. [A question to the experienced and formerly-n00b developers.]</title><description>Hey guys,&lt;BR&gt;&lt;BR&gt;I'm still studying comp sci at uni. I love coding, but i'mnot that great at it.&lt;BR&gt;&lt;BR&gt;I find that i have issues structurig solutions, always rushing into deving, and ending up with a dodgy solution. For me, it's hard to forsee the future so that i can plan something out nicely.&lt;BR&gt;&lt;BR&gt;Now my question is to those developers who are experienced and was once a n00b, how did you guys overcome this? How do you effectively plan a solution. What do you guys think about first?&lt;BR&gt;&lt;BR&gt;Another issue is, there's so many ways of doing one thing, say for example a part of an app can be implemented in .NET Remoting, but i did it another way because i wasn't aware that .NET Remoting offered classes to support this feature. Then what do you guys normally do? Re-write the whole section using Remoting? Imean surely not everyone is aware of every bit about a programming language.&lt;BR&gt;&lt;BR&gt;Also, for the ones who work in dev roles as a job, what ever happens when you guys get can't figure iut a soluton for a bug, or you can't implement something cause u have no idea even after many searches online. Isn't that daunting? I'm always scared that when the day comes and IF i'm lucky enough to find a job, i'll be in these situations.&lt;BR&gt;&lt;BR&gt;I currently do non-MS deving in uni, so i end up losing time doing .NET, only on my holidays, so i find that i get behind on the technology a lot.&lt;BR&gt;&lt;BR&gt;I'm really worried about finding a job this year, since it is my final year in my degree, however i might apply for doing Honours (is that a good idea?). Do you guys have any tips for me so i can brush myself up, so that i can end up being at least a competitive candidate for jobs this year. I'm open to all opinions.&lt;BR&gt;&lt;BR&gt;Thanks heaps eveyrone!&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/155074-A-question-to-the-experienced-and-formerly-n00b-developers/'&gt;A question to the experienced and formerly-n00b developers.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/155074/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/155074-A-question-to-the-experienced-and-formerly-n00b-developers/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/155074-A-question-to-the-experienced-and-formerly-n00b-developers/</link><pubDate>Sun, 29 Jan 2006 02:17:38 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/155074-A-question-to-the-experienced-and-formerly-n00b-developers/</guid><evnet:views>3494</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/155074/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey guys,I'm still studying comp sci at uni. I love coding, but i'mnot that great at it.I find that i have issues structurig solutions, always rushing into deving, and ending up with a dodgy solution. For me, it's hard to forsee the future so that i can plan something out nicely.Now my question is to those developers who are experienced and was once a n00b, how did you guys overcome this? How do you effectively plan a solution. What do you guys think about first?Another issue is, there's so many ways of doing one thing, say for example a part of an app can be implemented in .NET Remoting, but&amp;#8230;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/155074-A-question-to-the-experienced-and-formerly-n00b-developers/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/155074/Trackback.aspx</trackback:ping></item><item><title>Will Vista will be 100% new icons? [Will Vista will be 100% new icons?]</title><description>I know it seems apparent that there would be all new icons, but would it actually be entirely all new? Or would it be like always, only the crucial ones being replaced, and the less frequent ones left with the XP or possibly Win9x ones?&lt;BR&gt;&lt;BR&gt;I think everyone wonders this question, because it happened in XP, why is it that every OS release there is icons left behind? And icons that aren't replaced?&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/129910-Will-Vista-will-be-100-new-icons/'&gt;Will Vista will be 100% new icons?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/129910/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/129910-Will-Vista-will-be-100-new-icons/</comments><link>http://channel9.msdn.com/forums/TechOff/129910-Will-Vista-will-be-100-new-icons/</link><pubDate>Fri, 04 Nov 2005 22:20:10 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/129910-Will-Vista-will-be-100-new-icons/</guid><evnet:views>3409</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/129910/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I know it seems apparent that there would be all new icons, but would it actually be entirely all new? Or would it be like always, only the crucial ones being replaced, and the less frequent ones left with the XP or possibly Win9x ones?&lt;BR&gt;&lt;BR&gt;I think everyone wonders this question, because it happened in XP, why is it that every OS release there is icons left behind? And icons that aren't replaced?&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/129910-Will-Vista-will-be-100-new-icons/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/129910/Trackback.aspx</trackback:ping></item><item><title>What topics should i look at for Windows Presentation Foundation, doing animation? [What topics should i look at for Windows Presentation Foundation, doing animation?]</title><description>Hey guys, how's everyone going? &lt;BR&gt;&lt;BR&gt;I was wondering what particular topic names should i be looking under if i wanted to explore how those nifty animations are created using WPF? Like for example media mania, having those CD's pop out like that.&lt;BR&gt;&lt;BR&gt;Thanks guys.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/113918-What-topics-should-i-look-at-for-Windows-Presentation-Foundation-doing-animation/'&gt;What topics should i look at for Windows Presentation Foundation, doing animation?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/113918/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/113918-What-topics-should-i-look-at-for-Windows-Presentation-Foundation-doing-animation/</comments><link>http://channel9.msdn.com/forums/TechOff/113918-What-topics-should-i-look-at-for-Windows-Presentation-Foundation-doing-animation/</link><pubDate>Sun, 18 Sep 2005 00:09:10 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/113918-What-topics-should-i-look-at-for-Windows-Presentation-Foundation-doing-animation/</guid><evnet:views>1986</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/113918/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey guys, how's everyone going? &lt;BR&gt;&lt;BR&gt;I was wondering what particular topic names should i be looking under if i wanted to explore how those nifty animations are created using WPF? Like for example media mania, having those CD's pop out like that.&lt;BR&gt;&lt;BR&gt;Thanks guys.</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/113918-What-topics-should-i-look-at-for-Windows-Presentation-Foundation-doing-animation/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/113918/Trackback.aspx</trackback:ping></item><item><title>Drawing problem with ListBox [Drawing problem with ListBox]</title><description>&lt;P&gt;Ok, this might be hard to understand but anyways:&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;i'm currently inheriting from the ListBox control and providing my own drawing code.&lt;BR&gt;&lt;BR&gt;I'm drawing a gradient background on each listbox item. All fine, however the gradient i'm drawing is a little away from the edge of the actual rectangle so youll see some white space around the actual rectangle.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;All fine till when you run it and when u resize the listbox, only the first item gets refreshed and draw appropriately. &lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;If i drew the gradient so that it covered the whole rectangle up with no spaces between the edges, and if i resize it during runtime, all the items become drawn correctly.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Here's a screenshot of the issue when it's resized&lt;BR&gt;&lt;BR&gt;&lt;a href="http://www.ug.it.usyd.edu.au/~wpan6331/ss/ss.JPG"&gt;http://www.ug.it.usyd.edu.au/~wpan6331/ss/ss.JPG&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;Has anyone experienced the same situation before?&lt;BR&gt;&lt;BR&gt;Thanks&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/34286-Drawing-problem-with-ListBox/'&gt;Drawing problem with ListBox&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/34286/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/34286-Drawing-problem-with-ListBox/</comments><link>http://channel9.msdn.com/forums/TechOff/34286-Drawing-problem-with-ListBox/</link><pubDate>Wed, 12 Jan 2005 09:32:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/34286-Drawing-problem-with-ListBox/</guid><evnet:views>4743</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/34286/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Ok, this might be hard to understand but anyways:&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;i'm currently inheriting from the ListBox control and providing my own drawing code.&lt;BR&gt;&lt;BR&gt;I'm drawing a gradient background on each listbox item. All fine, however the gradient i'm drawing is a little away from the edge of the actual rectangle so youll see some white space around the actual rectangle.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;All fine till when you run it and when u resize the listbox, only the first item gets refreshed and draw appropriately. &lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/34286-Drawing-problem-with-ListBox/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/34286/Trackback.aspx</trackback:ping></item><item><title>What i'd like to see more of at Channel9 [What i'd like to see more of at Channel9]</title><description>I've always pondered and pondered how the process of things go in Microsoft, from the videos, it seems like a laid back environment, and things seem flexible, but when it comes to Projects you guys work on, how does the process of things go, do we have someone who form the teams and assign roles? and then someone planning out things, and defining a timeline, like how does all these things work out?&lt;BR&gt;&lt;BR&gt;And do you guys just set a time and say, we're gonna code this component today at that time, like how formal do these things get? or are developers just in their own office coding their assigned parts?&lt;BR&gt;&lt;BR&gt;I'd like to hear what happens generally.&lt;BR&gt;&lt;BR&gt;Thanks, and you guys rock.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/29431-What-id-like-to-see-more-of-at-Channel9/'&gt;What i'd like to see more of at Channel9&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/29431/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/29431-What-id-like-to-see-more-of-at-Channel9/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/29431-What-id-like-to-see-more-of-at-Channel9/</link><pubDate>Sat, 27 Nov 2004 03:55:51 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/29431-What-id-like-to-see-more-of-at-Channel9/</guid><evnet:views>3960</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/29431/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've always pondered and pondered how the process of things go in Microsoft, from the videos, it seems like a laid back environment, and things seem flexible, but when it comes to Projects you guys work on, how does the process of things go, do we have someone who form the teams and assign roles? and then someone planning out things, and defining a timeline, like how does all these things work out?&lt;BR&gt;&lt;BR&gt;And do you guys just set a time and say, we're gonna code this component today at that time, like how formal do these things get? or are developers just in their own office coding their assigned parts?&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>Winston Pang</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/29431-What-id-like-to-see-more-of-at-Channel9/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/29431/Trackback.aspx</trackback:ping></item></channel></rss>