Tagged Questions

6
votes
5answers
876 views

Simulating “focus” and “blur” in jQuery .live() method…

jQuery currently1 doesn't support "blur" or "focus" as arguments for the $.live() method. What type of work-around could I implement to achieve the following: $("textarea") .liv …
1
vote
1answer
200 views

Is there a workaround to the Flash bug where selection doesn’t stop?

Is there any workaround to the issue with Adobe Flash where a Flash Movie does not receive a mouse up event if the mouse is dragged outside of the movie? EDIT: This issue seems t …
4
votes
1answer
93 views

Easy way to access private fields/methods/properties using f# interactive

F# interactive is a powerful development tool as it allows to run either WinForm or Wpf window and invoke arbitrary code in there. This gives a way for a 'try-before-you code' app …
1
vote
4answers
81 views

How to use .NET 3.x features in .NET 2.0 (Visual Studio 2008)

You're stuck with targeting .NET 2.0 in Visual Studio 2008, but you'd like to use all the latest goodness from .NET 3.x features, like: LINQ Extension Methods Lambdas What can …
0
votes
2answers
51 views

How to get around UDF restriction on side-effecting operators?

Microsoft Books Online (BOL) on Using Change Data explains a misleading error messages for cdc.fn_cdc_get_all_changes_* & cdc.fn_cdc_get_net_changes_* when an invalid, out-of-r …
0
votes
0answers
43 views

Very frustrating ORA-12154 excpetion finally resolved!

This is a little something I thought I need to share. We had some issues establishing connection to Oracle. We kept getting the ORA-12154 (TNS:could not resolve the connect identif …
0
votes
2answers
113 views

jquery load freezing the page

$(document).ready(function(){ $("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank"); $("a[target!='_blank'][target!='_top']").click(function(){ $( …
0
votes
2answers
655 views

Problem with prebuild event in Visual Studio replacing $(SolutionDir) with *Undefined*

I believe the problem is documented here and looks like it might be a bug in visual studio, but I'm wondering if anyone knows of a workaround. Basically I have the following 2 lin …
1
vote
0answers
69 views

XCode xcconfig: Configuring a dependency based on the target

In the quest to resolve the Objective-C namespace issue I'd like to experiment with prefixing a dependency's Objective-C classes based on the target being built. As an example, su …
10
votes
6answers
1k views

PHP and Enums

I know that PHP doesn't have native Enumerations. But I have become accustomed to them from the Java world. I would love to use enums as a way to give predefined values which IDEs' …
1
vote
3answers
70 views

JMenuItem.getRootPane() workaround ?

It seems to be well-known there is a bug when using JMenuItem.getRootPane(). I read the bug description but i cannot figure out a workaround. Do you know work-around code for this …
0
votes
3answers
195 views

Alternative to poseAsClass in Mac OS X 10.5 and higher?

Apple has deprecated NSObject's poseAsClass: method for OS X v10.5 and above. Is there another way to make class posing work?
0
votes
1answer
135 views

Firefox hide embeded object bug workaround?

Hi there is a well documented bug in firefox(since version 0.9!) where hidding a flash, java applet, quicktime... really anything you can put in a "embed" or "object" tag makes the …
1
vote
5answers
152 views

Is this ASP.NET Inherited Shared Function practice acceptable?

I have a bunch of different forms that I would like to create a base MustInherit class for. One function I would like them all to contain is a shared function called GetForms(). I …
0
votes
1answer
129 views

What would happen if I set null in prepared statement with varchar always?

I have this method to insert data using jdbc that will insert the value according to the java type. Something like this: Object o = map.get( key ); if( o == null ) { // setNu …

1 2 next
15 30 50 per page