<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: The 2008 Delphi Survey is Out</title>
	<atom:link href="http://blogs.codegear.com/nickhodges/2008/01/31/39017/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017</link>
	<description>The Blog of the Delphi Product Manager</description>
	<pubDate>Tue, 02 Dec 2008 12:45:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: DelphiUser</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18989</link>
		<dc:creator>DelphiUser</dc:creator>
		<pubDate>Tue, 05 Feb 2008 15:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18989</guid>
		<description>Do you mean like in Question 12.6?</description>
		<content:encoded><![CDATA[<p>Do you mean like in Question 12.6?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Warrick Wilson</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18983</link>
		<dc:creator>Warrick Wilson</dc:creator>
		<pubDate>Mon, 04 Feb 2008 22:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18983</guid>
		<description>As far as purchasing options go, have you considered an annual fee similar to what the Microsoft Developer Network does? I pay a certain fee for a certain package, and my login allows me access to the downloads of all the packages my subscription applies to. I curerntly have this for Operating Systems and Development Tools, and I can download CD/DVD images for the various OS (and get the relevant license key), plus download the Visual Studio builds, including beta versions, as I wish. Just a flat fee - no buying a product and getting the subscription. The beancounters like it because it's an expense, and there's no tracking the acquisition and depreciation of the software package.</description>
		<content:encoded><![CDATA[<p>As far as purchasing options go, have you considered an annual fee similar to what the Microsoft Developer Network does? I pay a certain fee for a certain package, and my login allows me access to the downloads of all the packages my subscription applies to. I curerntly have this for Operating Systems and Development Tools, and I can download CD/DVD images for the various OS (and get the relevant license key), plus download the Visual Studio builds, including beta versions, as I wish. Just a flat fee - no buying a product and getting the subscription. The beancounters like it because it&#8217;s an expense, and there&#8217;s no tracking the acquisition and depreciation of the software package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cobus Kruger</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18978</link>
		<dc:creator>Cobus Kruger</dc:creator>
		<pubDate>Mon, 04 Feb 2008 08:47:11 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18978</guid>
		<description>&#62; "The information is very valuable and highly proprietary — far too valuable to make public"

Understood. How about a "highlights package?" :-)</description>
		<content:encoded><![CDATA[<p>&gt; "The information is very valuable and highly proprietary — far too valuable to make public"</p>
<p>Understood. How about a "highlights package?" <img src='http://blogs.codegear.com/nickhodges/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DelphiUser</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18977</link>
		<dc:creator>DelphiUser</dc:creator>
		<pubDate>Mon, 04 Feb 2008 08:46:51 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18977</guid>
		<description>The "Language features" could do with an "Other" box.

Three features that would modernize the language and are not mentioned are:

1. local blocks and  
2. local declarable variables, as in:

...code
BEGIN
  VAR i: integer;
  ...code
...the scope for "i" ends here
END
...code

And:

3. Procedure/Function initialize and implementation sections should either change as the other is edited, or perhaps do away with two sections altogether (as in C#).</description>
		<content:encoded><![CDATA[<p>The "Language features" could do with an "Other" box.</p>
<p>Three features that would modernize the language and are not mentioned are:</p>
<p>1. local blocks and<br />
2. local declarable variables, as in:</p>
<p>&#8230;code<br />
BEGIN<br />
  VAR i: integer;<br />
  &#8230;code<br />
&#8230;the scope for "i" ends here<br />
END<br />
&#8230;code</p>
<p>And:</p>
<p>3. Procedure/Function initialize and implementation sections should either change as the other is edited, or perhaps do away with two sections altogether (as in C#).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C Johnson</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18961</link>
		<dc:creator>C Johnson</dc:creator>
		<pubDate>Fri, 01 Feb 2008 20:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18961</guid>
		<description>Nick -&#62; I have a few applications where AnsiString's 1:1 relationship to a big binary buffer is very useful.  Not only do you get the benefit of reference counting for automatic memory managment, but there are a number of handy functions like Copy and Delete for data management.  I don't think using Unicode string lists with an encoding on output would be helpful here.  Aside from doubling my data storage with a bunch of nulls most of the time, the system would need to be able to distinguish when it really actually WAS unicode data that was being pushed instead of ansi string data.  (Easy in an ansi string buffer, store the unicode data in a ansi string twice as long as the unicode string and do a Move, hard if everything is stored in unicode and you want the ansi string as ansi and unicode as unicode)

That said, my only concern in writing a TAnsiStringList with real ansi strings like the current string list is that I will not be able to descend from TStrings any longer, and loose the polymorphic behaviour that is so darn handy (x.assign(y) mostly)  Interfaces of some sort might be the solution...</description>
		<content:encoded><![CDATA[<p>Nick -&gt; I have a few applications where AnsiString&#8217;s 1:1 relationship to a big binary buffer is very useful.  Not only do you get the benefit of reference counting for automatic memory managment, but there are a number of handy functions like Copy and Delete for data management.  I don&#8217;t think using Unicode string lists with an encoding on output would be helpful here.  Aside from doubling my data storage with a bunch of nulls most of the time, the system would need to be able to distinguish when it really actually WAS unicode data that was being pushed instead of ansi string data.  (Easy in an ansi string buffer, store the unicode data in a ansi string twice as long as the unicode string and do a Move, hard if everything is stored in unicode and you want the ansi string as ansi and unicode as unicode)</p>
<p>That said, my only concern in writing a TAnsiStringList with real ansi strings like the current string list is that I will not be able to descend from TStrings any longer, and loose the polymorphic behaviour that is so darn handy (x.assign(y) mostly)  Interfaces of some sort might be the solution&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: betatango</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18958</link>
		<dc:creator>betatango</dc:creator>
		<pubDate>Fri, 01 Feb 2008 17:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18958</guid>
		<description>simple ask...

please support for cross platform, more advanced vcl data controls and firebird ;)

.net...  wt* is that ?;)</description>
		<content:encoded><![CDATA[<p>simple ask&#8230;</p>
<p>please support for cross platform, more advanced vcl data controls and firebird <img src='http://blogs.codegear.com/nickhodges/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>.net&#8230;  wt* is that ?;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Hodges</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18950</link>
		<dc:creator>Nick Hodges</dc:creator>
		<pubDate>Fri, 01 Feb 2008 16:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18950</guid>
		<description>Answering some general questions --

C Johnson -- Writing the TAnsiStringList probably will be a piece of cake. With the inclusion in the RTL of the TEncoding class, you could create such a beast very easily.

Cobus -- Sadly, we won't be (and never have) made survey results public.  The information is very valuable and highly proprietary -- far too valuable to make public.

DelphiUser -- agree, next time we'll be a bit more explanatory about what terms mean.

Nick</description>
		<content:encoded><![CDATA[<p>Answering some general questions &#8211;</p>
<p>C Johnson &#8212; Writing the TAnsiStringList probably will be a piece of cake. With the inclusion in the RTL of the TEncoding class, you could create such a beast very easily.</p>
<p>Cobus &#8212; Sadly, we won&#8217;t be (and never have) made survey results public.  The information is very valuable and highly proprietary &#8212; far too valuable to make public.</p>
<p>DelphiUser &#8212; agree, next time we&#8217;ll be a bit more explanatory about what terms mean.</p>
<p>Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Peterson</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18947</link>
		<dc:creator>Craig Peterson</dc:creator>
		<pubDate>Fri, 01 Feb 2008 15:57:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18947</guid>
		<description>There definitely should have been a way to get descriptions for some of the terms used in the survey.  I haven't got a clue what "Win32 Attributes" meant under Delphi Language Enhancements.  I know the rest from blog posts or my previous Java work, but if I'd been Delphi only, I definitely wouldn't have known what half of them were.

The Virtual Machine question should have had "I'd use the remote debugger on a VM if I could get it to work", and the Auto-Update one should have "I would use it if UAC didn't make it fail under Vista". ;)</description>
		<content:encoded><![CDATA[<p>There definitely should have been a way to get descriptions for some of the terms used in the survey.  I haven&#8217;t got a clue what "Win32 Attributes" meant under Delphi Language Enhancements.  I know the rest from blog posts or my previous Java work, but if I&#8217;d been Delphi only, I definitely wouldn&#8217;t have known what half of them were.</p>
<p>The Virtual Machine question should have had "I&#8217;d use the remote debugger on a VM if I could get it to work", and the Auto-Update one should have "I would use it if UAC didn&#8217;t make it fail under Vista". <img src='http://blogs.codegear.com/nickhodges/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DelphiUser</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18946</link>
		<dc:creator>DelphiUser</dc:creator>
		<pubDate>Fri, 01 Feb 2008 15:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18946</guid>
		<description>My post disappeared, so I'm reposting:

I was unsure with the technologies which terms meant what. A brief explanation would  help. 

For example: Iterators. Does that mean iterators as used in C#'s Generics?</description>
		<content:encoded><![CDATA[<p>My post disappeared, so I&#8217;m reposting:</p>
<p>I was unsure with the technologies which terms meant what. A brief explanation would  help. </p>
<p>For example: Iterators. Does that mean iterators as used in C#&#8217;s Generics?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DelphiUser</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18943</link>
		<dc:creator>DelphiUser</dc:creator>
		<pubDate>Fri, 01 Feb 2008 13:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18943</guid>
		<description>As far as the Documentation section goes, I wanted to add the Language Reference and User Guide to my responses. 

They don't seem to exist at all anymore, not as a PDF nor as a section in the Help. I refer to my D5 manuals when programming D2007 and try extrapolate.</description>
		<content:encoded><![CDATA[<p>As far as the Documentation section goes, I wanted to add the Language Reference and User Guide to my responses. </p>
<p>They don&#8217;t seem to exist at all anymore, not as a PDF nor as a section in the Help. I refer to my D5 manuals when programming D2007 and try extrapolate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18939</link>
		<dc:creator>Dean</dc:creator>
		<pubDate>Fri, 01 Feb 2008 11:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18939</guid>
		<description>I liked the survey.  The only problem I had was with the component-based licensing question "11.5.  	Would you use a component-based license service from CodeGear for your applications?"

I assumed this referred to a runtime type licensing and answered no.</description>
		<content:encoded><![CDATA[<p>I liked the survey.  The only problem I had was with the component-based licensing question "11.5.  	Would you use a component-based license service from CodeGear for your applications?"</p>
<p>I assumed this referred to a runtime type licensing and answered no.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cobus Kruger</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18938</link>
		<dc:creator>Cobus Kruger</dc:creator>
		<pubDate>Fri, 01 Feb 2008 09:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18938</guid>
		<description>Will the survey results be made available at some point? It would be really interesting (and probably humbling) to see how my own perspective differs from that of the average Delphi developer (or average survey participant, at least).</description>
		<content:encoded><![CDATA[<p>Will the survey results be made available at some point? It would be really interesting (and probably humbling) to see how my own perspective differs from that of the average Delphi developer (or average survey participant, at least).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey V. Shtukaturov</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18936</link>
		<dc:creator>Andrey V. Shtukaturov</dc:creator>
		<pubDate>Fri, 01 Feb 2008 08:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18936</guid>
		<description>link to PDF version
http://www.codegear.com/article/36898/images/36898/RADStudio2007_ReviewersGuide_080130.pdf

return 404 (not found)</description>
		<content:encoded><![CDATA[<p>link to PDF version<br />
<a href="http://www.codegear.com/article/36898/images/36898/RADStudio2007_ReviewersGuide_080130.pdf" rel="nofollow">http://www.codegear.com/article/36898/images/36898/RADStudio2007_ReviewersGuide_080130.pdf</a></p>
<p>return 404 (not found)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco Sangali</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18935</link>
		<dc:creator>Marco Sangali</dc:creator>
		<pubDate>Fri, 01 Feb 2008 06:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18935</guid>
		<description>Hi, Nick,

Great survey. Just a thought, I find it akward that Jedi VCS isn't on the list of the SVCs. To my understanding it's one of the simplest to setup and maybe the most integrated with Delphi IDE of all, so I figured it should be one of the most used for the Delphi community.

Best Regards,
Marco</description>
		<content:encoded><![CDATA[<p>Hi, Nick,</p>
<p>Great survey. Just a thought, I find it akward that Jedi VCS isn&#8217;t on the list of the SVCs. To my understanding it&#8217;s one of the simplest to setup and maybe the most integrated with Delphi IDE of all, so I figured it should be one of the most used for the Delphi community.</p>
<p>Best Regards,<br />
Marco</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C Johnson</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18933</link>
		<dc:creator>C Johnson</dc:creator>
		<pubDate>Fri, 01 Feb 2008 04:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18933</guid>
		<description>On a side note, using (ansi)Strings as buffers is something I'll admit to doing commonly.  They are just so darn convenient that way. SetLength gets the memory, and reference counting makes the magically go away when you are done with them.

Gonna be a pain to migrate some of it.  I use a TStringList as a buffer for my custom socket... either data in the string, or a identifier for an object being streamed out (like a file or memory stream).. Guess I gotta write TAnsiStringList for that sooner than later.</description>
		<content:encoded><![CDATA[<p>On a side note, using (ansi)Strings as buffers is something I&#8217;ll admit to doing commonly.  They are just so darn convenient that way. SetLength gets the memory, and reference counting makes the magically go away when you are done with them.</p>
<p>Gonna be a pain to migrate some of it.  I use a TStringList as a buffer for my custom socket&#8230; either data in the string, or a identifier for an object being streamed out (like a file or memory stream).. Guess I gotta write TAnsiStringList for that sooner than later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernando Madruga</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18931</link>
		<dc:creator>Fernando Madruga</dc:creator>
		<pubDate>Fri, 01 Feb 2008 02:30:34 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18931</guid>
		<description>The "one question at a time" is bugged. Well, it works OK but only if you DON'T ever go back!

For instance, while answering a question I accidentally clicked to go to the next question without fully answering the one I was at. Pressing back (as there is no PREVIOUS button!), would allow me to change/complete the answer but I noticed on pressing Next (or Continue or whatever it was!) that the next question would be skipped! That is, I still remembered what question I should be answering and instead I was taken to the "next" question as if I had not used Back...

You guys should really hire me for testing your stuff! I keep bumping into whatever rough edges you leave around! :)

This means that some of the questions I answered are not 100% correct. I recall suggesting a 1 dollar price for the Enterprise version, just because of that! I knew by then that it would be pointless to go back as I'd then skip another question.

Finally, a "question number X of Y" type of text would also help a bit. And that's not to go the extra length and have a progress bar!

As for usability, you also missed the spot a bit: some questions had the "No/I don't use" option at the start of the list, while others had it at the end of the list. And even others had not such option: it was implied that "No/I don't use" would be not clicking anything! Confusing, especially when it was a series of questions about the same thing that I don't actually use... Also, the lack of "No" option would mean that, should you accidentally click one of the radio buttons, there would be no turning back!

All in all, no big deal, but at least expect those rough edges to do some impact on the quality of the collected data.

Finally, it would be awesome if you guys could come clean with your users on the answers received with some nice bar charts to show what your user-base answered.</description>
		<content:encoded><![CDATA[<p>The "one question at a time" is bugged. Well, it works OK but only if you DON&#8217;T ever go back!</p>
<p>For instance, while answering a question I accidentally clicked to go to the next question without fully answering the one I was at. Pressing back (as there is no PREVIOUS button!), would allow me to change/complete the answer but I noticed on pressing Next (or Continue or whatever it was!) that the next question would be skipped! That is, I still remembered what question I should be answering and instead I was taken to the "next" question as if I had not used Back&#8230;</p>
<p>You guys should really hire me for testing your stuff! I keep bumping into whatever rough edges you leave around! <img src='http://blogs.codegear.com/nickhodges/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This means that some of the questions I answered are not 100% correct. I recall suggesting a 1 dollar price for the Enterprise version, just because of that! I knew by then that it would be pointless to go back as I&#8217;d then skip another question.</p>
<p>Finally, a "question number X of Y" type of text would also help a bit. And that&#8217;s not to go the extra length and have a progress bar!</p>
<p>As for usability, you also missed the spot a bit: some questions had the "No/I don&#8217;t use" option at the start of the list, while others had it at the end of the list. And even others had not such option: it was implied that "No/I don&#8217;t use" would be not clicking anything! Confusing, especially when it was a series of questions about the same thing that I don&#8217;t actually use&#8230; Also, the lack of "No" option would mean that, should you accidentally click one of the radio buttons, there would be no turning back!</p>
<p>All in all, no big deal, but at least expect those rough edges to do some impact on the quality of the collected data.</p>
<p>Finally, it would be awesome if you guys could come clean with your users on the answers received with some nice bar charts to show what your user-base answered.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C Johnson</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18929</link>
		<dc:creator>C Johnson</dc:creator>
		<pubDate>Fri, 01 Feb 2008 01:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18929</guid>
		<description>All done.  I agree that some of the questions were akward to answer... in terms of priority some times in the list of 5, it was a matter of "not at all".  It was hard with all the combo boxes to make sure the list was meaninful and without duplicates.  

I'm allowed to not answer my age, but the company's income question lacked the all important don't want to answer/haven't got the slightest clue option.  Took a stab in the dark.  Don't be surprised if a lot of people decide to answer more than a billion as a obvious nonsense alternative - I certainly considered it.   

Splitting the 100 was interesting, maybe I left out points or hit 125 on some, but probably not.

Took about 10 minutes, and it didn't blow any cogs when I posted, so that's handy.</description>
		<content:encoded><![CDATA[<p>All done.  I agree that some of the questions were akward to answer&#8230; in terms of priority some times in the list of 5, it was a matter of "not at all".  It was hard with all the combo boxes to make sure the list was meaninful and without duplicates.  </p>
<p>I&#8217;m allowed to not answer my age, but the company&#8217;s income question lacked the all important don&#8217;t want to answer/haven&#8217;t got the slightest clue option.  Took a stab in the dark.  Don&#8217;t be surprised if a lot of people decide to answer more than a billion as a obvious nonsense alternative - I certainly considered it.   </p>
<p>Splitting the 100 was interesting, maybe I left out points or hit 125 on some, but probably not.</p>
<p>Took about 10 minutes, and it didn&#8217;t blow any cogs when I posted, so that&#8217;s handy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Hodges</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18928</link>
		<dc:creator>Nick Hodges</dc:creator>
		<pubDate>Fri, 01 Feb 2008 00:52:30 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18928</guid>
		<description>Salim --

Feel free to skip any of the questions that you don't want to answer -- not a problem.

Nick</description>
		<content:encoded><![CDATA[<p>Salim &#8211;</p>
<p>Feel free to skip any of the questions that you don&#8217;t want to answer &#8212; not a problem.</p>
<p>Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Salim Nair</title>
		<link>http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18925</link>
		<dc:creator>Salim Nair</dc:creator>
		<pubDate>Fri, 01 Feb 2008 00:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/nickhodges/2008/01/31/39017#comment-18925</guid>
		<description>Some of the qestions from the survey are rather badly formed and/or difficult to answer. For e.g q 3.4 asks for ordering 9 items in a combobox in order by selecting it in 9 comboboxes. By fourth, every other selction requries considerable amount of searching.
3.6, 3.8 and others ask me to split 100 according to my preference to 8,9, etc pieces. Is this a survey to collect informatioin or to test the patience of the participant?

Ahhh Codegear!</description>
		<content:encoded><![CDATA[<p>Some of the qestions from the survey are rather badly formed and/or difficult to answer. For e.g q 3.4 asks for ordering 9 items in a combobox in order by selecting it in 9 comboboxes. By fourth, every other selction requries considerable amount of searching.<br />
3.6, 3.8 and others ask me to split 100 according to my preference to 8,9, etc pieces. Is this a survey to collect informatioin or to test the patience of the participant?</p>
<p>Ahhh Codegear!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
