bugs

Eclipse doesn’t recognize style in the Android Layout builder?

Since Android supports styles and it's good practice to use them (similar to CSS), I made a new style and applied it to 3 buttons. The Layout builder in Eclipse did not register the changes and either broke (showed nothing) or didn't apply styles at all. After running the app in the emulator, styles are correctly applied. So is there ...

jquery iframe css firefox bug?

Without going in to detail on what these methods do, can anyone tell me why I get these weird results? getCurrentIframe().findInIframe("h2").css("paddingLeft") // gives me "20px" how ever if I do .get(0) or [0] to get the dom-element and then rewrap it in a $ I get: $( getCurrentIframe().findInIframe("h2")[0]).css("paddingLeft") //it...

Has a bug in your software ever turned out to be a feature ?

Has this ever happened to you? What was the bug or situation which was ended up becoming a feature? What was your experience with this? ...

Should this bug be fixed?

I found a bug in the .Net framework yesterday and found that it is a known bug that won't be fixed. In short the bug is that a class that contains a field of the type IComparable can't be binary serialized and deserialized when an int (and possibly other binary types) are assigned to that field: [Serializable] public class Foo { pub...

IE6 - Element jumps when loading

In IE6 one element (an iframe in a table, to be precise) on my page for a short time appears at an absolutely wrong position, and then, when loading is done, jumps into the correct position. There are many bugs documented on the internet, but I couldn't find any information about how to fix this. The page can be viewed here: http://www.f...

Is this is an ExpressionTrees bug? #2

Looks like ExpressionTrees compiler should be near with the C# spec in many behaviors, but unlike C# there is no support for conversion from decimal to any enum-type: using System; using System.Linq.Expressions; class Program { static void Main() { Func<decimal, ConsoleColor> converter1 = x => (ConsoleColor) x; ConsoleColor...

Visual Studio Highlights when I don't select text

I just got into the office, and booted up my computer to work on my current project. I hopped into a class file, and selected (through mouse highlighting) a group of events to delete. What happened though was it only erased one character. Wondering what happened, I clicked at the beginning of the selection and re-highlighted the text t...

Java Servlet Mimetype and Internet Explorer mimetype handling bug

I have a servlet that may return text/html or application/pdf content. Apparently, it looks like Internet Explorer (IE7) does not handle the application/pdf correctly. For example. Servlet Output A may return html content: [html content here] And then Servlet Output B may return PDF content: [pdf content here] The URL associated w...

change the position of jQuery UI Datepicker

Hi all, I am using the jQuery UI Datepicker. However a vertical CSS scrollbar overflow-y:scroll causes a bug for Firefox, Opera and Safari. This bug can easily be reproduced by copying the sample code of jqueryUI and adding 2 lines css declarations: body { overflow:scroll } #datepicker{ position:absolute; right:1px } A demo can b...

SharePoint : Translating links for me, and its unwanted

I am inserting a list item using sharepoint web services.... Here is my code: item += @"<Field Name=""HyperLinkField"">" + this.SharePointSiteAddressLinks + @"/lists/" + this.ListName + @"/" + this.ID + "_" + this.MessageID + ", " + this.MessageID + ".ext</Field>"; the value of SharePointSiteAddressLinks is http://machineName The ...

Can one turn visual studio's 'smart' sql query assistant off?

When creating this query in the SQL querybuilder window in visual studio (2008): UPDATE outgoing_messages SET readstatus = 5 FROM outgoing_messages INNER JOIN connections ON outgoing_messages.connectionid = connections.connectionid WHERE (outgoing_messages.msgreference = '1...

SharePoint randomly replacing file names in web parts?

Ok SharePoint is driving me crazy and I need to see if anyone has encountered a similar problem or knows of a solution: I have a content editor webpart with some HTML including links to PDF files that I've modified slightly to append an employee number querystring ie: <a href="http://moss.company.com/group/home/EPermits /Blank%20Fo...

Strange IE7 Printing Bug

I have a page that renders fine in IE6/7 and Firefox 3.5. Both IE6 and Firefox 3.5 have no problems printing the page, but IE7 does. When the page is printed, the first half of my content div is not visible, with the exception of two tables that do show up. The content begins to reappear mid-sentence, where there is no tag or break of an...

Cause of pointer shape change over dropdown fields in IE6?

I have a web page with a form with several dropdown fields. For certain users, using IE6, there is a strange bug where mousing over the dropdown fields will cause the mouse cursor image to flicker between the standard 'arrow' icon and the capital-I shaped text-field icon. Specifically, every time you move the mouse one pixel while hoveri...

Help with strange Delphi 5 IDE problems

Ok, I'm going nuts here. For the last (almost) four years, I've been putting up with some extremely bad behavior from my Delphi 5 IDE. Problems include: Seemingly random errors in coride50.bpl floating point errors on compiling occasional deletions of my source code files form and object sizes shifting between instances of working on...

Go bug tracking / report system?

Where can I file bug reports for the Go language? I mean reports about a crashing compiler or something else about Go that does not work as advertised. It would also be interesting to just read through them. ...

Ie7 float right bug?

I have a div floated right. Inside that div are two other divs. The first div has a background color and when I refresh, it's "bleeding" into the second div. (Sometimes in front of it sometimes behind it.) When I scroll, it fixes itself. When I refresh it does it again. This is only happening in IE7. Bug? code below #sidebar {float...

Is jWYSIWYG editor too buggy for production use?

After reading the comments on this site: http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/ There is a bit of consensus that jWYSIWYG editor is too buggy (especially in the last few recent comments). Has anyone had experience with it in a large production site? I haven't run a huge sample of markup through ...

Is there a BUG Calatog, classifying the bugs with general descriptions?

Hi, Is there any work done on classifying the bugs; practically categorizing and sub-grouping them based on their their occurrence place, side-effects, complexity and so on? With their brief descriptions included. Any suggestion where to find or check such a resource? Thanks ...

Common reasons for bugs in release version not present in debug mode

What are the typical reasons for bugs and abnormal program behavior that manifest themselves only in release compilation mode but which do not occur when in debug mode? ...