<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://community.submain.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>CodeIt.Once</title><link>http://community.submain.com/forums/5/ShowForum.aspx</link><description>If you are having a problem using &lt;a href="http://submain.com/cio"&gt;&lt;b&gt;CodeIt.Once&lt;/b&gt;&lt;/a&gt;, post a message here.</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.2)</generator><item><title>Rename Namespaces?</title><link>http://community.submain.com/forums/thread/281.aspx</link><pubDate>Sun, 07 Oct 2007 18:14:21 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:281</guid><dc:creator>jaxmeier</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/281.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=281</wfw:commentRss><description>&lt;p&gt;Is it possible to rename a namespace in a project? We are developinig for DotNetNuke and the tools we use give us &amp;quot;YourName.Modules.ModuleName...&amp;quot;&lt;/p&gt;&lt;p&gt;We would love&amp;nbsp;to rename the namespace and have them updated in other files, but when we try, we get an invalid name message. I am assuming it is because there are periods in the namespace.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Any workarounds?&lt;/p&gt;&lt;p&gt;&amp;nbsp;Thanks,&lt;/p&gt;&lt;p&gt;jax&lt;/p&gt;</description></item><item><title>Sugestion</title><link>http://community.submain.com/forums/thread/210.aspx</link><pubDate>Fri, 22 Jun 2007 15:51:22 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:210</guid><dc:creator>sglima</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/210.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=210</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I think it would be nice to have a functionality to remove interfaces.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It would also be handy to add/remove functions/etc to interfaces&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;S&amp;eacute;rgio Lima&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Extract "Function"</title><link>http://community.submain.com/forums/thread/124.aspx</link><pubDate>Fri, 29 Sep 2006 18:41:54 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:124</guid><dc:creator>Igor Tur</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/124.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=124</wfw:commentRss><description>It would be nice to have "Extract Function/Property" also.&lt;br /&gt;&lt;br /&gt;Extract Method is somehow limited as it creates void method and everything is passed as parameters.&lt;br /&gt;&lt;br /&gt;For example&lt;br /&gt;&lt;br /&gt;class A&lt;br /&gt;{&lt;br /&gt;  string s = "";&lt;br /&gt;&lt;br /&gt;  void test()&lt;br /&gt;  {&lt;br /&gt;    s = MyCompany.MyProduct.some.other.name.space.class.staticMethod(1,2,3,4,5,6);&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;And if you want to move that long call to a function with readable name you'd get something like this:&lt;br /&gt;&lt;br /&gt;class A&lt;br /&gt;{&lt;br /&gt;  string s = "";&lt;br /&gt;&lt;br /&gt;  void test()&lt;br /&gt;  {&lt;br /&gt;    s = sTest();&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  string sTest()&lt;br /&gt;  {&lt;br /&gt;    return MyCompany.MyProduct.some.other.name.space.class.staticMethod(1,2,3,4,5,6);&lt;br /&gt;  }&lt;br /&gt;}</description></item><item><title>Extract method not working</title><link>http://community.submain.com/forums/thread/118.aspx</link><pubDate>Tue, 20 Jun 2006 13:13:43 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:118</guid><dc:creator>Phil Wells</dc:creator><slash:comments>4</slash:comments><comments>http://community.submain.com/forums/thread/118.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=118</wfw:commentRss><description>The Extract Method option is dimmed on the context menu when trying to extract a method from the following code:&lt;br /&gt;&lt;br /&gt;    Private Sub tbFuturesSeries_ButtonClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ToolBarButtonClickEventArgs) Handles tbFuturesSeries.ButtonClick&lt;br /&gt;        If e.Button Is tbbSaveChanges Then&lt;br /&gt;            pSec.Focus() ' get focus off futures series datagrid so changes will be committed&lt;br /&gt;            SaveFuturesSeries()&lt;br /&gt;        ElseIf e.Button Is tbbDiscardChanges Then&lt;br /&gt;            DiscardFuturesSeries()&lt;br /&gt;        ElseIf e.Button Is tbbGenerateContracts Then&lt;br /&gt;            ' START SELECTION HERE&lt;br /&gt;            Dim cancelled As Boolean = PromptToSaveFuturesSeries()&lt;br /&gt;            If Not cancelled Then&lt;br /&gt;                Dim success As Boolean = PerformAction("aGenerateFuturesContracts")&lt;br /&gt;                If success Then&lt;br /&gt;                    MsgBox("Contracts generated", MsgBoxStyle.Information, "Generate Futures Contracts")&lt;br /&gt;                End If&lt;br /&gt;            End If&lt;br /&gt;            ' END SELECTION HERE&lt;br /&gt;        End If&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;Reproducing the problem:&lt;br /&gt;1. Select the indicated text&lt;br /&gt;2. Right-click&lt;br /&gt;3. 'Extract Method' option on CodeIt.Once menu is dimmed&lt;br /&gt;&lt;br /&gt;I am using VB.NET 2003. I'm using version 1.0.258 of CodeIt.Once.</description></item><item><title>Uninstall Failure</title><link>http://community.submain.com/forums/thread/98.aspx</link><pubDate>Wed, 07 Sep 2005 13:20:14 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:98</guid><dc:creator>Robert Porter</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/98.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=98</wfw:commentRss><description>I uninstalled the Beta 2 version for VS2003 and the IDE crashed. (I assume the uninstall started the development environment in order to remove the Add-In commands.)&lt;br /&gt;&lt;br /&gt;I went ahead and let error reporting send the error report and then installed the new RC1 version. I encountered no errors during the installation however the Code It Once menu was unuasable, fully populated but all the commands failed with an error that the addin was unloaded.</description></item><item><title>Suggestion: Rename...</title><link>http://community.submain.com/forums/thread/95.aspx</link><pubDate>Sun, 04 Sep 2005 01:04:18 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:95</guid><dc:creator>Jeff Fansler</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/95.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=95</wfw:commentRss><description>It's pretty common (if not critical) for the file name to match the name of the class it contains.  It'd be nice if the rename operaton would prompt asking if you would like to rename the file to match the name of the (renamed)class.&lt;br /&gt;&lt;br /&gt;-Jeff</description></item><item><title>Multople class definitions in a single file</title><link>http://community.submain.com/forums/thread/91.aspx</link><pubDate>Wed, 31 Aug 2005 20:19:13 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:91</guid><dc:creator>Vlad Ivanov</dc:creator><slash:comments>2</slash:comments><comments>http://community.submain.com/forums/thread/91.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=91</wfw:commentRss><description>In VB.NET it is entirely legal to declare multiple classes within a single .vb file.&lt;br /&gt;&lt;br /&gt;Begin example file Test.vb&lt;br /&gt;  Class Bar1&lt;br /&gt;  End Class&lt;br /&gt;  Class Bar2&lt;br /&gt;  End Class&lt;br /&gt;End example file Test.vb&lt;br /&gt;&lt;br /&gt;However it appears that "Rename" operation raises exception if you try to rename one of the classes. W&lt;br /&gt;&lt;br /&gt;What is also sort of annoying - is that if i chose "Don't send feedback" - i got prompted multiple times and had to repeat "Don't send feedback" at least a dozen times before it stopped prompting.&lt;br /&gt;&lt;br /&gt;P.S: I haven't tested the following scenarion and don't know how CIO will behave, but i thought i'd mention it for you to consider: you can also have internal classes within a class.&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;br /&gt;Class Foo&lt;br /&gt;  Class Bar1&lt;br /&gt;  End Class&lt;br /&gt;  Class Bar2&lt;br /&gt;  End Class&lt;br /&gt;End Class</description></item><item><title>Installation hickup.</title><link>http://community.submain.com/forums/thread/90.aspx</link><pubDate>Wed, 31 Aug 2005 20:12:39 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:90</guid><dc:creator>Vlad Ivanov</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/90.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=90</wfw:commentRss><description>Hi, it's me again :-)&lt;br /&gt;&lt;br /&gt;Downloaded and installed RC1. Here're some problems:&lt;br /&gt;&lt;br /&gt;- I didn't follow the instructions (didn't notice them the first time) to remove the previous version. Instead i simply proceeded to install RC1 over whatever the previous beta i had. I did not have VS open when i installed. &lt;br /&gt;&lt;br /&gt;Still, this totally hosed CIO. The only item available in the COI menu was "Introduce Constant". I closed VS and went into Add/Remove programs to remove CIO (both new and older version showed up and i removed both). &lt;br /&gt;&lt;br /&gt;Then i proceeded to reinstall RC1. This didn't help. Even though all the menues showed up correctly - when i clicked on any one of them i was prompted with "This plugin cannot be instantiated. Would you like to remove the menu. If you press Yes you will need to reinstall this plugin". The message is not verbatim, just to the best of my recollection. &lt;br /&gt;&lt;br /&gt;To make the problem go away - i had to actually click on each alavilable menu (so that they all were removed by VS). Then i proceeded to reinstall RC1 - and it's been working well since.&lt;br /&gt;&lt;br /&gt;Don't know if it's anything you can do something about, just a heads up.</description></item><item><title>Named parameters are not "Renamed"</title><link>http://community.submain.com/forums/thread/80.aspx</link><pubDate>Mon, 08 Aug 2005 19:39:36 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:80</guid><dc:creator>Vlad Ivanov</dc:creator><slash:comments>2</slash:comments><comments>http://community.submain.com/forums/thread/80.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=80</wfw:commentRss><description>When renaming a local variable - i discovered that it was not renamed when it was passed to another method in a "named parameter" fashion (used often with Optional parameters):&lt;br /&gt;&lt;br /&gt;Dim sId as String&lt;br /&gt;GetAncestor(sAncestorId:=sId)&lt;br /&gt;&lt;br /&gt;Renaming sId did not rename it inside the function call.&lt;br /&gt;&lt;br /&gt;Judging by your reply to my previous report - i am not using the latest beta, so you may have already fixed that. &lt;br /&gt;&lt;br /&gt;Just wanted to report this before i forget.&lt;br /&gt;&lt;br /&gt;Thanks.</description></item><item><title>FileLoadException: Unverifiable assembly 'xpdebug.dll' failed...</title><link>http://community.submain.com/forums/thread/83.aspx</link><pubDate>Mon, 15 Aug 2005 19:15:29 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:83</guid><dc:creator>Jared Warren</dc:creator><slash:comments>3</slash:comments><comments>http://community.submain.com/forums/thread/83.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=83</wfw:commentRss><description>I'm working on a solution with a project that references xpdebug.dll, which is part of the Plumtree EDK: http://plumtree.com/developers/edk/&lt;br /&gt;When I load it up, I get the following exception:&lt;br /&gt;&lt;br /&gt;-----&lt;br /&gt;&lt;br /&gt;Detailed error information follows:&lt;br /&gt;Date and Time: 8/15/2005 12:13:34 PM&lt;br /&gt;IP Address: {0}&lt;br /&gt;&lt;br /&gt;Application Domain: DefaultDomain&lt;br /&gt;Assembly Codebase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Core.DLL&lt;br /&gt;Assembly Full Name: CodeIt.Once.Core, Version=1.0.77.0, Culture=neutral, PublicKeyToken=94c677ee32cc1929&lt;br /&gt;Assembly Version: 1.0.77.0&lt;br /&gt;Assembly Build Date: 7/18/2005 6:26:32 PM&lt;br /&gt;&lt;br /&gt;Exception Source: mscorlib&lt;br /&gt;Exception Type: System.IO.FileLoadException&lt;br /&gt;Exception Message: Unverifiable assembly 'xpdebug.dll' failed policy check.&lt;br /&gt;Exception Target Site: nLoad&lt;br /&gt;&lt;br /&gt;---- Stack Trace ----&lt;br /&gt; System.Reflection.Assembly.nLoad(fileName As AssemblyName, codeBase As String, isStringized As Boolean, assemblySecurity As Evidence, throwOnFileNotFound As Boolean, locationHint As Assembly, stackMark As StackCrawlMark&amp;)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00000&lt;br /&gt; System.Reflection.Assembly.InternalLoad(assemblyRef As AssemblyName, stringized As Boolean, assemblySecurity As Evidence, stackMark As StackCrawlMark&amp;)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00307&lt;br /&gt; System.Reflection.Assembly.LoadFrom(assemblyFile As String, securityEvidence As Evidence, hashValue As Byte[], hashAlgorithm As AssemblyHashAlgorithm)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00095&lt;br /&gt; CodeIt.Once.Core.Utils.AssemblyLoader.Load(assemblyFileName As String)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00029&lt;br /&gt; CodeIt.Once.Core.Utils.ReferenceUtility.a(A_0 As String, A_1 As IProjectReference, A_2 As IDoubleProgressMonitor, A_3 As StatusTickEventArgs)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00125&lt;br /&gt; CodeIt.Once.Core.Utils.ReferenceUtility.b(A_0 As IProjectReference, A_1 As IDoubleProgressMonitor, A_2 As StatusTickEventArgs)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00457&lt;br /&gt; CodeIt.Once.Core.Utils.ReferenceUtility.LoadProjectReferences(project As IProject, pm As IDoubleProgressMonitor, status As StatusTickEventArgs)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00184&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The following files will be included in this error report:&lt;br /&gt;&lt;br /&gt;-----&lt;br /&gt;&lt;br /&gt;When I click "Don't Send" report, it continues caching the references and Visual Studio finishes loading without further problems.</description></item><item><title>Welcome!</title><link>http://community.submain.com/forums/thread/86.aspx</link><pubDate>Mon, 29 Aug 2005 09:02:10 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:86</guid><dc:creator>Serge B.</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/86.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=86</wfw:commentRss><description>As CodeIt.Once approached Release Candidate (RC1) we archive the old Beta forum and moved to this one.&lt;br /&gt;&lt;br /&gt;Please post all bugs / comments / questions / suggestions here (preferably) or email us directly at support@submain.com &lt;br /&gt;&lt;br /&gt;We will be monitoring this discussion board regularly. We look forward to your input.</description></item><item><title>Crash when using Rename...</title><link>http://community.submain.com/forums/thread/77.aspx</link><pubDate>Fri, 05 Aug 2005 20:17:39 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:77</guid><dc:creator>Vlad Ivanov</dc:creator><slash:comments>3</slash:comments><comments>http://community.submain.com/forums/thread/77.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=77</wfw:commentRss><description>The nice error handler popped and then failed to send the error message with "Unable to use webservice" error or something like that...&lt;br /&gt;&lt;br /&gt;So i am posting it here for you to check out:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Detailed error information follows:&lt;br /&gt;Date and Time: 8/5/2005 4:02:13 PM&lt;br /&gt;IP Address: {0}&lt;br /&gt;&lt;br /&gt;Application Domain: DefaultDomain&lt;br /&gt;Assembly Codebase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Core.DLL&lt;br /&gt;Assembly Full Name: CodeIt.Once.Core, Version=1.0.76.0, Culture=neutral, PublicKeyToken=94c677ee32cc1929&lt;br /&gt;Assembly Version: 1.0.76.0&lt;br /&gt;Assembly Build Date: 7/11/2005 5:57:42 PM&lt;br /&gt;&lt;br /&gt;Exception Source: CodeIt.Once.Refactoring&lt;br /&gt;Exception Type: System.NullReferenceException&lt;br /&gt;Exception Message: Object reference not set to an instance of an object.&lt;br /&gt;Exception Target Site: .ctor&lt;br /&gt;&lt;br /&gt;---- Stack Trace ----&lt;br /&gt; CodeIt.Once.Refactoring.Commands.SearchForTypeCommand..ctor(projectFile As IProjectFile, typeObject As IClassBase, pm As IProgressMonitor)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00108&lt;br /&gt; CodeIt.Once.Refactoring.Commands.SearchForIdentifiersCommand.Run()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00895&lt;br /&gt; .t.a()&lt;br /&gt; CodeIt.Once.Core.DLL: N 01427&lt;br /&gt; CodeIt.Once.AddIn.Connect.Exec(commandName As String, executeOption As vsCommandExecOption, varIn As Object&amp;, varOut As Object&amp;, handled As Boolean&amp;)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00166&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Basically i was trying to rename a public class called "OverviewRow" into "OverviewGroup". The class was inside the WebUserControl previously called "OverviewRow.ascx", but i manually renamed it to "OverviewGroup.ascx" prior to attempting to rename the class.&lt;br /&gt;&lt;br /&gt;This is something i noticed (while we are on the subject) - while working beautifully in most cases, the plugin doesn't integrate as nicely in some aspects of web projects. For example - if you were to use "Rename" to rename the variable that corresponds to HTML element - you will then need to manually rename the ID of the element. I don't know if anything can be done about that, but thought you'd want to know. Basically it seems that the variable and the ID of the element have to be the same, otherwise random things start to break.</description></item><item><title>Can't rename with Beta2</title><link>http://community.submain.com/forums/thread/49.aspx</link><pubDate>Sun, 17 Jul 2005 15:03:57 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:49</guid><dc:creator>Jeff Fansler</dc:creator><slash:comments>4</slash:comments><comments>http://community.submain.com/forums/thread/49.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=49</wfw:commentRss><description>- CodeIt.Once version 1.0.76 Beta 2&lt;br /&gt;- Visual Studio 2003&lt;br /&gt;- Windows XP Pro Service Pack 2&lt;br /&gt;&lt;br /&gt;I tried to rename a local variable and it throws an exception.&lt;br /&gt;&lt;br /&gt;ParserException: error: unkown type 'AssignmentList' occurred in CodeIt.Once.Parser&lt;br /&gt;&lt;br /&gt;AssignmentList is the type of the variable I was renaming.  &lt;br /&gt;&lt;br /&gt;If I select "don't send" to the error dialog I eventually can reach the preview reference changes in the wizard.  The only name that is renamed is the first occurrence.</description></item><item><title>Another Task List Bug</title><link>http://community.submain.com/forums/thread/74.aspx</link><pubDate>Tue, 02 Aug 2005 19:13:51 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:74</guid><dc:creator>Rob Brown</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/74.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=74</wfw:commentRss><description>I noticed this bug after performing a rename of a method. When you insert code above the changed line(s), double clicking on the task in the task list moves the cursor to the wrong line.  Another very minor detail is that the task is labeled "replacing" instead of "replaced". (Sorry, but I had a very demanding english teacher) :)</description></item><item><title>CodeIt.Once for VS2003 build 1.0.77</title><link>http://community.submain.com/forums/thread/72.aspx</link><pubDate>Sat, 30 Jul 2005 22:16:04 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:72</guid><dc:creator>Mike McIntyre</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/72.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=72</wfw:commentRss><description>I put in four hours of testing with build 1.0.77 for VS2003.&lt;br /&gt;&lt;br /&gt;I have only one significant problem to report, a recommendation, and some KUDOS.&lt;br /&gt;&lt;br /&gt;---- Problem  -------------&lt;br /&gt;&lt;br /&gt;While I have tested various builds before 1.0.77, this is the first time I tested it with a large Visual Studio project (88,000 lines of code).&lt;br /&gt;&lt;br /&gt;The significant problem is how long it takes for it to parse a project that size and how log it takes for CodeIt.Once tasks that do cross project replacements e.g. Rename.&lt;br /&gt;&lt;br /&gt;It took 40 minutes to initially parse the project.&lt;br /&gt;&lt;br /&gt;It took 4 or more minutes to Rename.&lt;br /&gt;&lt;br /&gt;Computer used has 1 GB of RAM, 1.60 mhz Pentium 4 processors.&lt;br /&gt;&lt;br /&gt;------- Recommendation ---------&lt;br /&gt;&lt;br /&gt;Enable the Finish button on the Encapsulate Field wizard's Preview step window.&lt;br /&gt;&lt;br /&gt;Unlike the other wizards, the Encapsulate Field wizard's preview step window doesn't allow the user to click the Finish button at the Preview step. (It's disabled.)  Instead one must used the Back button to go to the previous ttep and press the Finish button there.&lt;br /&gt;&lt;br /&gt;-------- KUDOS -----------------&lt;br /&gt;&lt;br /&gt;CodeIt.Once for VS2003 was rock solid for me this test cycle. &lt;br /&gt;&lt;br /&gt;Installation was trouble free and quick.  &lt;br /&gt;&lt;br /&gt;I tested every refactoring feature except Decompose Conditional, and Undo over and over again.  Everything work correctly every time.&lt;br /&gt;&lt;br /&gt;The wizards screens are now outstanding. Excellent asthetics AND super explanations of each refactoring operation. The progress bar in the left panel of each wizard is cool.&lt;br /&gt;&lt;br /&gt;This has been a decent product from the first build I tried.  It is now an outstanding product in every respect except the large project issue I reported above.&lt;br /&gt;&lt;br /&gt;I hope to put the latest VS2005 build through rigorous testing in the near future.  If it is as good as the VS2003 version it appears you are about ready for RTM.</description></item><item><title>Exception when using CIO</title><link>http://community.submain.com/forums/thread/67.aspx</link><pubDate>Tue, 19 Jul 2005 14:56:59 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:67</guid><dc:creator>Charles Kinnan</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/67.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=67</wfw:commentRss><description>I have only started using CIO but have found that I can not use some of the wizards: Rename, Encapsulate Field, Move Class.  The only wizard that I have been able to use is extract interface.  If I turn the wizards for these features off, everything seems to work fine.&lt;br /&gt;&lt;br /&gt;I have copied one of the error reports below...&lt;br /&gt;I am using Windows XP Service Pack 2, VS2003 V 7.1.3088 and .NET Framework 1.1.4322&lt;br /&gt;&lt;br /&gt;Application Domain: DefaultDomain&lt;br /&gt;Assembly Codebase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Core.DLL&lt;br /&gt;Assembly Full Name: CodeIt.Once.Core, Version=1.0.77.0, Culture=neutral, PublicKeyToken=94c677ee32cc1929&lt;br /&gt;Assembly Version: 1.0.77.0&lt;br /&gt;Assembly Build Date: 7/18/2005 6:26:32 PM&lt;br /&gt;&lt;br /&gt;Exception Source: mscorlib&lt;br /&gt;Exception Type: System.IO.FileNotFoundException&lt;br /&gt;Exception Message: Could not find file "c:\documents and settings\ckinnan\local settings\application data\assembly\dl2\70ycnyk2.9l7\j4h8p1z8.mpa\4f852c34\00dcf017_f08bc501\ActiproSoftware.VBDotNet.xml".&lt;br /&gt;Exception Target Site: WinIOError&lt;br /&gt;&lt;br /&gt;---- Stack Trace ----&lt;br /&gt; System.IO.__Error.WinIOError(errorCode As Int32, str As String)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00181&lt;br /&gt; System.IO.FileStream..ctor(path As String, mode As FileMode, access As FileAccess, share As FileShare, bufferSize As Int32, useAsync As Boolean, msgPath As String, bFromProxy As Boolean)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00888&lt;br /&gt; System.IO.FileStream..ctor(path As String, mode As FileMode, access As FileAccess, share As FileShare)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00045&lt;br /&gt; ActiproSoftware.SyntaxEditor.SyntaxLanguage.LoadFromXml(path As String, encryptionKey As Int32)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00055&lt;br /&gt; ActiproSoftware.SyntaxEditor.Document.LoadLanguageFromXml(filename As String, encryptionKey As Int32)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00014&lt;br /&gt; CodeIt.Once.Controls.SyntaxEditorSourceCodeView..ctor()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00088&lt;br /&gt; .g8.b()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00077&lt;br /&gt; .cd..ctor()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00050&lt;br /&gt; .h0.a()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00117&lt;br /&gt; .h0..ctor(A_0 As IClassBase, A_1 As IProjectFile)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00252&lt;br /&gt; CodeIt.Once.Gui.MoveTypeDialogFactory.CreateDialog(currentClass As IClassBase, projectFile As IProjectFile)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00099&lt;br /&gt; .z.a()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00042&lt;br /&gt; CodeIt.Once.AddIn.Connect.Exec(commandName As String, executeOption As vsCommandExecOption, varIn As Object&amp;, varOut As Object&amp;, handled As Boolean&amp;)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00168</description></item><item><title>Task List Bug</title><link>http://community.submain.com/forums/thread/66.aspx</link><pubDate>Tue, 19 Jul 2005 12:01:34 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:66</guid><dc:creator>Muthu Annamalai</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/66.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=66</wfw:commentRss><description>I am using beta version of code it once. It has many features, which I have not explored so far.&lt;br /&gt; &lt;br /&gt;I am just using code it once to encapsulate a field.&lt;br /&gt; &lt;br /&gt;When I do this, code it once displays the tasks completed in the task list. &lt;br /&gt;&lt;br /&gt;While showing this tasks, the task list is not showing other tasks or errors.</description></item><item><title>Encapsulation</title><link>http://community.submain.com/forums/thread/65.aspx</link><pubDate>Tue, 19 Jul 2005 11:58:49 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:65</guid><dc:creator>Muthu Annamalai</dc:creator><slash:comments>2</slash:comments><comments>http://community.submain.com/forums/thread/65.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=65</wfw:commentRss><description>I am using beta version of code it once. It has many features, which I have not explored so far.&lt;br /&gt; &lt;br /&gt;I am just using code it once to encapsulate a field.&lt;br /&gt; &lt;br /&gt;When I do this, code it once changes all the instance of the variable to property, which is sometimes annoying.&lt;br /&gt; &lt;br /&gt;For example if I am creating a read only property, I might the use the variable to hold the value and use the property to provide value for callers outside the residing class.&lt;br /&gt;&lt;br /&gt;In this case I have to go and rename all property back to variable name.&lt;br /&gt;&lt;br /&gt;This is a suggestion and not a bug.</description></item><item><title>Exception when starting VS.net 2003 and sending error report</title><link>http://community.submain.com/forums/thread/59.aspx</link><pubDate>Mon, 18 Jul 2005 09:38:32 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:59</guid><dc:creator>Sam B</dc:creator><slash:comments>3</slash:comments><comments>http://community.submain.com/forums/thread/59.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=59</wfw:commentRss><description>I shut down vs.net 2003 and installed CodeIt.Once. Now everytime I open vs.net I get your error dialog, and then when I try to send you the error I get an unhandled exception. The details for this are below.&lt;br /&gt;&lt;br /&gt;When I click continue I just get your error dialog popping up over and over again.&lt;br /&gt;&lt;br /&gt;I am on Windows 2000, sp4. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;.....................&lt;br /&gt;&lt;br /&gt;See the end of this message for details on invoking &lt;br /&gt;just-in-time (JIT) debugging instead of this dialog box.&lt;br /&gt;&lt;br /&gt;************** Exception Text **************&lt;br /&gt;System.ArgumentException: Send Web Service method name is not valid.&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.BeforeSerialize(WebRequest request, String methodName, Object[] parameters)&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.InitializeAsyncRequest(WebRequest request, Object internalAsyncState)&lt;br /&gt;   at System.Web.Services.Protocols.WebClientProtocol.BeginSend(Uri requestUri, Object internalAsyncState, AsyncCallback outerCallback, Object outerAsyncState, Boolean callWriteAsyncRequest)&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.BeginInvoke(String methodName, Object[] parameters, AsyncCallback callback, Object asyncState)&lt;br /&gt;   at fl.a(String A_0, String A_1, String A_2, String A_3, String A_4, AsyncCallback A_5, Object A_6)&lt;br /&gt;   at CodeIt.Once.Core.ExceptionHandling.UnhandledExceptionManager.a(ao A_0)&lt;br /&gt;   at CodeIt.Once.Core.ExceptionHandling.UnhandledExceptionManager.a(ao A_0, String A_1)&lt;br /&gt;   at ao.b(Object A_0, EventArgs A_1)&lt;br /&gt;   at System.Windows.Forms.Control.OnClick(EventArgs e)&lt;br /&gt;   at System.Windows.Forms.Button.OnClick(EventArgs e)&lt;br /&gt;   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)&lt;br /&gt;   at System.Windows.Forms.Control.WmMouseUp(Message&amp; m, MouseButtons button, Int32 clicks)&lt;br /&gt;   at System.Windows.Forms.Control.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.ButtonBase.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.Button.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.ControlNativeWindow.OnMessage(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.ControlNativeWindow.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;************** Loaded Assemblies **************&lt;br /&gt;mscorlib&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/microsoft.net/framework/v1.1.4322/mscorlib.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;TestDriven.NET&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 0.0.0.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/TestDriven.NET.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Extensibility&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/extensibility/7.0.3300.0__b03f5f7f11d50a3a/extensibility.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;EnvDTE&lt;br /&gt;    Assembly Version: 8.0.0.0&lt;br /&gt;    Win32 Version: 8.0.40412.00&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/EnvDTE.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;NUnitAddin&lt;br /&gt;    Assembly Version: 1.0.915.0&lt;br /&gt;    Win32 Version: 1.0.915&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/NUnitAddin.EXE&lt;br /&gt;----------------------------------------&lt;br /&gt;MutantDesign.ManagedAddIns&lt;br /&gt;    Assembly Version: 1.9.314.0&lt;br /&gt;    Win32 Version: 1.9.314.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/MutantDesign.ManagedAddIns.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Xml&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Runtime.Remoting&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.runtime.remoting/1.0.5000.0__b77a5c561934e089/system.runtime.remoting.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;showqror&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Drawing&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;l1h_s8uw&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;TestDriven.Services&lt;br /&gt;    Assembly Version: 1.0.915.0&lt;br /&gt;    Win32 Version: 1.0.915&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/TestDriven.Services.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;7a0pm6qy&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;3qzraxv-&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Office&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/office/7.0.3300.0__b03f5f7f11d50a3a/office.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualStudio.CommandBars&lt;br /&gt;    Assembly Version: 8.0.0.0&lt;br /&gt;    Win32 Version: 8.0.40412.00&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/Microsoft.VisualStudio.CommandBars.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Windows.Forms&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.AddIn&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.AddIn.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;EnvDTE&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/envdte/7.0.3300.0__b03f5f7f11d50a3a/envdte.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.Gui&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Gui.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.Core&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Core.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.CodeObjectModel&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.CodeObjectModel.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.Parser&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Parser.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Data&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;CustomMarshalers&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.573&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/custommarshalers/1.0.5000.0__b03f5f7f11d50a3a/custommarshalers.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;QuickCode&lt;br /&gt;    Assembly Version: 1.3.1362.36210&lt;br /&gt;    Win32 Version: 1.3.1362.36210&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/QuickCode.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;QuickCodeLib&lt;br /&gt;    Assembly Version: 1.2.1362.36204&lt;br /&gt;    Win32 Version: 1.2.1362.36204&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/QuickCodeLib.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;DVXPUtil&lt;br /&gt;    Assembly Version: 1.0.1190.29895&lt;br /&gt;    Win32 Version: 1.0.1190.29895&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/DVXPUtil.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Web&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualBasic&lt;br /&gt;    Assembly Version: 7.0.5000.0&lt;br /&gt;    Win32 Version: 7.10.6001.4&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/microsoft.visualbasic/7.0.5000.0__b03f5f7f11d50a3a/microsoft.visualbasic.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;VBCommenter&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 0.0.0.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/PowerToys%20for%20Visual%20Studio%20.NET%202003/VBCommenter/VBCommenter.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualStudio&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.573&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Microsoft%20Visual%20Studio%20.NET%202003/Common7/IDE/Microsoft.VisualStudio.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualStudio.Designer.Interfaces&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.573&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Microsoft%20Visual%20Studio%20.NET%202003/Common7/IDE/Microsoft.VisualStudio.Designer.Interfaces.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VSDesigner&lt;br /&gt;    Assembly Version: 7.0.5000.0&lt;br /&gt;    Win32 Version: 7.10.3077&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Microsoft%20Visual%20Studio%20.NET%202003/Common7/IDE/Microsoft.VSDesigner.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Design&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.design/1.0.5000.0__b03f5f7f11d50a3a/system.design.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;VSLangProj&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/vslangproj/7.0.3300.0__b03f5f7f11d50a3a/vslangproj.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Syncfusion.Edit&lt;br /&gt;    Assembly Version: 1.0.2.4&lt;br /&gt;    Win32 Version: 1.0.2.4&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/Syncfusion.Edit.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualBasic&lt;br /&gt;    Assembly Version: 7.0.5000.0&lt;br /&gt;    Win32 Version: 7.10.6001.4&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Microsoft.VisualBasic.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Data&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.Data.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.EnterpriseServices&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.enterpriseservices/1.0.5000.0__b03f5f7f11d50a3a/system.enterpriseservices.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Xml&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.Xml.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Drawing&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.Drawing.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;nunit.framework&lt;br /&gt;    Assembly Version: 2.2.0.0&lt;br /&gt;    Win32 Version: 2.2.0.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/NUnit%202.2/bin/nunit.framework.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Web.Services&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;uiwdp7qm&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;&lt;br /&gt;************** JIT Debugging **************&lt;br /&gt;To enable just in time (JIT) debugging, the config file for this&lt;br /&gt;application or machine (machine.config) must have the&lt;br /&gt;jitDebugging value set in the system.windows.forms section.&lt;br /&gt;The application must also be compiled with debugging&lt;br /&gt;enabled.&lt;br /&gt;&lt;br /&gt;For example:&lt;br /&gt;&lt;br /&gt;&lt;configuration&gt;&lt;br /&gt;    &lt;system.windows.forms jitDebugging="true" /&gt;&lt;br /&gt;&lt;/configuration&gt;&lt;br /&gt;&lt;br /&gt;When JIT debugging is enabled, any unhandled exception&lt;br /&gt;will be sent to the JIT debugger registered on the machine&lt;br /&gt;rather than being handled by this dialog.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;See the end of this message for details on invoking &lt;br /&gt;just-in-time (JIT) debugging instead of this dialog box.&lt;br /&gt;&lt;br /&gt;************** Exception Text **************&lt;br /&gt;System.ArgumentException: Send Web Service method name is not valid.&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.BeforeSerialize(WebRequest request, String methodName, Object[] parameters)&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.InitializeAsyncRequest(WebRequest request, Object internalAsyncState)&lt;br /&gt;   at System.Web.Services.Protocols.WebClientProtocol.BeginSend(Uri requestUri, Object internalAsyncState, AsyncCallback outerCallback, Object outerAsyncState, Boolean callWriteAsyncRequest)&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.BeginInvoke(String methodName, Object[] parameters, AsyncCallback callback, Object asyncState)&lt;br /&gt;   at fl.a(String A_0, String A_1, String A_2, String A_3, String A_4, AsyncCallback A_5, Object A_6)&lt;br /&gt;   at CodeIt.Once.Core.ExceptionHandling.UnhandledExceptionManager.a(ao A_0)&lt;br /&gt;   at CodeIt.Once.Core.ExceptionHandling.UnhandledExceptionManager.a(ao A_0, String A_1)&lt;br /&gt;   at ao.b(Object A_0, EventArgs A_1)&lt;br /&gt;   at System.Windows.Forms.Control.OnClick(EventArgs e)&lt;br /&gt;   at System.Windows.Forms.Button.OnClick(EventArgs e)&lt;br /&gt;   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)&lt;br /&gt;   at System.Windows.Forms.Control.WmMouseUp(Message&amp; m, MouseButtons button, Int32 clicks)&lt;br /&gt;   at System.Windows.Forms.Control.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.ButtonBase.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.Button.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.ControlNativeWindow.OnMessage(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.ControlNativeWindow.WndProc(Message&amp; m)&lt;br /&gt;   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;************** Loaded Assemblies **************&lt;br /&gt;mscorlib&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/microsoft.net/framework/v1.1.4322/mscorlib.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;TestDriven.NET&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 0.0.0.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/TestDriven.NET.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Extensibility&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/extensibility/7.0.3300.0__b03f5f7f11d50a3a/extensibility.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;EnvDTE&lt;br /&gt;    Assembly Version: 8.0.0.0&lt;br /&gt;    Win32 Version: 8.0.40412.00&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/EnvDTE.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;NUnitAddin&lt;br /&gt;    Assembly Version: 1.0.915.0&lt;br /&gt;    Win32 Version: 1.0.915&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/NUnitAddin.EXE&lt;br /&gt;----------------------------------------&lt;br /&gt;MutantDesign.ManagedAddIns&lt;br /&gt;    Assembly Version: 1.9.314.0&lt;br /&gt;    Win32 Version: 1.9.314.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/MutantDesign.ManagedAddIns.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Xml&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Runtime.Remoting&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.runtime.remoting/1.0.5000.0__b77a5c561934e089/system.runtime.remoting.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;showqror&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Drawing&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;l1h_s8uw&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;TestDriven.Services&lt;br /&gt;    Assembly Version: 1.0.915.0&lt;br /&gt;    Win32 Version: 1.0.915&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/TestDriven.Services.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;7a0pm6qy&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;3qzraxv-&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Office&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/office/7.0.3300.0__b03f5f7f11d50a3a/office.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualStudio.CommandBars&lt;br /&gt;    Assembly Version: 8.0.0.0&lt;br /&gt;    Win32 Version: 8.0.40412.00&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/TestDriven.NET%201.0/Microsoft.VisualStudio.CommandBars.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Windows.Forms&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.AddIn&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.AddIn.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;EnvDTE&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/envdte/7.0.3300.0__b03f5f7f11d50a3a/envdte.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.Gui&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Gui.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.Core&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Core.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.CodeObjectModel&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.CodeObjectModel.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;CodeIt.Once.Parser&lt;br /&gt;    Assembly Version: 1.0.76.0&lt;br /&gt;    Win32 Version: 1.0.76.0&lt;br /&gt;    CodeBase: file:///C:/PROGRA~1/SubMain/CODEIT~1.ONC/CodeIt.Once.Parser.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Data&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;CustomMarshalers&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.573&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/custommarshalers/1.0.5000.0__b03f5f7f11d50a3a/custommarshalers.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;QuickCode&lt;br /&gt;    Assembly Version: 1.3.1362.36210&lt;br /&gt;    Win32 Version: 1.3.1362.36210&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/QuickCode.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;QuickCodeLib&lt;br /&gt;    Assembly Version: 1.2.1362.36204&lt;br /&gt;    Win32 Version: 1.2.1362.36204&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/QuickCodeLib.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;DVXPUtil&lt;br /&gt;    Assembly Version: 1.0.1190.29895&lt;br /&gt;    Win32 Version: 1.0.1190.29895&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/DVXPUtil.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Web&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualBasic&lt;br /&gt;    Assembly Version: 7.0.5000.0&lt;br /&gt;    Win32 Version: 7.10.6001.4&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/microsoft.visualbasic/7.0.5000.0__b03f5f7f11d50a3a/microsoft.visualbasic.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;VBCommenter&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 0.0.0.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/PowerToys%20for%20Visual%20Studio%20.NET%202003/VBCommenter/VBCommenter.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualStudio&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.573&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Microsoft%20Visual%20Studio%20.NET%202003/Common7/IDE/Microsoft.VisualStudio.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualStudio.Designer.Interfaces&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.573&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Microsoft%20Visual%20Studio%20.NET%202003/Common7/IDE/Microsoft.VisualStudio.Designer.Interfaces.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VSDesigner&lt;br /&gt;    Assembly Version: 7.0.5000.0&lt;br /&gt;    Win32 Version: 7.10.3077&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Microsoft%20Visual%20Studio%20.NET%202003/Common7/IDE/Microsoft.VSDesigner.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Design&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.design/1.0.5000.0__b03f5f7f11d50a3a/system.design.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;VSLangProj&lt;br /&gt;    Assembly Version: 7.0.3300.0&lt;br /&gt;    Win32 Version: 7.00.9466&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/vslangproj/7.0.3300.0__b03f5f7f11d50a3a/vslangproj.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;Syncfusion.Edit&lt;br /&gt;    Assembly Version: 1.0.2.4&lt;br /&gt;    Win32 Version: 1.0.2.4&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/Development%20Expertise/QuickCode.NET%202003/Syncfusion.Edit.DLL&lt;br /&gt;----------------------------------------&lt;br /&gt;Microsoft.VisualBasic&lt;br /&gt;    Assembly Version: 7.0.5000.0&lt;br /&gt;    Win32 Version: 7.10.6001.4&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Microsoft.VisualBasic.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Data&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.Data.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.EnterpriseServices&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.enterpriseservices/1.0.5000.0__b03f5f7f11d50a3a/system.enterpriseservices.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Xml&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.Xml.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Drawing&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/System.Drawing.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;nunit.framework&lt;br /&gt;    Assembly Version: 2.2.0.0&lt;br /&gt;    Win32 Version: 2.2.0.0&lt;br /&gt;    CodeBase: file:///C:/Program%20Files/NUnit%202.2/bin/nunit.framework.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;System.Web.Services&lt;br /&gt;    Assembly Version: 1.0.5000.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;uiwdp7qm&lt;br /&gt;    Assembly Version: 0.0.0.0&lt;br /&gt;    Win32 Version: 1.1.4322.2032&lt;br /&gt;    CodeBase: file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll&lt;br /&gt;----------------------------------------&lt;br /&gt;&lt;br /&gt;************** JIT Debugging **************&lt;br /&gt;To enable just in time (JIT) debugging, the config file for this&lt;br /&gt;application or machine (machine.config) must have the&lt;br /&gt;jitDebugging value set in the system.windows.forms section.&lt;br /&gt;The application must also be compiled with debugging&lt;br /&gt;enabled.&lt;br /&gt;&lt;br /&gt;For example:&lt;br /&gt;&lt;br /&gt;&lt;configuration&gt;&lt;br /&gt;    &lt;system.windows.forms jitDebugging="true" /&gt;&lt;br /&gt;&lt;/configuration&gt;&lt;br /&gt;&lt;br /&gt;When JIT debugging is enabled, any unhandled exception&lt;br /&gt;will be sent to the JIT debugger registered on the machine&lt;br /&gt;rather than being handled by this dialog.</description></item><item><title>Visual Studio MDI on wrong file after rename</title><link>http://community.submain.com/forums/thread/54.aspx</link><pubDate>Sun, 17 Jul 2005 18:42:48 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:54</guid><dc:creator>Jeff Fansler</dc:creator><slash:comments>2</slash:comments><comments>http://community.submain.com/forums/thread/54.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=54</wfw:commentRss><description>When a rename operation renames in multiple files, the last file it found has the focus after the operation.  I'd prefer the original file to have focus at the end.</description></item><item><title>Exception when sending error reports</title><link>http://community.submain.com/forums/thread/50.aspx</link><pubDate>Sun, 17 Jul 2005 15:06:24 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:50</guid><dc:creator>Jeff Fansler</dc:creator><slash:comments>2</slash:comments><comments>http://community.submain.com/forums/thread/50.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=50</wfw:commentRss><description>- CodeIt.Once version 1.0.76 Beta 2&lt;br /&gt;- Visual Studio 2003&lt;br /&gt;- Windows XP Pro Service Pack 2&lt;br /&gt;&lt;br /&gt;When I recieve an error and select Send Error Report I get an exception.&lt;br /&gt;&lt;br /&gt;ArgumentException: Send Web Service method name is not valid.</description></item><item><title>Exception when exiting visual studio</title><link>http://community.submain.com/forums/thread/52.aspx</link><pubDate>Sun, 17 Jul 2005 18:03:13 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:52</guid><dc:creator>Jeff Fansler</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/52.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=52</wfw:commentRss><description>I received an exception when exiting from visual studio.  At the time I was editing a C# application. Here's the exception:&lt;br /&gt;&lt;br /&gt;NullReferenceException: Object reference not set to an instance of an object. occured in CodeIt.Once.Parser&lt;br /&gt;&lt;br /&gt;Here are the details:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Detailed error information follows:&lt;br /&gt;Date and Time: 7/17/2005 2:00:17 PM&lt;br /&gt;IP Address: {0}&lt;br /&gt;&lt;br /&gt;Application Domain: DefaultDomain&lt;br /&gt;Assembly Codebase: file:///D:/Program Files/SubMain/CodeIt.Once 2003/CodeIt.Once.Core.DLL&lt;br /&gt;Assembly Full Name: CodeIt.Once.Core, Version=1.0.76.0, Culture=neutral, PublicKeyToken=94c677ee32cc1929&lt;br /&gt;Assembly Version: 1.0.76.0&lt;br /&gt;Assembly Build Date: 7/11/2005 4:57:42 PM&lt;br /&gt;&lt;br /&gt;Exception Source: CodeIt.Once.Parser&lt;br /&gt;Exception Type: System.NullReferenceException&lt;br /&gt;Exception Message: Object reference not set to an instance of an object.&lt;br /&gt;Exception Target Site: .ctor&lt;br /&gt;&lt;br /&gt;---- Stack Trace ----&lt;br /&gt; .bx..ctor(A_0 As IAnalyzer, A_1 As IToken, A_2 As IToken)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00086&lt;br /&gt; .ay.b()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00084&lt;br /&gt; .ay.a(A_0 As String)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00495&lt;br /&gt; .ay.k()&lt;br /&gt; CodeIt.Once.Core.DLL: N 01121&lt;br /&gt; .bx..ctor(A_0 As IAnalyzer, A_1 As IToken)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00059&lt;br /&gt; .fj..ctor(A_0 As IProjectFile, A_1 As IAnalyzer)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00135&lt;br /&gt; .b7.a(A_0 As IProjectFile, A_1 As ay)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00047&lt;br /&gt; .b7.a(A_0 As IProjectFile, A_1 As String)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00147&lt;br /&gt; CodeIt.Once.Parser.Services.ParserService.ParseFile(projectFile As IProjectFile, fileContent As String)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00309&lt;br /&gt; CodeIt.Once.Parser.Services.ParserService.GetParseInformation(projectFile As IProjectFile)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00161&lt;br /&gt; CodeIt.Once.Parser.Services.ParserService.RemoveProjectFileFromParseInformation(projectFile As IProjectFile)&lt;br /&gt; CodeIt.Once.Core.DLL: N 00017&lt;br /&gt; .f7.a()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00063&lt;br /&gt; .o.b()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00046&lt;br /&gt; .eg.b()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00260&lt;br /&gt; .c4.b()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00046&lt;br /&gt; CodeIt.Once.Core.Services.ProjectService.CloseSolution()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00040&lt;br /&gt; CodeIt.Once.AddIn.Connect.SolutionEvents_BeforeClosing()&lt;br /&gt; CodeIt.Once.Core.DLL: N 00032&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The following files will be included in this error report:</description></item><item><title>Can't get the menus to show up</title><link>http://community.submain.com/forums/thread/39.aspx</link><pubDate>Sun, 10 Jul 2005 17:18:00 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:39</guid><dc:creator>Jeff Fansler</dc:creator><slash:comments>4</slash:comments><comments>http://community.submain.com/forums/thread/39.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=39</wfw:commentRss><description>- CodeIt.Once.Core.dll version: 1.0.52.0&lt;br /&gt;- Visual Studio 2003&lt;br /&gt;- Windows XP Pro Service Pack 2&lt;br /&gt;&lt;br /&gt;I installed the add in and used it succesfully.  Today, however, I can't get either the context menu, or the toolbar menu to show up.  Here's what I've tried&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1) Remove from available add-ins, remove from startup (in VS2003 add-in manager)&lt;br /&gt;2) Close Add-in manager&lt;br /&gt;3) Open add-in manager, add CodeIt.Once&lt;br /&gt;----&lt;br /&gt;1) Remove from available add-ins, remove from startup (in VS2003 add-in manager)&lt;br /&gt;2) Close Add-in manager&lt;br /&gt;3) Close visual studio&lt;br /&gt;4) Open visual studio&lt;br /&gt;5) Open add-in manager, add CodeIt.Once&lt;br /&gt;&lt;br /&gt;Every time I enable it, something appears to be happening.  The status bar in visual studio displays some text like "Parsing...", "Loading Reference...". but once it's done, I don't see the menus and can't use the add-in.&lt;br /&gt;&lt;br /&gt;I also tried to run a repair in the app setup/remove dialog.  This caused an error when I tried to run visual studio.  I then uninstaled and re-installed and it worked.</description></item><item><title>A couple of suggestions about the ReName refactoring...</title><link>http://community.submain.com/forums/thread/40.aspx</link><pubDate>Sun, 10 Jul 2005 17:23:58 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:40</guid><dc:creator>Jeff Fansler</dc:creator><slash:comments>4</slash:comments><comments>http://community.submain.com/forums/thread/40.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=40</wfw:commentRss><description>First off, I'd like to say great job.  I've been using reSharper for c#, but never had a good tool for VB.  It appears that this is it.  &lt;br /&gt;&lt;br /&gt;Here are a couple of suggestions so far:&lt;br /&gt;&lt;br /&gt;1) Remove the auto-number when re-nameing. &lt;br /&gt;2) Remove the error message that you can't re-name to the same name. I tried renameing a property because the case was wrong (Thisisasample to ThisIsASample).  I know VB doesn't care about case, but I do.</description></item><item><title>Tool not enabled</title><link>http://community.submain.com/forums/thread/37.aspx</link><pubDate>Mon, 23 May 2005 05:23:59 GMT</pubDate><guid isPermaLink="false">e6092f25-edd1-48d7-b80f-8bdb13d630d6:37</guid><dc:creator>Kevin Sprague</dc:creator><slash:comments>1</slash:comments><comments>http://community.submain.com/forums/thread/37.aspx</comments><wfw:commentRss>http://community.submain.com/forums/commentrss.aspx?SectionID=5&amp;PostID=37</wfw:commentRss><description>I have installed the beta and I see it both the context menu and on the main menu bar but nothing is enabled.  Is there a license needed?</description></item></channel></rss>