5,893
reputation
410 views

Registered User

name
member for 12 months
seen 9 hours ago
website
location
age
4h
awarded  Yearling
15h
comment IE select visible although its parent is hidden
My question says it's not reproducible, and that it only happens under very specific circumstances. The page I have that shows the problem is huge and depends on a whole lot of javascript to run into the problem. My hope was that someone would respond with something like "Yes, I've seen this problem, and I solved it by setting CSS property foo to bar". (there is a similar bug where some things are not visible even though they should, which can be remedied by setting zoom: 1)
16h
answered Validity of a GPL exception
16h
comment When is your code a “Derivative work”?
@David: A judge wouldn't understand. Good luck explaining the difference between dynamic linking (= linking) and fork/exec (= not linking according to GPL) to anyone who is not a programmer.
16h
comment Print the sourcecode of a whole java project
Won't SOMEONE think of the TREES???
17h
answered typeconverter from dll
17h
comment Is it possible to select data while a transaction is occuring?
@delfuego: I don't agree because there are so many things that could potentially go wrong. This is the kind of question that should be answered by reading or asking rather than by trying. However, I would recommend the OP to read one or a few books on databases.
17h
answered z-index issue in IE7
1d
comment What are the most common SQL anti-patterns?
PLEASE understand that a correlated subquery and a join are IDENTICAL (in most cases). They are not even different things that are optimized to one another, but just different textual representations of the same operation.
1d
comment What are the most common SQL anti-patterns?
I was even in a training class where this was stated as a fact for SQL Server. I had to protest really loud. For just saving to type 20 characters you rely on obscure or undocumented behavior.
1d
comment Brute force with NULLs
Most likely someone does. I don't, but I guess I could find out if I spent a few seconds thinking about it.
1d
comment C# DateTime Parsing Problem
And, to avoid the same problem with the day, use "M/d/yyyy", or even "M/d/y"
1d
answered Javascript behaving weirdly
1d
answered Common Gotchas when using TransactionScope and MS DTC
1d
comment Will SQL 2008 query opmtimizer optimize this query?
What do you mean?
1d
answered CSS Form Styling
2d
answered Are bad data issues that common?
Dec
13
comment how can delete one row from MySQL??
The best way to answer a question is to help the OP with his problem, not his intended solution to his problem. +1
Dec
12
comment The most abusive C++ you’ve ever seen used?
I had to do this when working with MFC because some function that was obviously meant to be public was actually private due to MFC developers not understanding complications of some MFC macro that changed the visibility.
Dec
12
answered Easy way to escape sql strings?
Dec
12
answered Solve “Travelling salesman problem” in linear time
Dec
11
comment How to reduce undo tablespace size in oracle?
And, answers on SO might also be irrelevant, out of date or just plain wrong.
Dec
11
comment How to reduce undo tablespace size in oracle?
I think it's a lack of respect for other people's time to ask a specific question when googling for the very phrase in the SO question title (or a small variation thereof) shows quite a few relevant links.
Dec
11
answered Uniformly handling error codes in an unmanaged API
Dec
11
answered How to reduce undo tablespace size in oracle?
Dec
11
comment How to properly dispose of a WebResponse instance?
No, if GetResponse throws no object will be disposed. But you can't know if an object has been created since only the internals of GetResponse will know that, so it's GetResponse's responsibility to make sure there is no leak in this situation.
Dec
11
revised How to properly dispose of a WebResponse instance?
added 449 characters in body
Dec
11
answered How to properly dispose of a WebResponse instance?
Dec
10
answered how to sort an array which is mostly sorted
Dec
10
answered What advantages are there to programming for a non-cache-coherent multi-core machine?
Dec
10
comment Should one really set pointers to `NULL` after freeing them?
Any technique that helps you finding errors is good.
Dec
10
answered Why are foreign keys more used in theory than in practice?
Dec
10
comment UK Law code owenrship
Time for lawoverflow.com?
Dec
9
comment Call a Stored Procedure from another Stored Procedure.
Or use return values.
Dec
9
comment Freelancer Programmer’s liability
It should be noted, though, that depending on the country you live in it needs not be true that what's in a license agreement is legally valid.
Dec
9
comment CSS positioning challenge
@nw: Not supporting IE6 is crazy talk
Dec
9
comment IE select visible although its parent is hidden
Yeah, that's a classic one, not the bug I've hit.
Dec
9
asked IE select visible although its parent is hidden
Dec
9
revised How to clear SQL Server query cache
added 16 characters in body
Dec
9
answered How to clear SQL Server query cache
Dec
9
comment Is this a IE8 or jQuery’s bug?
What do you want to achieve? Are you sure you don't want to bind the click handler to the select? That would make more sense.
Dec
8
comment How to call explicit interface implementation methods internally without explicit casting?
Of course you're right. However, I read the question as "How can I, in one line, invoke an explicit interface implementation without a cast, and the OP looking for some magic syntax like this.IAInterface.AInterfaceMethod().
Dec
8
comment Overload with generic type parameter instead?
Yes, this is what you have to do.
Dec
8
answered Does anyone have a sample data migration script (Oracle 10g to Oracle 10g, but different schemas)?
Dec
8
comment How to call explicit interface implementation methods internally without explicit casting?
Why the downvote? Of course, you can put the casting inside a property as others have suggested, but it doesn't really change anything.
Dec
8
accepted How to call explicit interface implementation methods internally without explicit casting?
Dec
8
answered How to call explicit interface implementation methods internally without explicit casting?
Dec
8
comment .NET IDisposable inline temps
I consider this more of a suggested implementation than part of the spec.
Dec
8
comment .NET IDisposable inline temps
Part of what spec? When I implement IDisposable, I usually do Debug.Assert(false) in the finalizer, just to make sure that I learn ASAP if I forget disposing something.
Dec
8
answered javascript with() function