﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Microsoft Connect: Most Recent Feedback - Visual Studio and .NET Framework -</title><link>http://connect.microsoft.com/default.aspx</link><description>Microsoft Connect: Most Recent Feedback - Visual Studio and .NET Framework -</description><language>en</language><copyright>&amp;#169; 2009 Microsoft Corporation. All rights reserved.</copyright><lastBuildDate>Tue, 24 Nov 2009 09:30:13 -0800</lastBuildDate><image><url>/Images/MSConnect_Logo.gif</url><title>Microsoft Connect: Most Recent Feedback - Visual Studio and .NET Framework -</title><link>http://connect.microsoft.com/default.aspx</link></image><ttl>60</ttl><item><guid isPermaLink="false">88193</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88193</link><author>p_sie</author><category>Bug</category><title>Cannot add items to listview of the listview contains more than 20 columns</title><description>In a project I have a listview with more than 20 columns, if I try to fill the listview
I get an error saying : "Item cannot be added to ListView". I I reduce the number of the
columns to 20 it works fine.
Same form was working like a charm in Beta 2, and I changed no code.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 2 Up-Votes, 0 Down-Votes, 1 validation, 1 workaround, 3 comments, feedback id: 88193</description><a10:updated>2006-06-07T23:07:23-07:00</a10:updated></item><item><guid isPermaLink="false">88194</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88194</link><author>AtliB</author><category>Bug</category><title>Return values and code paths</title><description>When the Visual Basic.NET compiler checks if all codepaths return a value in a function, it only warns when the return type is a reference type, not value type.  This might be by design but I personally think this should be changed right away.  This is a long sought after feature and please implement it all the way.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 10 Up-Votes, 1 Down-Vote, 2 validations, 0 workarounds, 4 comments, feedback id: 88194</description><a10:updated>2006-06-07T23:07:25-07:00</a10:updated></item><item><guid isPermaLink="false">88195</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88195</link><author>japentik</author><category>Suggestion</category><title>Byte array copyto method</title><description>I have defined

    Dim resultB As Byte()
    Dim outputB As Byte()
    Dim index As Integer = 0

The next row passed in compilation

    resultB.CopyTo(outputB, index)

In run time I get error as enlosed.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 0 Up-Votes, 1 Down-Vote, 0 workarounds, 3 comments, feedback id: 88195</description><a10:updated>2006-06-07T23:07:25-07:00</a10:updated></item><item><guid isPermaLink="false">88196</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88196</link><author>Cmore</author><category>Bug</category><title>Unexpected Error adding a dataset to a .dll project after adding a web service to a solution</title><description>A dialog pops up stating "Unexpected Error" when adding a dataset to a .dll project inside a solution that also contains a web service project. Afterwards, the dataset is shown in the solution explorer, but does not automatically pop up in the editor screen. The 'add component' screen also re-shows.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: External, 2 Up-Votes, 1 Down-Vote, 1 validation, 0 workarounds, 2 comments, feedback id: 88196</description><a10:updated>2006-11-14T16:22:40-08:00</a10:updated></item><item><guid isPermaLink="false">88197</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88197</link><author>Jim Osborne</author><category>Bug</category><title>VS Project Conversion Wizard Fails on Windows Client Application</title><description>I have a solution with many class libraries and one Windows Client Application project. All the class libs converted without incident. When the Client App Project goes through conversion, it fails with the following error message: "An Unexpected Error has occurred. Error Message: We were expecting a log file to be produced at '' but it does not exist".

I checked previous conversion bugs listed here and I do appear to have all the templates available when I create a new Project in VS2005, so I...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 2 Up-Votes, 0 Down-Votes, 1 validation, 0 workarounds, 2 comments, feedback id: 88197</description><a10:updated>2006-06-07T23:07:27-07:00</a10:updated></item><item><guid isPermaLink="false">88198</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88198</link><author>Anthony D. Green</author><category>Suggestion</category><title>Fix Iif</title><description>In VB6 I was occustomed to coding with Option Strict Off (I'm sorry, please don't hit me). It's not to say that I didn't strongly type all my variables, I just never thought to turn it on. Now in VB.NET I have yet to turn it off (ever since I set it to default ON). While Iif(expression, truepart, falsepart) may not be the most widely used, hidden member of the VB arsenal, it definately made my code more concise without wasting symbols in C/C++'s trinary operator expression ? truepart : falsepart...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 11 Up-Votes, 0 Down-Votes, 0 workarounds, 1 comment, feedback id: 88198</description><a10:updated>2009-09-26T16:29:02-07:00</a10:updated></item><item><guid isPermaLink="false">88199</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88199</link><author>LinoX</author><category>Suggestion</category><title>Try..Catch construct should let the user specify the type of the exception without declaring a variable</title><description>Suppose I want to catch an exception by type

Try
[some instructions]
Catch ex As InvalidOperationException
Catch ex2 As SecurityException
Catch ex3 As PathTooLongException
End Try

Actually I MUST declare ex, ex2, ex3 even if I don't use them in the Catch block.
(those are ACTUALLY signaled as "unused variables" by the compiler)
What if I don't need the exception detail?
How can I suppress the "unused variable" warning?&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Won't Fix, 2 Up-Votes, 1 Down-Vote, 0 workarounds, 4 comments, feedback id: 88199</description><a10:updated>2007-08-24T18:11:06-07:00</a10:updated></item><item><guid isPermaLink="false">88200</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88200</link><author>alanjmcf</author><category>Bug</category><title>Visual Basic .NET Compiler doesn't apply unification to framework indirect reference</title><description>I'm using a third party library which is compiled against the .NETCF v1.0 but is compatible with the desktop framework too.  When compiled with the 2.0 C# compiler there is no problem; the compile completes and the target runs fine (through unification on the .NETCF retargetable reference, I presume).  Whereas when one uses the 2.0 VB compiler, it fails.

For example:
    vbc.exe /reference:InTheHand.Net.IrDA.dll usesIrDAClient.vb
fails with:
[[
Microsoft (R) Visual Basic Compiler version ...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Fixed, 8 Up-Votes, 0 Down-Votes, 8 validations, 0 workarounds, 7 comments, feedback id: 88200</description><a10:updated>2009-02-22T13:05:22-08:00</a10:updated></item><item><guid isPermaLink="false">88201</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88201</link><author>KC_Tin</author><category>Suggestion</category><title>Formating Numbers</title><description>In the textbox control, if the format property can be defined as a property will be very useful.  &lt;BR&gt;&lt;BR&gt;Status: Active, 1 Up-Vote, 1 Down-Vote, 0 workarounds, 2 comments, feedback id: 88201</description><a10:updated>2006-06-07T23:07:30-07:00</a10:updated></item><item><guid isPermaLink="false">88202</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88202</link><author>BobHazard</author><category>Bug</category><title>Visual Basic 2005 Express User Control</title><description>When creating a user control in Visual Basic 2005 Express edition, instantiating that control on another windows form (from the tool tab) does not compile - even after having compiled the user control PRIOR to instantiating it on the windows form.  This behavior is a deviation from the prior Visual Basic .Net (2003) version IDE which the same series of operations will result in a succesful compile (I do it all the time in .Net 2003).  
&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 2 Up-Votes, 0 Down-Votes, 0 validations, 2 workarounds, 11 comments, feedback id: 88202</description><a10:updated>2006-11-14T16:22:43-08:00</a10:updated></item><item><guid isPermaLink="false">88203</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88203</link><author>fpalang</author><category>Suggestion</category><title>no default set for the paramer identifier (i.e. @) in the query builder</title><description>Ther is no default set for the SQL parameter identifier . when an SQL query contain parameters such as @code or @id, the SQL PARSER generate a syntax error after the @ until you discover you can set this identifier with the Query Parameter Identification entry in the Query Builder Properties&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 2 Up-Votes, 0 Down-Votes, 0 workarounds, 3 comments, feedback id: 88203</description><a10:updated>2009-06-22T15:27:00-07:00</a10:updated></item><item><guid isPermaLink="false">88204</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88204</link><author>tstauffer</author><category>Suggestion</category><title>Multiline comments</title><description>It has always annoyed me that VB doesn't have support for multiline comments.  While there is a workaround for this, what there isn't a workaround for is the inline comment, which can be used for the multiline as well.  &lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 10 Up-Votes, 0 Down-Votes, 0 workarounds, 6 comments, feedback id: 88204</description><a10:updated>2009-02-25T11:50:18-08:00</a10:updated></item><item><guid isPermaLink="false">88205</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88205</link><author>Rory</author><category>Bug</category><title>Incorrect tab autocomplete at the end of If and Select statements.</title><description>If the tab key is pressed at the end of 'End If' or 'End Select', auto complete kicks in and adds the code block as if the end of the block is the start of a new one. If a space is added at the end of the line and then a tab, autocomplete doesn't do anything.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 2 Up-Votes, 0 Down-Votes, 1 validation, 1 workaround, 4 comments, feedback id: 88205</description><a10:updated>2006-06-07T23:07:34-07:00</a10:updated></item><item><guid isPermaLink="false">88206</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88206</link><author>Stiow</author><category>Suggestion</category><title>Block ... End Block Construct</title><description>In c# programmers can use curly braces {} to delimit code into stand alone (de-marked) areas within a procedure.  VB does not have this functionality&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 9 Up-Votes, 2 Down-Votes, 0 workarounds, 3 comments, feedback id: 88206</description><a10:updated>2008-09-29T02:59:32-07:00</a10:updated></item><item><guid isPermaLink="false">88207</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88207</link><author>Glen1</author><category>Suggestion</category><title>Collection Editors</title><description>Editor UI is poorly designed.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 4 Up-Votes, 0 Down-Votes, 0 workarounds, 5 comments, feedback id: 88207</description><a10:updated>2006-06-07T23:07:35-07:00</a10:updated></item><item><guid isPermaLink="false">88208</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88208</link><author>cdfalcon24</author><category>Suggestion</category><title>Do not create directory for solution by default</title><description>When you save a project, you are prompted whether or not to create a directory for the solution. By default, you do create a solution directory.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Won't Fix, 3 Up-Votes, 1 Down-Vote, 0 workarounds, 1 comment, feedback id: 88208</description><a10:updated>2009-08-18T23:55:32-07:00</a10:updated></item><item><guid isPermaLink="false">88209</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88209</link><author>trevorboys</author><category>Suggestion</category><title>Tab Page BackColor</title><description>The background colour of the tab control should be a definable property.  At present, it is possible to change the background of tab pages, but not of the container control&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Won't Fix, 5 Up-Votes, 0 Down-Votes, 0 workarounds, 2 comments, feedback id: 88209</description><a10:updated>2006-06-07T23:07:36-07:00</a10:updated></item><item><guid isPermaLink="false">88210</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88210</link><author>JoshSommers</author><category>Suggestion</category><title>Allow the use of either BMP or ICON as image for all controls</title><description>Some controls, such as the standard command button allow you to use either an image (bmp, png etc) or an Icon as the image for the control. You can also use a imagelist control with these controls. However, other controls do not have the same ability. For example, the ToolStripButton only allows you to use a bmp. This is troublesome because it should be consistant across the various controls. &lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 3 Up-Votes, 0 Down-Votes, 0 workarounds, 1 comment, feedback id: 88210</description><a10:updated>2006-06-07T23:07:37-07:00</a10:updated></item><item><guid isPermaLink="false">88211</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88211</link><author>jmorones</author><category>Suggestion</category><title>Drawing images with transparency</title><description>This is a suggestion.
It is possible to have a method to draw images with any transparency I want?
I know that PNG images have transparency, but it would be useful to gradually appear or disappear them, or blend them with a programmatical transparency.
Thank you.
&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Won't Fix, 2 Up-Votes, 1 Down-Vote, 0 workarounds, 2 comments, feedback id: 88211</description><a10:updated>2006-06-07T23:07:37-07:00</a10:updated></item><item><guid isPermaLink="false">88212</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88212</link><author>Martin Lercher</author><category>Suggestion</category><title>An operator to convert an identifier to a reflection object</title><description>There is no way to let the compiler check that a requested Type.GetMethodInfo(AString) will succed at runtime.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 2 Up-Votes, 0 Down-Votes, 0 workarounds, 2 comments, feedback id: 88212</description><a10:updated>2006-06-07T23:07:37-07:00</a10:updated></item><item><guid isPermaLink="false">88213</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88213</link><author>MisterT1</author><category>Bug</category><title>Specified cast is not valid.</title><description>Converted a VB.NET 2003 project to 2005 beta.  When viewing the Main Form in Design mode I get the following message.  Need more information to be able to know what is causing this error.  - Thanks !

Specified cast is not valid.

at VbPowerPack.Design.TaskPaneDesigner.OnSelectionChanged(Object sender, EventArgs e)
at System.EventHandler.Invoke(Object sender, EventArgs e)
at System.ComponentModel.Design.SelectionService.OnSelectionChanged()
at System.ComponentModel.Design.SelectionService...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Fixed, 2 Up-Votes, 0 Down-Votes, 2 validations, 0 workarounds, 1 comment, feedback id: 88213</description><a10:updated>2006-06-07T23:07:38-07:00</a10:updated></item><item><guid isPermaLink="false">88214</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88214</link><author>gauravcreations.com</author><category>Suggestion</category><title>BalloonTip Close</title><description>There is no way to programatically close the Balloon Tip&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 1 Up-Vote, 1 Down-Vote, 0 workarounds, 1 comment, feedback id: 88214</description><a10:updated>2006-06-07T23:07:38-07:00</a10:updated></item><item><guid isPermaLink="false">88215</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88215</link><author>BradleySmith</author><category>Bug</category><title>Error Prevents Form Sizing in Design Mode</title><description>When attempting to resize a form in design mode by using it's handles, the following error appears and prevents the form from being resized. You can resize it under the form properties though.

"Object reference not set to an instance of an object."&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 10 Up-Votes, 1 Down-Vote, 16 validations, 0 workarounds, 2 comments, feedback id: 88215</description><a10:updated>2006-06-07T23:07:39-07:00</a10:updated></item><item><guid isPermaLink="false">88216</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88216</link><author>kmatzen</author><category>Bug</category><title>\bin\VCalc.vshost.exe is preventing project build</title><description>The first a solution is debugged it is loaded or after terminating a debugging session with the Stop button, the error message "The operation could not be completed.  Unspecified error."
The second time it is started in debug mode the message "Visual Studio could not copy a support file to this location ...\bin\VCalc.vshost.exe.  Please verify path exists and is writable."
I am able to get it to function again by exiting Visual Studio and deleting the vshost.exe file.
No prior Betas have been...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 4 Up-Votes, 0 Down-Votes, 2 validations, 1 workaround, 2 comments, feedback id: 88216</description><a10:updated>2006-06-07T23:07:40-07:00</a10:updated></item><item><guid isPermaLink="false">88217</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88217</link><author>Texrat</author><category>Bug</category><title>could not read state file "objDebugResolveAssemblyReference.cache"</title><description>When I try to run my program in the idea, I occasionally get the error 'could not read state file "obj\Debug\ResolveAssemblyReference.cache"'.  This occurs maybe 4 times out of 5 attempts; sometimes the program actually runs.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 1 Up-Vote, 0 Down-Votes, 1 validation, 0 workarounds, 2 comments, feedback id: 88217</description><a10:updated>2006-06-07T23:07:40-07:00</a10:updated></item><item><guid isPermaLink="false">88218</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88218</link><author>GreatSoft_IL</author><category>Suggestion</category><title>DataGridView Footer</title><description>Can a footer be added to the DataGridView control is the same way that has been done for the ASP.NET GridView control&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 8 Up-Votes, 0 Down-Votes, 0 workarounds, 1 comment, feedback id: 88218</description><a10:updated>2009-05-06T00:32:50-07:00</a10:updated></item><item><guid isPermaLink="false">88219</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88219</link><author>CorradoCavalli</author><category>Bug</category><title>Canno t use a custom Sub Main</title><description>Tried FDBK11728#1 with no luck...

Cannt start a Win app using my own sub Main
&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Fixed, 2 Up-Votes, 0 Down-Votes, 0 validations, 0 workarounds, 2 comments, feedback id: 88219</description><a10:updated>2006-06-07T23:07:41-07:00</a10:updated></item><item><guid isPermaLink="false">88220</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88220</link><author>budalv</author><category>Suggestion</category><title>Sticky Language-Filter choices, please</title><description>Necessity to constantly make language-filter choices on each page.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Fixed, 3 Up-Votes, 0 Down-Votes, 0 workarounds, 2 comments, feedback id: 88220</description><a10:updated>2006-06-07T23:07:42-07:00</a10:updated></item><item><guid isPermaLink="false">88221</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88221</link><author>payensa</author><category>Bug</category><title>Editor overrides when starting a new line</title><description>Sometimes the editor takes control of what I'm writing when I start a new line. If I'm trying to write something like "me.variable", the editor (intellisense?) overrides it that way: "m(e).v(ariable)" until I close the tab and reopen the file.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 2 Up-Votes, 0 Down-Votes, 2 validations, 0 workarounds, 4 comments, feedback id: 88221</description><a10:updated>2006-06-07T23:07:42-07:00</a10:updated></item><item><guid isPermaLink="false">88222</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88222</link><author>PSE1</author><category>Suggestion</category><title>Multi monitor support</title><description>I am working on multimonitor system. Lot of VS 2005 UI dialog boxes are opened on main screen and not on screen where the VS 2005 is running. VS 2005 starts always on right screen, the dialog boxes not.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 6 Up-Votes, 0 Down-Votes, 0 workarounds, 3 comments, feedback id: 88222</description><a10:updated>2006-06-07T23:07:44-07:00</a10:updated></item><item><guid isPermaLink="false">88223</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88223</link><author>Speedbird186</author><category>Bug</category><title>False warning when checking for Nothing in local variable</title><description>When checking for Nothing on a local variable, the warning that the variable is not assigned a value also occurs where checking for a value.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 3 Up-Votes, 0 Down-Votes, 1 validation, 0 workarounds, 1 comment, feedback id: 88223</description><a10:updated>2006-06-07T23:07:45-07:00</a10:updated></item><item><guid isPermaLink="false">88224</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88224</link><author>Tony Feissle</author><category>Bug</category><title>Compiler warning for variable being used before it is declared</title><description>Variable 'fs' is used before it has been assigned a value. A null reference exception could result at runtime.

It is different from VS 2003 (and the help for VS 2005 describes the VS 2003 way it worked)				
&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 3 Up-Votes, 0 Down-Votes, 0 validations, 0 workarounds, 4 comments, feedback id: 88224</description><a10:updated>2006-06-07T23:07:46-07:00</a10:updated></item><item><guid isPermaLink="false">88225</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88225</link><author>DanielMoth</author><category>Suggestion</category><title>Object Test Bench available to VB</title><description>I have read about the Object Test Bench and how it will be available to C# only. Please make this available to VB as well as it is a feature we have been missing for a long time.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 10 Up-Votes, 0 Down-Votes, 0 workarounds, 1 comment, feedback id: 88225</description><a10:updated>2008-07-21T17:59:01-07:00</a10:updated></item><item><guid isPermaLink="false">88226</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88226</link><author>Beat Arnet</author><category>Bug</category><title>Error upgrading VB to .NET 2005 (February 2005 CTP)</title><description>Upgrading a VB application with the wizard causes error:
Unexpected exception occurred during upgrade engine operation: Retrieving the COM class factory fpr component with CLSID {EBBCC412-9CFE-4BE3-A83A-8562097B506D} failed with HRESULT: 0x800736b1(Diese Anwendung konnte nicht gestartet werden, weil die Anwendungskonfiguration nicht korrekt ist. Zur Problembehebung sollten Sie die Anwendung neu installieren. (Exception from HRESULT: 0x800736B1)).
&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 2 Up-Votes, 0 Down-Votes, 1 validation, 0 workarounds, 1 comment, feedback id: 88226</description><a10:updated>2006-06-07T23:07:47-07:00</a10:updated></item><item><guid isPermaLink="false">88227</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88227</link><author>dougR1</author><category>Bug</category><title>The revision field on publish tab of the project properties did not increment after publishing</title><description>I am using ClickOnce to deploy my VB project and while using the publish tab on the project properties, If found that after clicking the publish button the revision fiekd did not increment.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 0 Up-Votes, 1 Down-Vote, 1 validation, 0 workarounds, 2 comments, feedback id: 88227</description><a10:updated>2006-06-07T23:07:47-07:00</a10:updated></item><item><guid isPermaLink="false">88228</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88228</link><author>robydam</author><category>Suggestion</category><title>Remove Item from Solution Explorer</title><description>When I want to remove a Form or a folder or module or other from My project The software show me only delete.
If I delete item VB delete file.
&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 1 Up-Vote, 1 Down-Vote, 0 workarounds, 2 comments, feedback id: 88228</description><a10:updated>2006-06-07T23:07:48-07:00</a10:updated></item><item><guid isPermaLink="false">88229</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88229</link><author>Gold24By7</author><category>Suggestion</category><title>DatagridView - Print Method</title><description>We have lot of queries where user wants to see the results in DataGridView. Next thing they want is to be able to Print the results.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Won't Fix, 25 Up-Votes, 1 Down-Vote, 0 workarounds, 1 comment, feedback id: 88229</description><a10:updated>2009-10-19T13:36:50-07:00</a10:updated></item><item><guid isPermaLink="false">88230</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88230</link><author>PSavas</author><category>Suggestion</category><title>Return "Procedure View" to .Net</title><description>The full-module view of code can sometimes be confusing.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Duplicate, 3 Up-Votes, 0 Down-Votes, 1 workaround, 1 comment, feedback id: 88230</description><a10:updated>2009-06-08T12:09:23-07:00</a10:updated></item><item><guid isPermaLink="false">88231</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88231</link><author>Osage Stormcrow</author><category>Bug</category><title>Got an "Unspecified Error" message when trying to open a project from the the recent projects list.</title><description>
I had deleted an old project and it's subdirectories. To clear it off the recent projects list, I tried opening it and got the following message: "Operation could not be completed. Unspecified error."  This only happens if the subdirectory is missing. If I delete the project files but leave the subdir, then it acts normally (i.e., says the project doesn't exist and asks if I want it removed from the list).&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Fixed, 1 Up-Vote, 1 Down-Vote, 0 validations, 0 workarounds, 1 comment, feedback id: 88231</description><a10:updated>2006-06-07T23:07:49-07:00</a10:updated></item><item><guid isPermaLink="false">88232</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88232</link><author>Rod1</author><category>Suggestion</category><title>Should allow Structures to define an empty constructor</title><description>You cannot define an empty constructor for a Structure. I.e.

    Public Sub New()
    ...
    End Sub

This means you cannot guarantee that an instance of a Structure has been initialized under all circumstances.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 2 Up-Votes, 0 Down-Votes, 0 workarounds, 2 comments, feedback id: 88232</description><a10:updated>2006-06-07T23:07:49-07:00</a10:updated></item><item><guid isPermaLink="false">88233</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88233</link><author>evadr</author><category>Suggestion</category><title>WinForms Repeater</title><description>In ASP.NET we have a repeater control which can be customized with whatever array of controls you would like to add to it.  It is attached to a datasource and you can then easily bind contained controls to the fields of that datasource.  I think that something similar in WinForms would be a godsend.  There are many times when a datagrid just won't handle the types of controls best suited to display the information.  Also there are times when there are too many fields for the grid to make the dat...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 8 Up-Votes, 0 Down-Votes, 0 workarounds, 3 comments, feedback id: 88233</description><a10:updated>2009-04-10T21:37:02-07:00</a10:updated></item><item><guid isPermaLink="false">88234</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88234</link><author>Sam_I_AM</author><category>Bug</category><title>Toolstrip Menu retaining input focus after opening MDI Childform</title><description>My function in  the Steps to reproduce opens the form correctly and on each form their is a routine which focuses a default control on the form. These controls are mostly all textboxes or command buttons. When running in a debug this portion works correctly and the control has input focus and the text of the control is completely selected. When my function returns to the main form the toolstrip items start repainting themselves and the toolstrip menu regains the input focus. The childform which ...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Won't Fix, 6 Up-Votes, 0 Down-Votes, 1 validation, 0 workarounds, 3 comments, feedback id: 88234</description><a10:updated>2006-07-24T17:02:07-07:00</a10:updated></item><item><guid isPermaLink="false">88235</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88235</link><author>K. Kazinski</author><category>Bug</category><title>Error Resizing Form, Frame or Button</title><description>This is the same problem that was reported in bug ID FDBK10919.  The status is Closed.

 
\When attempting to resize a form in design mode by using it's handles, the following error appears and prevents the form from being resized. You can resize it under the form properties though.

"Object reference not set to an instance of an object."  
 
&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 5 Up-Votes, 0 Down-Votes, 1 validation, 0 workarounds, 1 comment, feedback id: 88235</description><a10:updated>2006-06-07T23:07:52-07:00</a10:updated></item><item><guid isPermaLink="false">88236</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88236</link><author>agidon</author><category>Bug</category><title>FileGet and lock</title><description>If a record is locked ex.: record number 100
FileGet can't access the record 84 to 100 ( O.K. for the record 100)
FilePut work find on those records.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 5 Up-Votes, 0 Down-Votes, 0 validations, 1 workaround, 3 comments, feedback id: 88236</description><a10:updated>2006-06-07T23:07:54-07:00</a10:updated></item><item><guid isPermaLink="false">88237</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88237</link><author>Speedbird186</author><category>Suggestion</category><title>Windows Service template Dispose method does not pass FxCop analysis</title><description>When creating a new Windows Service project with VB.NET, the template that is used overrides and overloads the Dispose method from the base class.

However, this implementation does not pass FxCop analysis because if an exception occurs in the code before the call to MyBase.Dispose(disposing), then the base class' resources will not be disposed of correctly.

Also see http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=84736&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 6 Up-Votes, 0 Down-Votes, 0 workarounds, 1 comment, feedback id: 88237</description><a10:updated>2008-09-29T04:36:41-07:00</a10:updated></item><item><guid isPermaLink="false">88238</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88238</link><author>AFerrara</author><category>Bug</category><title>Error message when trying to create new Windows Application</title><description>Whenever I click New Project &gt; Windows Application, I get this error:

"The format of the file 'System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is invalid."

And aftwards nothing happens.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Not Reproducible, 4 Up-Votes, 0 Down-Votes, 4 validations, 0 workarounds, 2 comments, feedback id: 88238</description><a10:updated>2006-06-07T23:07:55-07:00</a10:updated></item><item><guid isPermaLink="false">88239</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88239</link><author>the_devhead</author><category>Suggestion</category><title>Allow full download of Visual Basic Express</title><description>The download from setup will take far too long for me with dial-up&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Fixed, 5 Up-Votes, 0 Down-Votes, 0 workarounds, 2 comments, feedback id: 88239</description><a10:updated>2006-06-07T23:07:56-07:00</a10:updated></item><item><guid isPermaLink="false">88240</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88240</link><author>Jarrell Newhouse</author><category>Bug</category><title>Source Safe comments only allow for 255 characters</title><description>Source Safe comments only allow for 255 characters. This is insufficient for long descriptions of changes.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: By Design, 3 Up-Votes, 0 Down-Votes, 0 validations, 0 workarounds, 2 comments, feedback id: 88240</description><a10:updated>2006-06-07T23:07:56-07:00</a10:updated></item><item><guid isPermaLink="false">88241</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88241</link><author>Fred Fibber</author><category>Suggestion</category><title>Pragma Support in Visual Basic IDE</title><description>How to disable a single warning for a specific procedure? (Procedure being sub, function, property, and so on.)

I have been waiting for Pragma support for Visual Basic since moving from C++ to Visual Basic almost ten years ago. Pragma wasn't really needed, but there has been many occasions that I wished it was in the environment. With the newer technology (.NET Framework) it has become a requirement. We need Pragma support in the IDE of Visual Basic. I truly cannot believe it is missing from ...&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Postponed, 2 Up-Votes, 1 Down-Vote, 0 workarounds, 4 comments, feedback id: 88241</description><a10:updated>2008-04-22T08:36:49-07:00</a10:updated></item><item><guid isPermaLink="false">88242</guid><link>http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=88242</link><author>cdfalcon24</author><category>Suggestion</category><title>Try statements shouldn't need a Catch or Finally</title><description>In Visual Basic, you are required to have a Catch or Finally statement after a Try statement. This works well in most scenarios, except when you would like to try something without catching an error.&lt;BR&gt;&lt;BR&gt;Status: Closed, Resolution: Won't Fix, 0 Up-Votes, 4 Down-Votes, 0 workarounds, 3 comments, feedback id: 88242</description><a10:updated>2009-10-20T09:35:21-07:00</a10:updated></item></channel></rss>