<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>WitCustomControls Forum Rss Feed</title><link>http://www.codeplex.com/Project/ListForums.aspx?ProjectName=WitCustomControls</link><description>WitCustomControls Forum Rss Description</description><item><title>New Post: Multivalue control string restriction</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=59679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;its as nice to query with but you can do&amp;nbsp;alot with&amp;nbsp;contains and does not contains. if you are looking for only one field is chekced use contains the specific tag and does not contain ; so you know its a single value...etc.&lt;/p&gt;&lt;/div&gt;</description><author>hayderc</author><pubDate>Fri, 21 Aug 2009 19:27:41 GMT</pubDate><guid isPermaLink="false">New Post: Multivalue control string restriction 20090821072741P</guid></item><item><title>New Post:  Web browser control</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=51263</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I finally figured out what 'diegot' is talking about. (took a bit though, because his description is a bit vague).&lt;/p&gt;
&lt;p&gt;Basically, if you're using Process Template Editor to register the WebBrowserControl, a curious behaviour of the editor (within Process Template Editor) is that it trims anything where a second &amp;quot;equals&amp;quot; sign is encountered. I.e. you may have put in&lt;/p&gt;
&lt;p&gt;URL=http://bbwk35/TFSCargaHoras/Default.aspx?WorkItem={0}&lt;/p&gt;
&lt;p&gt;but when you view it in the XML, it has cleared the value&lt;/p&gt;
&lt;p&gt;&amp;lt;Control Type=&amp;quot;WebBrowserControl&amp;quot; Label=&amp;quot;Basic custom label:&amp;quot; LabelPosition=&amp;quot;Top&amp;quot; Dock=&amp;quot;Fill&amp;quot; URL=&amp;quot;http://bbwk35/TFSCargaHoras/Default.aspx?WorkItem&amp;quot; Params=&amp;quot;System.ID&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;So this is actually a bug in the Process Template Editor, not in the WitCustomControl code.&lt;br&gt;I suggest the workaround (which works for us) is to put the value in the keyname ... i.e. without the equals sign. you could use your own delimiter, so long as the code on the Default.aspx page knows how to iterate through the keys of the Request.QueryString object. i.e. the data is being passed in the name rather than the value but that's okay because it bypasses the problem.&lt;/p&gt;
&lt;p&gt;http://bbwk35/TFSCargaHoras/Default.aspx?WorkItem|{0}&lt;/p&gt;
&lt;p&gt;This approach worked for our implementation, hope it helps someone else who is encountering the same issue.&lt;br&gt;Regards,&lt;/p&gt;&lt;/div&gt;</description><author>MousetrapSystems</author><pubDate>Wed, 19 Aug 2009 06:51:33 GMT</pubDate><guid isPermaLink="false">New Post:  Web browser control 20090819065133A</guid></item><item><title>New Post: Multivalue control string restriction</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=59679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I tried that too but the problem is you cant query a plaintext field.&lt;/p&gt;&lt;/div&gt;</description><author>praveenadini</author><pubDate>Thu, 30 Jul 2009 20:09:15 GMT</pubDate><guid isPermaLink="false">New Post: Multivalue control string restriction 20090730080915P</guid></item><item><title>New Post: Multivalue control string restriction</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=59679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;You can modify the control such that you can specify a PlainText field for the field itself and a different field for the allowed values. you can specify custom attributes in the control element in the&amp;nbsp;WIT defintion XML. you need to modify this custom control to read the custom attributes and use the alternate field for allowed values. Hope this is clear. let me know if you have more questions.&lt;/p&gt;&lt;/div&gt;</description><author>hayderc</author><pubDate>Thu, 30 Jul 2009 18:48:21 GMT</pubDate><guid isPermaLink="false">New Post: Multivalue control string restriction 20090730064821P</guid></item><item><title>New Post: Multivalue control string restriction</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=59679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I can't use plaintext field as it doesn't accept suggestedvalues list. Is there any other way of updating the field length and also by passing the field validation.&lt;/p&gt;&lt;/div&gt;</description><author>praveenadini</author><pubDate>Thu, 25 Jun 2009 18:20:27 GMT</pubDate><guid isPermaLink="false">New Post: Multivalue control string restriction 20090625062027P</guid></item><item><title>New Post: Multivalue control string restriction</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=59679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Maybe you can use a PlainText field instead?&lt;/p&gt;
&lt;p&gt;http://msdn.microsoft.com/en-us/library/ms194980.aspx&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>holisticdeveloper</author><pubDate>Thu, 25 Jun 2009 00:21:05 GMT</pubDate><guid isPermaLink="false">New Post: Multivalue control string restriction 20090625122105A</guid></item><item><title>New Post: Multivalue control string restriction</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=59679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have created a multivalue control which has a bunch of values. When i try to save a record which has more than 255 characters it threw an error saying that length of the field value has exceeded 255 characters. After doing some research i found out that the column defined in the database has a size of 256. Is there anyway we can control this? This is kind of critical for our implementation. If we can't control this is there any other control that can provide the same functionality.&lt;/p&gt;&lt;/div&gt;</description><author>praveenadini</author><pubDate>Tue, 16 Jun 2009 15:41:54 GMT</pubDate><guid isPermaLink="false">New Post: Multivalue control string restriction 20090616034154P</guid></item><item><title>New Post: Using a Global List with the Multiple Value Control</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=34432</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;To fix this, I removed the 'expanditems=&amp;quot;false&amp;quot;' attribute from the &amp;lt;SUGGESTEDVALUES&amp;gt; element.&lt;/p&gt;&lt;/div&gt;</description><author>holisticdeveloper</author><pubDate>Thu, 28 May 2009 20:35:44 GMT</pubDate><guid isPermaLink="false">New Post: Using a Global List with the Multiple Value Control 20090528083544P</guid></item><item><title>New Post: Multi Value Control Issues</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=57356</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;I have two issues when creating a multi value control.&lt;/p&gt;
&lt;p&gt;1)&amp;nbsp;I have created a multiple value control like below. It is OK when I hard-coding the List Item value.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:'Courier New';font-size:12px;white-space:pre-wrap"&gt;&amp;lt;FIELD name=&amp;quot;Triage&amp;quot; refname=&amp;quot;Microsoft.VSTS.Common.Triage&amp;quot; type=&amp;quot;String&amp;quot; reportable=&amp;quot;dimension&amp;quot;&amp;gt; 	&amp;lt;REQUIRED /&amp;gt; 	&amp;lt;HELPTEXT&amp;gt;Status of triaging the bug&amp;lt;/HELPTEXT&amp;gt; 	&amp;lt;SUGGESTEDVALUES expanditems=&amp;quot;false&amp;quot;&amp;gt; 		&amp;lt;LISTITEM value=&amp;quot;[Name A]&amp;quot; /&amp;gt; 		&amp;lt;LISTITEM value=&amp;quot;[Name B]&amp;quot; /&amp;gt; 		&amp;lt;LISTITEM value=&amp;quot;[Name C]&amp;quot; /&amp;gt; 	&amp;lt;/SUGGESTEDVALUES&amp;gt; &amp;lt;/FIELD&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;But when I used Global list, an error message occur: &amp;quot;Triage&lt;span style="color:#30332d"&gt;&amp;nbsp;does not have any values to list in the multiple value control. See &amp;ldquo;Work Item Tracking Multiple Value Control.doc&amp;rdquo; for details on defining a field to support the multiple value control&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#30332d"&gt;my global list defined as:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:'Courier New';font-size:12px;white-space:pre-wrap"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt; &amp;lt;gl:GLOBALLISTS xmlns:gl=&amp;quot;http://schemas.microsoft.com/VisualStudio/2005/workitemtracking/globallists&amp;quot;&amp;gt;   &amp;lt;GLOBALLIST name=&amp;quot;TechnicalGroups&amp;quot;&amp;gt;     &amp;lt;LISTITEM value=&amp;quot;[Name A]&amp;quot; /&amp;gt;     &amp;lt;LISTITEM value=&amp;quot;[Name B]&amp;quot; /&amp;gt;     &amp;lt;LISTITEM value=&amp;quot;[Name C]&amp;quot; /&amp;gt;   &amp;lt;/GLOBALLIST&amp;gt; &amp;lt;/gl:GLOBALLISTS&amp;gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:'Courier New';font-size:12px;white-space:pre-wrap"&gt;&lt;span style="color:#30332d;font-family:'Segoe UI';font-size:13px;white-space:normal"&gt;my work item defined as:&lt;/span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:'Courier New';font-size:12px;white-space:pre-wrap"&gt;&amp;lt;FIELD name=&amp;quot;Triage&amp;quot; refname=&amp;quot;Microsoft.VSTS.Common.Triage&amp;quot; type=&amp;quot;String&amp;quot; reportable=&amp;quot;dimension&amp;quot;&amp;gt; 	&amp;lt;REQUIRED /&amp;gt; 	&amp;lt;HELPTEXT&amp;gt;Status of triaging the bug&amp;lt;/HELPTEXT&amp;gt; 	&amp;lt;SUGGESTEDVALUES expanditems=&amp;quot;false&amp;quot;&amp;gt; 		&amp;lt;GLOBALLIST name=&amp;quot;CustomerProjects&amp;quot; /&amp;gt; 	&amp;lt;/SUGGESTEDVALUES&amp;gt; &amp;lt;/FIELD&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#30332d"&gt;I have found similar issues like this in this forum, but still don't get the solution. Can someone help me out please?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;2) &amp;nbsp;I have installed WitCustomControlSetup.exe in my server to implement multi value control. But I cannot used it in the client when I want to add a work item. The dll is missing. Do i need to install&amp;nbsp;WitCustomControlSetup.exe in every client to use it? Please help on this.&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;&lt;/div&gt;</description><author>danielhs</author><pubDate>Mon, 25 May 2009 08:58:06 GMT</pubDate><guid isPermaLink="false">New Post: Multi Value Control Issues 20090525085806A</guid></item><item><title>New Post: MultiValue Control</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=50779</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi praveenadini,&lt;br&gt;&lt;br&gt;For the web interface (I assume you mean Team System Web Access), you need to deploy the custom control to the C:\Program Files\Microsoft Visual Studio 2008 Team System Web Access\Web\App_Data\CustomControls (that is if you installed it&amp;nbsp;to the default path).&lt;/p&gt;
&lt;p&gt;However, you need a different control (WebControl) than the one you used for team explorer for it to work in TSWA.&amp;nbsp; You can find it in the SDK that comes with TSWA under C:\Program Files\Microsoft Visual Studio 2008 Team System Web Access\Sdk\CustomControlSamples.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;&lt;/div&gt;</description><author>jjslagace</author><pubDate>Thu, 21 May 2009 19:01:04 GMT</pubDate><guid isPermaLink="false">New Post: MultiValue Control 20090521070104P</guid></item><item><title>New Post: controlling users from manually entering values</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=52728</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
    Can someone please help me out about how to control users from manually entering a value into the multivalue control field. From Team Explorer if we manually enter a value and tried to save the work item it doesn't save it. But when you try to enter the value from TSWA and save the work item it saves the work item along with the value even though its not in the suggested values list. We are close to our UAT and need a response ASAP. Any response would be greatly appreciated.&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
Praveen
&lt;/div&gt;</description><author>praveenadini</author><pubDate>Wed, 08 Apr 2009 20:18:08 GMT</pubDate><guid isPermaLink="false">New Post: controlling users from manually entering values 20090408081808P</guid></item><item><title>New Post:  Web browser control</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=51263</link><description>&lt;div style="line-height: normal;"&gt;I need to Know how to use this control.&lt;div&gt;I create a cotrol of type &amp;quot;WebBrowserControl&amp;quot;, I complete the Atributes whit :&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span style="font-style:italic"&gt;URL=http://bbwk35/TFSCargaHoras/Default.aspx?WorkItem={0} &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="font-style:italic"&gt;Params=System.Id&lt;/span&gt;&lt;/div&gt;&lt;div&gt;but the URL is truck before &amp;quot;=&amp;quot;&lt;/div&gt;&lt;div&gt;&lt;span style="font-style:italic"&gt;&amp;lt;Control Type=&amp;quot;WebBrowserControl&amp;quot; Label=&amp;quot;&amp;quot; LabelPosition=&amp;quot;Left&amp;quot; Dock=&amp;quot;Top&amp;quot; URL=&amp;quot;http://bbwk35/TFSCargaHoras/Default.aspx?WorkItem&amp;quot; Params=&amp;quot;System.Id&amp;quot; /&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;the URL lose &amp;quot;={0}&amp;quot;.&lt;/div&gt;&lt;div&gt;someone can help me?&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;thank.&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description><author>diegoet</author><pubDate>Wed, 25 Mar 2009 14:19:13 GMT</pubDate><guid isPermaLink="false">New Post:  Web browser control 20090325021913P</guid></item><item><title>New Post: MultiValue Control</title><link>http://witcustomcontrols.codeplex.com/Thread/View.aspx?ThreadId=50779</link><description>&lt;div style="line-height: normal;"&gt;I have added a multivalue control to my work item. It works fine on the client server side. On the web interface it created a Text Field instead of a multivalue list. Can someone help me out?&lt;br&gt;
&lt;/div&gt;</description><author>praveenadini</author><pubDate>Fri, 20 Mar 2009 16:29:24 GMT</pubDate><guid isPermaLink="false">New Post: MultiValue Control 20090320042924P</guid></item><item><title>New Post: Custom Control on Windows 7</title><link>http://www.codeplex.com/WitCustomControls/Thread/View.aspx?ThreadId=44701</link><description>&lt;div style="line-height: normal;"&gt;I'm using the windows 7 beta with visual studio 2008. I installed the custom controls and was trying to use the multivalue control but I get this error: &amp;quot;Object reference not set to an instance of an object.&amp;quot; I confirmed the files were present at \programdata\microsoft\team foundation\work item tracking\custom controls&lt;br&gt;
&lt;br&gt;
Any suggestions?&lt;br&gt;
&lt;br&gt;
Thanks in advance
&lt;/div&gt;</description><author>daryamaz</author><pubDate>Tue, 20 Jan 2009 18:51:43 GMT</pubDate><guid isPermaLink="false">New Post: Custom Control on Windows 7 20090120065143P</guid></item><item><title>New Post: Using a Global List with the Multiple Value Control</title><link>http://www.codeplex.com/WitCustomControls/Thread/View.aspx?ThreadId=34432</link><description>&lt;div style="line-height: normal;"&gt;Yes, it works for me, I setup a global list and the control shows the values in the drop down.&lt;br&gt;
The only thing I notice in you example is that you have a value with a blank space, try removing it and see if that works.&lt;br&gt;
&lt;/div&gt;</description><author>alexvaccaro</author><pubDate>Tue, 07 Oct 2008 12:37:13 GMT</pubDate><guid isPermaLink="false">New Post: Using a Global List with the Multiple Value Control 20081007123713P</guid></item><item><title>New Post: Using a Global List with the Multiple Value Control</title><link>http://www.codeplex.com/WitCustomControls/Thread/View.aspx?ThreadId=34432</link><description>&lt;div style="line-height: normal;"&gt;Hmm, not sure what the deal is then...&amp;nbsp; I've got the following global list defined:&lt;br&gt;
&lt;br&gt;
&amp;nbsp; &amp;lt;GLOBALLIST name=&amp;quot;CustomerProjects&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LISTITEM value=&amp;quot;[EBPC]&amp;quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LISTITEM value=&amp;quot;[SMART]&amp;quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LISTITEM value=&amp;quot;[ASI]&amp;quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LISTITEM value=&amp;quot;[BC Transit]&amp;quot; /&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;/GLOBALLIST&amp;gt;&lt;br&gt;
&lt;br&gt;
And in my work item, the field is defined as:&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;FIELD name=&amp;quot;Customer Project&amp;quot; refname=&amp;quot;Stratagen.CustomerProject&amp;quot; type=&amp;quot;String&amp;quot; reportable=&amp;quot;dimension&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;HELPTEXT&amp;gt;Customer and/or Project&amp;lt;/HELPTEXT&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;SUGGESTEDVALUES expanditems=&amp;quot;false&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;GLOBALLIST name=&amp;quot;CustomerProjects&amp;quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/SUGGESTEDVALUES&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/FIELD&amp;gt;&lt;br&gt;
&lt;br&gt;
When I try to create a new work item, I get the following error message:&lt;br&gt;
---------------------------&lt;br&gt;
Multiple Value Control&lt;br&gt;
---------------------------&lt;br&gt;
Customer Project does not have any values to list in the multiple value control. See “Work Item Tracking Multiple Value Control.doc” for details on defining a field to support the multiple value control.&lt;br&gt;
---------------------------&lt;br&gt;
OK&amp;nbsp;&amp;nbsp; &lt;br&gt;
---------------------------&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>HolisticDeveloper</author><pubDate>Tue, 23 Sep 2008 02:40:41 GMT</pubDate><guid isPermaLink="false">New Post: Using a Global List with the Multiple Value Control 20080923024041A</guid></item><item><title>New Post: List of Multiple Selections into DB as relational data</title><link>http://www.codeplex.com/WitCustomControls/Thread/View.aspx?ThreadId=36221</link><description>&lt;div style="line-height: normal;"&gt;I'm new to TFS and am still learning the capabilities it has to offer, particularly for extensibility.&amp;nbsp; I've tried this control out and have a question:&amp;nbsp; does TFS support making a data entry that is basically a table of related data (OLTP side anyway) instead of the concatenated string this control produces?&amp;nbsp; Does TFS offer any alternative (multiple records with the same internal foreign-ID in the same table as a normally selected single-value string result) to a normalized relationship of newly created input data/tables?&amp;nbsp; I'd think this would heavily impact just what kind of controls you can make.&amp;nbsp;
&lt;/div&gt;</description><author>GriffWampa</author><pubDate>Mon, 22 Sep 2008 20:22:35 GMT</pubDate><guid isPermaLink="false">New Post: List of Multiple Selections into DB as relational data 20080922082235P</guid></item><item><title>New Post: Using a Global List with the Multiple Value Control</title><link>http://www.codeplex.com/WitCustomControls/Thread/View.aspx?ThreadId=34432</link><description>&lt;div style="line-height: normal;"&gt;it does for me, see http://msdn.microsoft.com/en-us/library/ms194977.aspx&lt;br&gt;
remember to provide values in square brackets [ ]&lt;br&gt;
&lt;/div&gt;</description><author>alexvaccaro</author><pubDate>Wed, 17 Sep 2008 14:05:11 GMT</pubDate><guid isPermaLink="false">New Post: Using a Global List with the Multiple Value Control 20080917020511P</guid></item><item><title>New Post: Using a Global List with the Multiple Value Control</title><link>http://www.codeplex.com/WitCustomControls/Thread/View.aspx?ThreadId=34432</link><description>&lt;div style="line-height: normal;"&gt;Does the multiple value control support pulling its list from a global list, rather than hard-coding the suggested values?&lt;br&gt;
&lt;/div&gt;</description><author>HolisticDeveloper</author><pubDate>Thu, 28 Aug 2008 01:37:25 GMT</pubDate><guid isPermaLink="false">New Post: Using a Global List with the Multiple Value Control 20080828013725A</guid></item><item><title>New Post: TFS 2008 &amp; mixed clients (VS2005 &amp; VS2008)</title><link>http://www.codeplex.com/WitCustomControls/Thread/View.aspx?ThreadId=33864</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
I have been trying to get the screenshot capture control working on a mixed client environment(unfortunately not all our developers are using VS2008 yet), we are currently running a VS2008 TFS with the custom control install and i have no problem viewing forms with the control in using VS2008. But when i try and view the same forms using VS2005 i get a 'object reference not set to an instance of an object', any ideas why this isn't working? i've got the SP1 installed with VS2005 as i need this to connect to TFS 2008 anyway.&lt;br&gt;
&lt;br&gt;
Any help would be great,&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
JC&lt;br&gt;
&lt;/div&gt;</description><author>JC2003</author><pubDate>Wed, 20 Aug 2008 06:02:07 GMT</pubDate><guid isPermaLink="false">New Post: TFS 2008 &amp; mixed clients (VS2005 &amp; VS2008) 20080820060207A</guid></item></channel></rss>