bugs

Multiple @ JS Comment bug in IE

I've come across a bug/undocumented feature in IE 7, 6.5 (perhaps others?). This doesn't effect Opera (10.5x) Firefox (3.5.x) or likely any other browser (this is all I've tested so far). It doesn't seem to be a documented ability of Javascript. By including a comment denoted by double slashes, and directly followed by double at signs...

iphone app approved but bug found before release

Hi, I just got my app approved....but realised there is a bug that will need a small fix. I do not want to release this app with the bug. I am unsure how to get this fixed. If I submit another binary it will go through the review process again. I will also need to put a new version (1.1). If I still have to submit a new version, can ...

Picturebox draws artefacts when in RightToLeft mode

When PictureBox have parent ListView and ListView RightToLeft set to true/yes I received some artifacts on drawing. Why this happens and how remove this artifacts? Images http://i.imgur.com/kx0zQ.png http://i.imgur.com/E5il3.png public partial class Form1 : Form { public Form1() { InitializeComponent(); } void DrawOnPic...

floating in list causes trouble in IE6 and IE7

I have a toggle list that causes trouble in old IE browsers, tried to fix it for couple of hours but I failed again and again. Please check out the jsfiddle code: http://jsfiddle.net/vny63/ structure is similar to this: <li class="toggle"> <a class="left" title="gallery">gallery</a> (English) <span class="right float_right">3<...

Handling bugs raised by customers in TFS

I'm part of a team developing ASP.Net applications using Scrum. We currently use TFS for almost all aspects of our project management, source control, testing, and bug tracking. However, there's a gap when it comes to customer-raised bugs. Bugs found internally are easy to add to TFS allowing us to link changesets to actual bugs. Whe...

Troubles with jQuery fadeIn() and fadeOut() in Chrome

Have a plugin that I'm working on and I've hit a wall in Chrome. The script works perfectly in FF, but Chrome is not correctly displaying the fadeIn and fadeOut effects. It looks like Chrome is just defaulting to show and hide. Any suggestions? You can see it in action here: http://heartpublications.com Here is the code: $(documen...

Generic defined in unit breaking debug information

This must be a Delphi bug... I have a unit which is the basis of my persistance framework. In that unit I have a base class for all my domain objects, a list class and a generic list class. Just recently I noticed that when I step into the unit when debugging, execution will jump to a point a little further down in the file than it sho...

Roundabout jquery in document Strict

I am useing Roundabout jquery at: http://fredhq.com/projects/roundabout/ in document Strict, but it dont woking in IE. This is my source: HTML: <ul class="roundabout"> <li><a title="#" href="#"><img alt="product 1" src="images/product-1.gif" /></a></li> <li><a title="#" href="#"><img alt="product 2" src="images/product-2.gif" /...

Strange IE error - between JavaScript global variable and element with name attribute

I tested the following code in IE6, IE7 and IE8 with the same result: <a name="cd"/>a</a> <script> try { cd = new Date; } catch(e) { alert(e); } </script> In all cases an error is thrown. However using var cd = new Date; seems to solve the problem. D...

Why is Safari 4 / mac not rendering top and bottom margins in this nested div?

Safari 4 seems to be ignoreing my margins unless I add a border. The following example renders left and right margins but no top or bottom. If I add a border it renders as expected. Am I doing something wrong or am I going to have to add borders (albeit transparent ones) to every element with margins just for Safari? <!DOCTYPE html PUBL...

Absolute positioned link on top of Flash doesn't work in IE

Hi guys, I'm building a website using YouTube's chromeless player, but I'm facing an IE bug. I put a mask on the video as the client wanted it to be a hand drawn TV, so right now I have a transparent PNG sitting on top of the actual flash object so I'm able to see the video but with a nice frame around it. I also managed to put a play b...

When debugging unittest in visual studio the debugsession just quits

I've had this occur to me daily now. I am debugging my libraries using unittests. My libraries are all code projects inside a single solution. So I'm stepping through the code and all of a sudden it just continues as if I would've pressed F5, which I didn't. Is this a bug or is there something I'm missing here? Anyone else experiencing...

bug tracking on a per project basis

hi. been looking into bug tracking solutions. searched the net, other sites, as well as other replies/questions here, i've got a project that will have multiple subprojects. each subproject will have a need to have its' own bug tracking space. ie, projectA, projectB, and projectC will be worked on by different people, and will generate...

solution for Company Intranet (wiki + database + bug tracking + document management +++)

We are looking for a Company Intranet product with some or all of these attributes - common home page - departmental sections with password protection for some content - allow designated users to edit specific pages - wiki type knowledge repository - company phone list - document & image management (uploads, some ...

Why won't my value increment? Memory stomping/stack glitch?

I've come across a rather charming bug that I'm trying to wrap my head around. I feel like I've seen this before, but this time I want to understand why this is happening. I have: int i; int debug = 0; for(i = 0; i < buf_end; i++) { do_some_buffer_work(); if(something_is_true()) { do_something_important(); pr...

Examples of software bugs

Possible Duplicate: Software bugs examples I am looking for examples of bugs one must check in his code... But I do not mean logical bugs (such as Adding instead of Subtracting), I am talking about bugs that can be discovered (may be guessed) just by looking into code without knowing its purpose.... Examples: infinite loop...

Delphi XE IDE code parser error ?!?

After adding a IdUDPServer to my form and trying to put some code into the OnUDPRead event, I'm not able to add any component to my form at design time, nor can I run the application. is there any way to solve this ? ...

Ext JS textarea grow bug

Hi, we have an application that use some TextArea components in various tabs. The problem is that when we insert text into a TextArea (with grow:true) the TextArea correctly resize itself, but when we change the tab and display a new TextArea, this new TextArea has the size of the TextArea present into the other tab. When we click on ...

iPhone weird Bug: going back and forth in the navigation hirarchy while uitableview is still scrolling causes freeze

Hey guys, I got this really weird bug which is making me crazy: I push a UIViewController (lets call it tableViewController) which contains a UITableView and therefore conforms to <UITableViewDelegate, UITableViewDataSource> onto another UIViewController (lets call it rootViewController) with: [self.navigationController pushViewContro...

Bug in Directory.GetParent ?

I was hit in the face by a very weird behavior of the System.IO.Directory.GetParent method: string path1 = @"C:\foo\bar"; DirectoryInfo parent1 = Directory.GetParent(path1); Console.WriteLine (parent1.FullName); // Prints C:\foo, as expected // Notice the extra backslash. It should still refer to the same location, right ? string path2...