Tagged Questions

0
votes
1answer
31 views

Android - AsyncTask and error handling

I'm converting my code from using Handler to AsyncTask. The latter is great at what is does - async updates and handling of results in the main UI thread. What's unclear to me is h …
0
votes
2answers
52 views

jQuery / javascript question, is a click handler executed asyncronously?

if I have $("a#foo").click(); $("a#bar").click(); dostuff(); and both have click handlers attached which do different things..is it guaranteed that bar's click handler will only …
1
vote
4answers
32 views

non-reentrant function in signal handler?

Hi guys, consider a signal handler that call exit() as last instruction: is safe to call non-reentrant functions (e.g. free()) in that handler? IMHO it would be legal due to the f …
0
votes
1answer
45 views

How to add a click handler to a WPF Button in C++/CLR?

Hi ! In C#, I can do (*): Button b = new Button(); b.Click += ButtonOnClick; : void ButtonOnClick(object sender, RoutedEventArgs e) { // do so …
3
votes
4answers
236 views

Does the memory get released when I throw an exception?

Hi, I was debating with some colleges about what happens when you throw an exception in a dynamically allocated class. I know that malloc gets called, and then the constructor of …
0
votes
0answers
8 views

IIS: Abort handler work on client connection close

I have a handler that do some hard work under images. It's look like http://example.com/webservice.ashx?imageparam1=100&imageparam2=200 Each request to this handler take about …
0
votes
4answers
46 views

JavaScript Regex to return the last digits and ASP.Net event Handler?

Given the following string: 's0\\8\\26\\29\\30\\32' or 's0\\8\\26\\' or 's0\\5', I need to return the last digits of the string. Given: function getFolderID(mystr) { var …
0
votes
1answer
59 views

What is Skype’s URL handler for making calls in iPhone?

Hi Does anyone know what URL scheme Skype supports for making calls from other apps (that should launch Skype and place the call). Thanks
1
vote
1answer
64 views

.ashx ASP.NET Handler Image not displayed in html img-element

Hi, I have a strange problem. I created an ASP.NET Handler (AccidentMap.ashx) that gets a bitmap and returns it. Here is the handler: using System; using System.Collections.Gen …
1
vote
2answers
70 views

Event Sender Gets Disposed In Client’s Event Handler Code

Hello, I'm facing the following situation (C#/.Net here, but I think it's a general problem): Some of our object types (which are collections) are disposable types (IDisposable …
0
votes
1answer
31 views

Moving a custom configuration group to a separate file

I've recently wrote a rather large custom configuration group. I'm curious if it is possible to move this configuration to a separate file via the following: <configuration> …
2
votes
2answers
285 views

Can callback methods in PHP’s session_set_save_handler be private?

I am writing a custom session handler in PHP and trying to make the methods defined in session_set_save_handler private. session_set_save_handler( array('Session','open'), …
1
vote
5answers
69 views

JQuery and links - strange situation

Hello, I have this: <div id="inner"> some text <a href="#contacts">link1</a> </div> <a href="http://anotherlink.com">link2</a> And JQuery c …
0
votes
1answer
359 views

SSIS Dataflow script task error handling

Hi I have a script task that is performing transformations in the middle of a SSIS dataflow. If the script fails (say it tries to convert alpha to numeric) I need it to stop with …
0
votes
4answers
232 views

How to raise event using addHandler…

I am comfortable with Vb.Net events and handlers. Can anybody will help me with how to create event handlers in c#, and raise events.

1 2 3 4 next
15 30 50 per page