By tag: Bug
0
kicks
Visual Studio 2008 var Keyword Bug - Microsoft Follow-up
Received a follow-up from Microsoft regarding <a href="http://lakario.blogspot.com/2009/07/visual-studio-2008-var-keyword-bug.html">Visual Studio var Keyword Bug</a>. Here's what Microsoft support had to say about the issue.
0
kicks
Which bug reporting method should I choose?
Alright, my previous post was lot of ranting… I have to make it up. I hate ranting because it never bring any solutions, only problems. When someone is building a software, bugs will happen as true as the sun rise everyday. Sometimes it will be simple change request but there will be bug that are go...
0
kicks
Report a Bug – The feature all products should have
I was writing acceptance test for project today and I needed to include a file inside my Excel 2007 sheet. After fiddling around a little, I found “Insert Object”. This allowed me to insert a file and have it available to anyone opening the Excel 2007 document. When I dragged and dropped the file to...
0
kicks
LINQ to SQL queries involving strings cause SQL Server procedure cache
Be careful when using LINQ. If an application is using LINQ to SQL and the queries involve the use of strings that can be highly variable in length, the SQL Server procedure cache will become bloated with one version of the query for every possible string length
0
kicks
ASP.NET 2.0 URL Rewriting Causes HTTP 500 Errors for GoogleBot
So you install Commerce Server 2007 and are ready for the money and SEO to start flowing. Next thing you know. Google ignores you completely. What do you do? more...
0
kicks
Workaround: The SplitContainer may crash your VS2008 Designer
If use the default Split Container to build a Windows Form or create a new user control, and set some properties of that Split Container at design time using Visual Studio 2008, you may end up with a broken form or user control. I got that error using the Visual Studio 2008 - Professional Edition.
0
kicks
WiX 3.0 Hates Subfolders
Using WiX 3.0 in Visual Studio? Don't add subfolders to your project or you'll spend a day figuring out why your work is E_FAILing
0
kicks
How to fix ASP.NET Ajax Rating control jump to top of page bug?
This little hack shows how to overcome little bug in Asp.Net Ajax Control Toolkit Rating Control that causes focus to jump to the top of page when user clicks on the control to rate some content.
0
kicks
PowerCommands for Visual Studio 2008 -- Weird Side Effect
Weird bug made it necessary for me to remove PowerCommands for the time being =\
0
kicks
A number of annoying Visual Studio 2008 ASP.NET realated Bugs
We found the first bug listed here at work as well.
0
kicks
Avoid OS reboot prompt when installing the .NET Framework 3.5 on Vista
User Comment: "If I read this right, this is a catasrophe, isn't it? No one can safely deploy the 3.5 framework with their applications without adding this custom code to their installer?"
0
kicks
Explaining the Excel Bug
By now you've probably seen a lot of the brouhaha over a bug in the newest version of Excel, 2007. Basically, multiplying 77.1*850, which should give you 65,535, was actually displaying 100,000.
0
kicks
Bug Debugging Method Parameters in C++
Here is why you should make sure your parameter names are consistent between your declarations and definitions in C++. Not doing so leads to strange and confusing behavior in the debugger.
0
kicks
String.IsNullOrEmpty can lead to runtime Null exceptions!
The author shows a flaw in String.IsNullOrEmpty of the .NET 2.0. Microsoft replies that this bug won't be fixed until Orcas. (see bug report at: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=113102 )
0
kicks
AjaxControlToolkit: TabPanel.Visible="False" should not display header
If you set the visible property of TabPanels within your TabContainer to false, it still shows the Header Text in the page when rendered. What should happen is any TabPanels with Visible set to False should be hidden. A fix for this has been posted to the AJAX Control Toolkits Issue Tracker, but why...